From a8beec8102ca826ce02115eb11ffaebadd4a7a9e Mon Sep 17 00:00:00 2001 From: Rozay Chen Date: Wed, 17 Jul 2024 11:26:44 -0700 Subject: [PATCH 1/2] chore: Add API Breakage Checking GitHub Action (#3753) * Add API Checkers * Add Test API Dumps Files * Update apiBreakTest.yml * Add Test * Revert "Add Test" This reverts commit 0e45bdb8d1815210c4c4fce99e17586e9711d2d7. * Update apiBreakTest.yml * Update check_api_breakage.sh * Update apiBreakTest.yml * Update apiBreakTest.yml * Update apiBreakTest.yml * Update apiBreakTest.yml * Update apiBreakTest.yml * Update apiBreakTest.yml * Update apiBreakTest.yml * Update API dumps for new version * Update APIDigesterCheck.yml * Update apiBreakTest.yml * Update APIDigesterCheck.yml * Update API dumps for new version * Update APIDigesterCheck.yml * Update API dumps for new version * Auto-send Slack Message when Check Failed * Update API dumps for new version * Use aws-amplify-ops for committing * Update API dumps for new version * Update apiBreakTest.yml * Update CODEOWNERS * Update apiBreakTest.yml to remove review adding function * Enabling Configurable Exceptions * Update CODEOWNERS * Rename APIDigesterCheck.yml to api_digester_check.yml * Update api_digester_check.yml * Update api_digester_check.yml * Update and rename apiBreakTest.yml to api-breaking-changes-detection.yml * Rename check_api_breakage.sh to CircleciScripts/check_api_breakage.sh * Update api-breaking-changes-detection.yml * Update API dumps for new version --------- Co-authored-by: github-actions[bot] Co-authored-by: aws-amplify-ops --- .github/CODEOWNERS | 4 + .../api-breaking-changes-detection.yml | 223 + .github/workflows/api_digester_check.yml | 39 + CircleciScripts/check_api_breakage.sh | 87 + api-dump-test/A.json | 395 + api-dump-test/B.json | 443 + api-dump-test/expected-result.txt | 29 + api-dump/AWSDataStorePlugin.json | 8222 + api-dump/AWSPluginsCore.json | 24289 ++ api-dump/Amplify.json | 179359 +++++++++++++++ api-dump/CoreMLPredictionsPlugin.json | 447 + 11 files changed, 213537 insertions(+) create mode 100644 .github/workflows/api-breaking-changes-detection.yml create mode 100644 .github/workflows/api_digester_check.yml create mode 100755 CircleciScripts/check_api_breakage.sh create mode 100644 api-dump-test/A.json create mode 100644 api-dump-test/B.json create mode 100644 api-dump-test/expected-result.txt create mode 100644 api-dump/AWSDataStorePlugin.json create mode 100644 api-dump/AWSPluginsCore.json create mode 100644 api-dump/Amplify.json create mode 100644 api-dump/CoreMLPredictionsPlugin.json diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 22e13f4dc7..f1a6ed9ce1 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -6,3 +6,7 @@ # Changes to Xcode / OS runtime versions run in CI/CD requires admin approval. /.github/composite_actions/get_platform_parameters/action.yml @aws-amplify/amplify-ios-admins + +# Changes to files in the api-dump or api-dump-test folder require admin approval. +api-dump/* @aws-amplify/amplify-ios-admins +api-dump-test/* @aws-amplify/amplify-ios-admins diff --git a/.github/workflows/api-breaking-changes-detection.yml b/.github/workflows/api-breaking-changes-detection.yml new file mode 100644 index 0000000000..e245f17866 --- /dev/null +++ b/.github/workflows/api-breaking-changes-detection.yml @@ -0,0 +1,223 @@ +name: Public Interface Breakage Detection + +on: + pull_request: + +permissions: + contents: write + pull-requests: write + +jobs: + build-and-check-api-breakage: + name: Build and Check API Breakage + runs-on: macos-latest + + steps: + - name: Checkout repository + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 + with: + ref: ${{ github.head_ref }} # Checkout the PR branch + fetch-depth: 1 + + - name: Fetch the branchs + run: | + git fetch origin ${{ github.sha }} + + + - name: Setup and Run Swift API Diff + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + # Define the list of exceptions to filter out + exceptions=( + 'has been added as a new enum case$' + 'is now with @_spi$' + ) + + # Define the mandatory patterns to filter out + mandatory_patterns=( + '^/\*' + '^$' + ) + + # Function to apply patterns with grep + apply_patterns() { + local input="$1" + local output="$input" + + # Apply mandatory patterns + for pattern in "${mandatory_patterns[@]}"; do + output=$(echo "$output" | grep -v "$pattern") + done + + # Apply exceptions + for exception in "${exceptions[@]}"; do + output=$(echo "$output" | grep -v "$exception") + done + + echo "$output" + } + + echo "Swift version: $(swift --version)" + echo "Swift package manager version: $(swift package --version)" + swift package resolve + + # Ensure we are in the correct directory + cd $GITHUB_WORKSPACE + + # Run swift-api-diff commands here directly + NEW_API_DIR=$(mktemp -d) + OLD_API_DIR=$(mktemp -d) + SDK_PATH=$(xcrun --show-sdk-path) + + # Get all library module names + # Moduels with aws-crt-swift as dependency are not listed due to swift-api-digester's issue with analyzing C dependencies + modules=$(swift package dump-package | jq -r '.products | map(select(.name == "Amplify" or .name == "CoreMLPredictionsPlugin" or .name == "AWSDataStorePlugin" or .name == "AWSPluginsCore")) | map(.name) | .[]') + echo "Modules: $modules" + + echo "Fetching old version..." + git fetch origin ${{ github.event.pull_request.base.sha }} + git checkout ${{ github.event.pull_request.base.sha }} + built=false + for module in $modules; do + # If file doesn't exits in the old directory + if [ ! -f api-dump/${module}.json ]; then + echo "Old API file does not exist in the base branch. Generating it..." + # Check if the project has been built + if ! $built; then + echo "Building project..." + swift build > /dev/null 2>&1 || { echo "Failed to build project"; exit 1; } + built=true + fi + + # Generate the API file using api-digester + swift api-digester -sdk "$SDK_PATH" -dump-sdk -module "$module" -o "$OLD_API_DIR/${module}.json" -I .build/debug || { echo "Failed to dump new SDK for module $module"; exit 1; } + else + # Use the api-dump/${module}.json file from the base branch directly + cp "api-dump/${module}.json" "$OLD_API_DIR/${module}.json" + fi + done + + echo "Fetching new version..." + git checkout ${{ github.sha }} + git log -1 # Print the commit info for debugging + swift build> /dev/null 2>&1 || { echo "Failed to build new version"; exit 1; } + for module in $modules; do + swift api-digester -sdk "$SDK_PATH" -dump-sdk -module "$module" -o "$NEW_API_DIR/${module}.json" -I .build/debug || { echo "Failed to dump new SDK for module $module"; exit 1; } + done + + # Compare APIs for each module and capture the output + api_diff_output="" + for module in $modules; do + swift api-digester -sdk "$SDK_PATH" -diagnose-sdk --input-paths "$OLD_API_DIR/${module}.json" --input-paths "$NEW_API_DIR/${module}.json" >> "api-diff-report-${module}.txt" 2>&1 + module_diff_output=$(apply_patterns "$(cat "api-diff-report-${module}.txt")") + if [ -n "$module_diff_output" ]; then + api_diff_output="${api_diff_output}\n**Module: ${module}**\n${module_diff_output}\n" + + # Check if there are lines containing "has been renamed to Func" + if echo "$module_diff_output" | grep -q 'has been renamed to Func'; then + # Capture the line containing "has been renamed to Func" + renamed_line=$(echo "$module_diff_output" | grep 'has been renamed to Func') + + # Append a message to the module_diff_output + api_diff_output="${api_diff_output}👉🏻 _Note: If you're just adding optional parameters to existing methods, neglect the line:_\n_${renamed_line}_\n" + fi + fi + done + + echo "API_DIFF_OUTPUT<> $GITHUB_ENV + if [ -n "$api_diff_output" ]; then + echo "### 💔 Public API Breaking Change detected:" >> $GITHUB_ENV + echo -e "$api_diff_output" >> $GITHUB_ENV + echo "EOF" >> $GITHUB_ENV + else + echo "### ✅ No Public API Breaking Change detected" >> $GITHUB_ENV + echo "EOF" >> $GITHUB_ENV + fi + + # Checkout to the branch associated with the pull request + git stash --include-untracked + git checkout ${{ github.head_ref }} + + if [ ! -d "api-dump" ]; then + echo "api-dump folder does not exist. Creating it..." + mkdir -p "api-dump" + fi + + # Update the api-dump folder of the new version by making a commit if there are changes + for module in $modules; do + if [ ! -f api-dump/${module}.json ]; then + echo "API file does not exist in api-dump folder. Creating it..." + echo "{}" > "api-dump/${module}.json" + fi + if ! diff "$NEW_API_DIR/${module}.json" "api-dump/${module}.json" > /dev/null; then + echo "Updating API Dumps..." + mv "$NEW_API_DIR/${module}.json" "api-dump/${module}.json" + fi + done + + git config --global user.name "aws-amplify-ops" + git config --global user.email "aws-amplify@amazon.com" + + git add api-dump/*.json + + if ! git diff --cached --quiet --exit-code; then + # Get the file names that have changes + changed_files=$(git diff --cached --name-only) + + push_changes=false + for file in $changed_files; do + if [[ $file == api-dump/* ]]; then + # Get the number of lines in the file + total_lines=$(wc -l < "$file") + # Get the line numbers of the changes + changed_lines=$(git diff --cached -U0 "$file" | grep -o '@@ [^ ]* [^ ]* @@' | awk '{print $3}' | cut -d ',' -f1 | sed 's/[^0-9]//g') + echo "Changed lines in $file: $changed_lines" + # Check if any change is not within the last 10 lines + for line in $changed_lines; do + if [ "$line" -le "$((total_lines - 10))" ]; then + push_changes=true + break + fi + done + + # If any file should be pushed, break out of the loop + if [ "$push_changes" = true ]; then + break + fi + fi + done + + if [ "$push_changes" = true ]; then + git commit -m "Update API dumps for new version" + git push origin HEAD:${{ github.head_ref }} + else + echo "No changes to commit in the api-dump folder." + fi + else + echo "No changes to commit in the api-dump folder." + fi + + git stash pop || true + + - name: Comment on PR with API Diff + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const apiDiffOutput = process.env.API_DIFF_OUTPUT; + const issueNumber = context.payload.pull_request.number; + const owner = context.repo.owner; + const repo = context.repo.repo; + + if (apiDiffOutput && apiDiffOutput.trim().length > 0) { + github.rest.issues.createComment({ + owner: owner, + repo: repo, + issue_number: issueNumber, + body: `## API Breakage Report\n${apiDiffOutput}\n` + }); + } else { + console.log("No API diff output found."); + } + diff --git a/.github/workflows/api_digester_check.yml b/.github/workflows/api_digester_check.yml new file mode 100644 index 0000000000..4eaece17cf --- /dev/null +++ b/.github/workflows/api_digester_check.yml @@ -0,0 +1,39 @@ +name: Swift API Digester Functionality Check + +on: + schedule: + - cron: '0 15 * * *' # This will run the action every day at 3:00 pm UTC (8:00 am PDT) + workflow_dispatch: # Allows manual triggering + +jobs: + check-swift-api-digester: + runs-on: macos-latest + + steps: + - name: Checkout repository + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 + + - name: Check API Digester + shell: bash + env: + WEBHOOK_URL: ${{ secrets.SLACK_API_CHECKER_WEBHOOK_URL }} + run: | + TEMP_DIR=$(mktemp -d) + echo "Temporary directory created at $TEMP_DIR" + SDK_PATH=$(xcrun --sdk macosx --show-sdk-path) + echo "SDK Path: $SDK_PATH" + + # Run swift-api-digester + swift api-digester -sdk "$SDK_PATH" -diagnose-sdk --input-paths api-dump-test/A.json --input-paths api-dump-test/B.json >> "$TEMP_DIR/api-digester-output.txt" 2>&1 + + # Display the output + cat "$TEMP_DIR/api-digester-output.txt" + + if diff "$TEMP_DIR/api-digester-output.txt" api-dump-test/expected-result.txt; then + echo "The output matches the expected result." + else + echo "The output does not match the expected result." + WORKFLOW_URL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" + echo "$WORKFLOW_URL" | xargs -I {} curl -s POST "$WEBHOOK_URL" -H "Content-Type:application/json" --data '{"WORKFLOW_URL":"{}"}' + exit 1 + fi diff --git a/CircleciScripts/check_api_breakage.sh b/CircleciScripts/check_api_breakage.sh new file mode 100755 index 0000000000..9dfbb0afd8 --- /dev/null +++ b/CircleciScripts/check_api_breakage.sh @@ -0,0 +1,87 @@ +#!/bin/bash + +# Script: check_api_breakage.sh + +# Ensure the script is run from the root of the repository +if [ ! -d ".git" ]; then + echo "This script must be run from the root of the repository." + exit 1 +fi + +# Check if a base branch is provided as an argument +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 1 +fi + +BASE_BRANCH=$1 + +# Setup environment variables +OLD_API_DIR=$(mktemp -d) +NEW_API_DIR=$(mktemp -d) +REPORT_DIR=$(mktemp -d) +SDK_PATH=$(xcrun --show-sdk-path) + +modules=$(swift package dump-package | jq -r '.products | map(select(.name == "Amplify" or .name == "CoreMLPredictionsPlugin")) | map(.name) | .[]') + +# Ensure repository is up to date +git fetch origin + +# Fetch and build the main branch +echo "Fetching API from base branch ($BASE_BRANCH)..." +git checkout $BASE_BRANCH +git pull origin $BASE_BRANCH +swift build > /dev/null 2>&1 || { echo "Failed to build base branch ($BASE_BRANCH)"; exit 1; } +for module in $modules; do + # If file doesn't exits in the old directory + if [ ! -f api-dump/${module}.json ]; then + echo "Old API file does not exist in the base branch. Generating it..." + # Check if the project has been built + if ! $built; then + echo "Building project..." + swift build > /dev/null 2>&1 || { echo "Failed to build project"; exit 1; } + built=true + fi + + # Generate the API file using api-digester + swift api-digester -sdk "$SDK_PATH" -dump-sdk -module "$module" -o "$OLD_API_DIR/${module}.json" -I .build/debug || { echo "Failed to dump new SDK for module $module"; exit 1; } + else + # Use the api-dump/${module}.json file from the base branch directly + cp "api-dump/${module}.json" "$OLD_API_DIR/${module}.json" + fi +done + +# Fetch and build the current branch +echo "Fetching API from current branch..." +git checkout - +git pull origin "$(git rev-parse --abbrev-ref HEAD)" +swift build > /dev/null 2>&1 || { echo "Failed to build current branch"; exit 1; } +for module in $modules; do + swift api-digester -sdk "$SDK_PATH" -dump-sdk -module "${module}" -o "$NEW_API_DIR/${module}.json" -I .build/debug || { echo "Failed to dump SDK for current branch"; exit 1; } +done + +# Compare APIs for each module and capture the output +api_diff_output="" +for module in $modules; do + swift api-digester -sdk "$SDK_PATH" -diagnose-sdk --input-paths "$OLD_API_DIR/${module}.json" --input-paths "$NEW_API_DIR/${module}.json" > "$REPORT_DIR/api-diff-report.txt" 2>&1 + module_diff_output=$(grep -v '^/\*' "$REPORT_DIR/api-diff-report.txt" | grep -v '^$' || true) + if [ -n "$module_diff_output" ]; then + api_diff_output=$(printf "%s\n Module: %s\n%s\n" "$api_diff_output" "$module" "$module_diff_output") + # Check if there are lines containing "has been renamed to Func" + if echo "$module_diff_output" | grep -q 'has been renamed to Func'; then + # Capture the line containing "has been renamed to Func" + renamed_line=$(echo "$module_diff_output" | grep 'has been renamed to Func') + + # Append a message to the module_diff_output + api_diff_output="${api_diff_output}👉🏻 _Note: If you're just adding optional parameters to existing methods, neglect the line:_\n_${renamed_line}_\n" + fi + fi +done + +if [ -n "$api_diff_output" ]; + then + echo "💔 Public API Breaking Change detected:" + echo "$api_diff_output" +else + echo "✅ No Public API Breaking Change detected" +fi diff --git a/api-dump-test/A.json b/api-dump-test/A.json new file mode 100644 index 0000000000..8e1696b009 --- /dev/null +++ b/api-dump-test/A.json @@ -0,0 +1,395 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "DigesterTest" + }, + { + "kind": "TypeDecl", + "name": "DigesterTest", + "printedName": "DigesterTest", + "children": [ + { + "kind": "Var", + "name": "testVar", + "printedName": "testVar", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:7DigesterTestAAC10testVarSfvpZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvpZ", + "moduleName": "DigesterTest", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTestAAC10testVarSfvgZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvgZ", + "moduleName": "DigesterTest", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTestAAC10testVarSfvsZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvsZ", + "moduleName": "DigesterTest", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + } + ] + } + ] + }, + { + "kind": "TypeDecl", + "name": "Direction", + "printedName": "Direction", + "children": [ + { + "kind": "Var", + "name": "north", + "printedName": "north", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO5northyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO5northyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Var", + "name": "south", + "printedName": "south", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO5southyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO5southyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Var", + "name": "east", + "printedName": "east", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO4eastyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO4eastyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "DigesterTest.Direction?", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7DigesterTest9DirectionO8rawValueACSgSS_tcfc", + "mangledName": "$s7DigesterTest9DirectionO8rawValueACSgSS_tcfc", + "moduleName": "DigesterTest", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7DigesterTest9DirectionO8RawValuea", + "mangledName": "$s7DigesterTest9DirectionO8RawValuea", + "moduleName": "DigesterTest", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7DigesterTest9DirectionO8rawValueSSvp", + "mangledName": "$s7DigesterTest9DirectionO8rawValueSSvp", + "moduleName": "DigesterTest", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTest9DirectionO8rawValueSSvg", + "mangledName": "$s7DigesterTest9DirectionO8rawValueSSvg", + "moduleName": "DigesterTest", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7DigesterTest9DirectionO", + "mangledName": "$s7DigesterTest9DirectionO", + "moduleName": "DigesterTest", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Library\/Developer\/CommandLineTools\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "DigesterTest", + "-o", + ".\/api-dump-test\/DigesterTest.json", + "-I", + ".build\/debug", + "-sdk-version", + "23E208" + ] + } +} diff --git a/api-dump-test/B.json b/api-dump-test/B.json new file mode 100644 index 0000000000..379ee82aba --- /dev/null +++ b/api-dump-test/B.json @@ -0,0 +1,443 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "DigesterTest" + }, + { + "kind": "TypeDecl", + "name": "DigesterTest", + "printedName": "DigesterTest", + "children": [ + { + "kind": "Var", + "name": "testVar", + "printedName": "testVar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:7DigesterTestAAC10testVarSfvpZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvpZ", + "moduleName": "DigesterTest", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SPIAccessControl", + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTestAAC10testVarSfvgZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvgZ", + "moduleName": "DigesterTest", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTestAAC10testVarSfvsZ", + "mangledName": "$s7DigesterTestAAC10testVarSfvsZ", + "moduleName": "DigesterTest", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + } + ] + } + ] + }, + { + "kind": "TypeDecl", + "name": "Direction", + "printedName": "Direction", + "children": [ + { + "kind": "Var", + "name": "north", + "printedName": "north", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO5northyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO5northyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Var", + "name": "south", + "printedName": "south", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO5southyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO5southyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Var", + "name": "east", + "printedName": "east", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO4eastyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO4eastyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Var", + "name": "west", + "printedName": "west", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(DigesterTest.Direction.Type) -> DigesterTest.Direction", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(DigesterTest.Direction.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "DigesterTest.Direction.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7DigesterTest9DirectionO4westyA2CmF", + "mangledName": "$s7DigesterTest9DirectionO4westyA2CmF", + "moduleName": "DigesterTest" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "DigesterTest.Direction?", + "children": [ + { + "kind": "TypeNominal", + "name": "Direction", + "printedName": "DigesterTest.Direction", + "usr": "s:7DigesterTest9DirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7DigesterTest9DirectionO8rawValueACSgSS_tcfc", + "mangledName": "$s7DigesterTest9DirectionO8rawValueACSgSS_tcfc", + "moduleName": "DigesterTest", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7DigesterTest9DirectionO8RawValuea", + "mangledName": "$s7DigesterTest9DirectionO8RawValuea", + "moduleName": "DigesterTest", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7DigesterTest9DirectionO8rawValueSSvp", + "mangledName": "$s7DigesterTest9DirectionO8rawValueSSvp", + "moduleName": "DigesterTest", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7DigesterTest9DirectionO8rawValueSSvg", + "mangledName": "$s7DigesterTest9DirectionO8rawValueSSvg", + "moduleName": "DigesterTest", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7DigesterTest9DirectionO", + "mangledName": "$s7DigesterTest9DirectionO", + "moduleName": "DigesterTest", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Library\/Developer\/CommandLineTools\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "DigesterTest", + "-o", + ".\/api-dump-test\/DigesterTest.json", + "-I", + ".build\/debug", + "-sdk-version", + "23E208" + ] + } +} diff --git a/api-dump-test/expected-result.txt b/api-dump-test/expected-result.txt new file mode 100644 index 0000000000..2f7ab344a1 --- /dev/null +++ b/api-dump-test/expected-result.txt @@ -0,0 +1,29 @@ + +/* Generic Signature Changes */ + +/* RawRepresentable Changes */ + +/* Removed Decls */ + +/* Moved Decls */ + +/* Renamed Decls */ + +/* Type Changes */ +Accessor DigesterTest.testVar.Get() has return type change from Swift.Float to Swift.Int +Accessor DigesterTest.testVar.Set() has parameter 0 type change from Swift.Float to Swift.Int +Var DigesterTest.testVar has declared type change from Swift.Float to Swift.Int + +/* Decl Attribute changes */ +Var DigesterTest.testVar is now with @_spi + +/* Fixed-layout Type Changes */ +EnumElement Direction.west has been added as a new enum case + +/* Protocol Conformance Change */ + +/* Protocol Requirement Change */ + +/* Class Inheritance Change */ + +/* Others */ diff --git a/api-dump/AWSDataStorePlugin.json b/api-dump/AWSDataStorePlugin.json new file mode 100644 index 0000000000..f166e5bd3b --- /dev/null +++ b/api-dump/AWSDataStorePlugin.json @@ -0,0 +1,8222 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "AWSPluginsCore", + "printedName": "AWSPluginsCore", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "Amplify", + "printedName": "Amplify", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "Combine", + "printedName": "Combine", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "SQLite", + "printedName": "SQLite", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "SQLite3", + "printedName": "SQLite3", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "SwiftOnoneSupport", + "printedName": "SwiftOnoneSupport", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "_Concurrency", + "printedName": "_Concurrency", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "_StringProcessing", + "printedName": "_StringProcessing", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Import", + "name": "_SwiftConcurrencyShims", + "printedName": "_SwiftConcurrencyShims", + "declKind": "Import", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "AWSDataStorePlugin", + "printedName": "AWSDataStorePlugin", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePluginAAC3keySSvp", + "mangledName": "$s18AWSDataStorePluginAAC3keySSvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePluginAAC3keySSvg", + "mangledName": "$s18AWSDataStorePluginAAC3keySSvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePluginAAC3keySSvs", + "mangledName": "$s18AWSDataStorePluginAAC3keySSvs", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelRegistration:configuration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSDataStorePlugin", + "printedName": "AWSDataStorePlugin.AWSDataStorePlugin", + "usr": "s:18AWSDataStorePluginAAC" + }, + { + "kind": "TypeNominal", + "name": "AmplifyModelRegistration", + "printedName": "Amplify.AmplifyModelRegistration", + "usr": "s:7Amplify0A17ModelRegistrationP" + }, + { + "kind": "TypeNominal", + "name": "DataStoreConfiguration", + "printedName": "AWSDataStorePlugin.DataStoreConfiguration", + "hasDefaultArg": true, + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePluginAAC17modelRegistration13configurationAB7Amplify0g5ModelE0_p_AA04DataB13ConfigurationVtcfc", + "mangledName": "$s18AWSDataStorePluginAAC17modelRegistration13configurationAB7Amplify0g5ModelE0_p_AA04DataB13ConfigurationVtcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(using:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC9configure5usingyypSg_tKF", + "mangledName": "$s18AWSDataStorePluginAAC9configure5usingyypSg_tKF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5resetyyYaF", + "mangledName": "$s18AWSDataStorePluginAAC5resetyyYaF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(_:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4save_5where10completionyx_7Amplify14QueryPredicate_pSgys6ResultOyxAF04DataB5ErrorOGctAF5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC4save_5where10completionyx_7Amplify14QueryPredicate_pSgys6ResultOyxAF04DataB5ErrorOGctAF5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4save_5wherexx_7Amplify14QueryPredicate_pSgtYaKAE5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC4save_5wherexx_7Amplify14QueryPredicate_pSgtYaKAE5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(_:modelSchema:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4save_11modelSchema5where10completionyx_7Amplify05ModelF0VAG14QueryPredicate_pSgys6ResultOyxAG04DataB5ErrorOGctAG0J0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC4save_11modelSchema5where10completionyx_7Amplify05ModelF0VAG14QueryPredicate_pSgys6ResultOyxAG04DataB5ErrorOGctAG0J0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(_:modelSchema:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4save_11modelSchema5wherexx_7Amplify05ModelF0VAF14QueryPredicate_pSgtYaKAF0I0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC4save_11modelSchema5wherexx_7Amplify05ModelF0VAF14QueryPredicate_pSgtYaKAF0I0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_4byId10completionyxm_SSys6ResultOyxSg7Amplify04DataB5ErrorOGXEtAI5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_4byId10completionyxm_SSys6ResultOyxSg7Amplify04DataB5ErrorOGXEtAI5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_4byIdxSgxm_SStYaK7Amplify5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_4byIdxSgxm_SStYaK7Amplify5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_12byIdentifier10completionyxm_SSys6ResultOyxSg7Amplify04DataB5ErrorOGXEtAI5ModelRzAI0L12IdentifiableRzAI0lF6FormatO7DefaultO0fN0AiNPRtzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_12byIdentifier10completionyxm_SSys6ResultOyxSg7Amplify04DataB5ErrorOGXEtAI5ModelRzAI0L12IdentifiableRzAI0lF6FormatO7DefaultO0fN0AiNPRtzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_12byIdentifierxSgxm_SStYaK7Amplify5ModelRzAF0H12IdentifiableRzAF0hF6FormatO7DefaultO0fJ0AfHPRtzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_12byIdentifierxSgxm_SStYaK7Amplify5ModelRzAF0H12IdentifiableRzAF0hF6FormatO7DefaultO0fJ0AfHPRtzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_12byIdentifier10completionyxm_7Amplify05ModelF0Vyx0F6FormatAF0I12IdentifiablePQzGys6ResultOyxSgAF04DataB5ErrorOGXEtAF0I0RzAfJRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_12byIdentifier10completionyxm_7Amplify05ModelF0Vyx0F6FormatAF0I12IdentifiablePQzGys6ResultOyxSgAF04DataB5ErrorOGXEtAF0I0RzAfJRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_12byIdentifierxSgxm_7Amplify05ModelF0Vyx0F6FormatAF0H12IdentifiablePQzGtYaKAF0H0RzAfJRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_12byIdentifierxSgxm_7Amplify05ModelF0Vyx0F6FormatAF0H12IdentifiablePQzGtYaKAF0H0RzAfJRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:where:sort:paginate:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult<[M]>) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult<[M]>)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult<[M]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[M], Amplify.DataStoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_5where4sort8paginate10completionyxm_7Amplify14QueryPredicate_pSgAH0J9SortInputVSgAH0j10PaginationM0VSgys6ResultOySayxGAH04DataB5ErrorOGXEtAH5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_5where4sort8paginate10completionyxm_7Amplify14QueryPredicate_pSgAH0J9SortInputVSgAH0j10PaginationM0VSgys6ResultOySayxGAH04DataB5ErrorOGXEtAH5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:where:sort:paginate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_5where4sort8paginateSayxGxm_7Amplify14QueryPredicate_pSgAH0I9SortInputVSgAH0i10PaginationL0VSgtYaKAH5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_5where4sort8paginateSayxGxm_7Amplify14QueryPredicate_pSgAH0I9SortInputVSgAH0i10PaginationL0VSgtYaKAH5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:modelSchema:where:sort:paginate:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[AWSDataStorePlugin.QuerySortDescriptor]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSDataStorePlugin.QuerySortDescriptor]", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortDescriptor", + "printedName": "AWSDataStorePlugin.QuerySortDescriptor", + "usr": "s:18AWSDataStorePlugin19QuerySortDescriptorV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult<[M]>) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult<[M]>)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult<[M]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[M], Amplify.DataStoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_11modelSchema5where4sort8paginate10completionyxm_7Amplify05ModelF0VAI14QueryPredicate_pSgSayAA0M14SortDescriptorVGSgAI0M15PaginationInputVSgys6ResultOySayxGAI04DataB5ErrorOGXEtAI0L0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_11modelSchema5where4sort8paginate10completionyxm_7Amplify05ModelF0VAI14QueryPredicate_pSgSayAA0M14SortDescriptorVGSgAI0M15PaginationInputVSgys6ResultOySayxGAI04DataB5ErrorOGXEtAI0L0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:modelSchema:where:sort:paginate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[AWSDataStorePlugin.QuerySortDescriptor]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSDataStorePlugin.QuerySortDescriptor]", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortDescriptor", + "printedName": "AWSDataStorePlugin.QuerySortDescriptor", + "usr": "s:18AWSDataStorePlugin19QuerySortDescriptorV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_11modelSchema5where4sort8paginateSayxGxm_7Amplify05ModelF0VAI14QueryPredicate_pSgSayAA0L14SortDescriptorVGSgAI0L15PaginationInputVSgtYaKAI0K0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_11modelSchema5where4sort8paginateSayxGxm_7Amplify05ModelF0VAI14QueryPredicate_pSgSayAA0L14SortDescriptorVGSgAI0L15PaginationInputVSgtYaKAI0K0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withId:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_6withId5whereyxm_SS7Amplify14QueryPredicate_pSgtYaKAF5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_6withId5whereyxm_SS7Amplify14QueryPredicate_pSgtYaKAF5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:withId:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema6withId5whereyxm_7Amplify05ModelF0VSSAG14QueryPredicate_pSgtYaKAG0K0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema6withId5whereyxm_7Amplify05ModelF0VSSAG14QueryPredicate_pSgtYaKAG0K0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_14withIdentifier5where10completionyxm_SS7Amplify14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG5ModelRzAG0O12IdentifiableRzAG0oF6FormatO7DefaultO0fQ0AgPPRtzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_14withIdentifier5where10completionyxm_SS7Amplify14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG5ModelRzAG0O12IdentifiableRzAG0oF6FormatO7DefaultO0fQ0AgPPRtzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_14withIdentifier5whereyxm_SS7Amplify14QueryPredicate_pSgtYaKAF5ModelRzAF0K12IdentifiableRzAF0kF6FormatO7DefaultO0fM0AfJPRtzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_14withIdentifier5whereyxm_SS7Amplify14QueryPredicate_pSgtYaKAF5ModelRzAF0K12IdentifiableRzAF0kF6FormatO7DefaultO0fM0AfJPRtzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_14withIdentifier5where10completionyxm_7Amplify05ModelF0Vyx0F6FormatAG0J12IdentifiablePQzGAG14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG0J0RzAgKRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_14withIdentifier5where10completionyxm_7Amplify05ModelF0Vyx0F6FormatAG0J12IdentifiablePQzGAG14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG0J0RzAgKRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_14withIdentifier5whereyxm_7Amplify05ModelF0Vyx0F6FormatAF0I12IdentifiablePQzGAF14QueryPredicate_pSgtYaKAF0I0RzAfJRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_14withIdentifier5whereyxm_7Amplify05ModelF0Vyx0F6FormatAF0I12IdentifiablePQzGAF14QueryPredicate_pSgtYaKAF0I0RzAfJRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_5where10completionyx_7Amplify14QueryPredicate_pSgys6ResultOyytAF04DataB5ErrorOGctAF5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_5where10completionyx_7Amplify14QueryPredicate_pSgys6ResultOyytAF04DataB5ErrorOGctAF5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_5whereyx_7Amplify14QueryPredicate_pSgtYaKAE5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_5whereyx_7Amplify14QueryPredicate_pSgtYaKAE5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema5where10completionyx_7Amplify05ModelF0VAG14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG0J0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema5where10completionyx_7Amplify05ModelF0VAG14QueryPredicate_pSgys6ResultOyytAG04DataB5ErrorOGctAG0J0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema5whereyx_7Amplify05ModelF0VAF14QueryPredicate_pSgtYaKAF0I0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema5whereyx_7Amplify05ModelF0VAF14QueryPredicate_pSgtYaKAF0I0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_5where10completionyxm_7Amplify14QueryPredicate_pys6ResultOyytAF04DataB5ErrorOGctAF5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_5where10completionyxm_7Amplify14QueryPredicate_pys6ResultOyytAF04DataB5ErrorOGctAF5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_5whereyxm_7Amplify14QueryPredicate_ptYaKAE5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_5whereyxm_7Amplify14QueryPredicate_ptYaKAE5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema5where10completionyxm_7Amplify05ModelF0VAG14QueryPredicate_pys6ResultOyytAG04DataB5ErrorOGctAG0J0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema5where10completionyxm_7Amplify05ModelF0VAG14QueryPredicate_pys6ResultOyytAG04DataB5ErrorOGctAG0J0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema5whereyxm_7Amplify05ModelF0VAF14QueryPredicate_ptYaKAF0I0RzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema5whereyxm_7Amplify05ModelF0VAF14QueryPredicate_ptYaKAF0I0RzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5start10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "mangledName": "$s18AWSDataStorePluginAAC5start10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5startyyYaKF", + "mangledName": "$s18AWSDataStorePluginAAC5startyyYaKF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4stop10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "mangledName": "$s18AWSDataStorePluginAAC4stop10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC4stopyyYaKF", + "mangledName": "$s18AWSDataStorePluginAAC4stopyyYaKF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5clear10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "mangledName": "$s18AWSDataStorePluginAAC5clear10completionyys6ResultOyyt7Amplify04DataB5ErrorOGc_tF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5clearyyYaKF", + "mangledName": "$s18AWSDataStorePluginAAC5clearyyYaKF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:modelSchema:byIdentifier:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC5query_11modelSchema12byIdentifier10completionyxm_7Amplify05ModelF0VAG0kH0Vyx0H6FormatAG0K12IdentifiablePQzGys6ResultOyxSgAG04DataB5ErrorOGXEtAG0K0RzAgMRzlF", + "mangledName": "$s18AWSDataStorePluginAAC5query_11modelSchema12byIdentifier10completionyxm_7Amplify05ModelF0VAG0kH0Vyx0H6FormatAG0K12IdentifiablePQzGys6ResultOyxSgAG04DataB5ErrorOGXEtAG0K0RzAgMRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:withIdentifier:where:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreCallback", + "printedName": "Amplify.DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC6delete_11modelSchema14withIdentifier5where10completionyxm_7Amplify05ModelF0VAH0lH0Vyx0H6FormatAH0L12IdentifiablePQzGAH14QueryPredicate_pSgys6ResultOyytAH04DataB5ErrorOGctAH0L0RzAhNRzlF", + "mangledName": "$s18AWSDataStorePluginAAC6delete_11modelSchema14withIdentifier5where10completionyxm_7Amplify05ModelF0VAH0lH0Vyx0H6FormatAH0L12IdentifiablePQzGAH14QueryPredicate_pSgys6ResultOyytAH04DataB5ErrorOGctAH0L0RzAhNRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "publisher", + "printedName": "publisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePluginAAC9publisher7Combine12AnyPublisherVy7Amplify13MutationEventVAG04DataB5ErrorOGvp", + "mangledName": "$s18AWSDataStorePluginAAC9publisher7Combine12AnyPublisherVy7Amplify13MutationEventVAG04DataB5ErrorOGvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePluginAAC9publisher7Combine12AnyPublisherVy7Amplify13MutationEventVAG04DataB5ErrorOGvg", + "mangledName": "$s18AWSDataStorePluginAAC9publisher7Combine12AnyPublisherVy7Amplify13MutationEventVAG04DataB5ErrorOGvg", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "publisher", + "printedName": "publisher(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + }, + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC9publisher3for7Combine12AnyPublisherVy7Amplify13MutationEventVAH04DataB5ErrorOGSS_tF", + "mangledName": "$s18AWSDataStorePluginAAC9publisher3for7Combine12AnyPublisherVy7Amplify13MutationEventVAH04DataB5ErrorOGSS_tF", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC7observey7Amplify0E21AsyncThrowingSequenceCyAD13MutationEventVGxmAD5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC7observey7Amplify0E21AsyncThrowingSequenceCyAD13MutationEventVGxmAD5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeQuery", + "printedName": "observeQuery(for:where:sort:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence>", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreQuerySnapshot", + "printedName": "Amplify.DataStoreQuerySnapshot", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify22DataStoreQuerySnapshotV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePluginAAC12observeQuery3for5where4sort7Amplify0I21AsyncThrowingSequenceCyAG04DatabE8SnapshotVyxGGxm_AG0E9Predicate_pSgAG0E9SortInputVSgtAG5ModelRzlF", + "mangledName": "$s18AWSDataStorePluginAAC12observeQuery3for5where4sort7Amplify0I21AsyncThrowingSequenceCyAG04DatabE8SnapshotVyxGGxm_AG0E9Predicate_pSgAG0E9SortInputVSgtAG5ModelRzlF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePluginAAC3log7Amplify6Logger_pvpZ", + "mangledName": "$s18AWSDataStorePluginAAC3log7Amplify6Logger_pvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePluginAAC3log7Amplify6Logger_pvgZ", + "mangledName": "$s18AWSDataStorePluginAAC3log7Amplify6Logger_pvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePluginAAC3log7Amplify6Logger_pvp", + "mangledName": "$s18AWSDataStorePluginAAC3log7Amplify6Logger_pvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePluginAAC3log7Amplify6Logger_pvg", + "mangledName": "$s18AWSDataStorePluginAAC3log7Amplify6Logger_pvg", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:18AWSDataStorePluginAAC", + "mangledName": "$s18AWSDataStorePluginAAC", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DataStoreCategoryPlugin", + "printedName": "DataStoreCategoryPlugin", + "usr": "s:7Amplify23DataStoreCategoryPluginP", + "mangledName": "$s7Amplify23DataStoreCategoryPluginP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "DataStoreBaseBehavior", + "printedName": "DataStoreBaseBehavior", + "usr": "s:7Amplify21DataStoreBaseBehaviorP", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP" + }, + { + "kind": "Conformance", + "name": "DataStoreSubscribeBehavior", + "printedName": "DataStoreSubscribeBehavior", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "AmplifyVersionable", + "printedName": "AmplifyVersionable", + "usr": "s:7Amplify0A11VersionableP", + "mangledName": "$s7Amplify0A11VersionableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "DataStoreErrorHandler", + "printedName": "DataStoreErrorHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin04DataB12ErrorHandlera", + "mangledName": "$s18AWSDataStorePlugin04DataB12ErrorHandlera", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "DataStoreConflictData", + "printedName": "DataStoreConflictData", + "children": [ + { + "kind": "Var", + "name": "local", + "printedName": "local", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V5local7Amplify5Model_pvp", + "mangledName": "$s18AWSDataStorePlugin04Datab8ConflictD0V5local7Amplify5Model_pvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V5local7Amplify5Model_pvg", + "mangledName": "$s18AWSDataStorePlugin04Datab8ConflictD0V5local7Amplify5Model_pvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "remote", + "printedName": "remote", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V6remote7Amplify5Model_pvp", + "mangledName": "$s18AWSDataStorePlugin04Datab8ConflictD0V6remote7Amplify5Model_pvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V6remote7Amplify5Model_pvg", + "mangledName": "$s18AWSDataStorePlugin04Datab8ConflictD0V6remote7Amplify5Model_pvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V", + "mangledName": "$s18AWSDataStorePlugin04Datab8ConflictD0V", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeAlias", + "name": "DataStoreConflictHandler", + "printedName": "DataStoreConflictHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, @escaping AWSDataStorePlugin.DataStoreConflictHandlerResolver) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, AWSDataStorePlugin.DataStoreConflictHandlerResolver)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictData", + "printedName": "AWSDataStorePlugin.DataStoreConflictData", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandlerResolver", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin04DataB15ConflictHandlera", + "mangledName": "$s18AWSDataStorePlugin04DataB15ConflictHandlera", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeAlias", + "name": "DataStoreConflictHandlerResolver", + "printedName": "DataStoreConflictHandlerResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin04DataB23ConflictHandlerResolvera", + "mangledName": "$s18AWSDataStorePlugin04DataB23ConflictHandlerResolvera", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "DataStoreConflictHandlerResult", + "printedName": "DataStoreConflictHandlerResult", + "children": [ + { + "kind": "Var", + "name": "applyRemote", + "printedName": "applyRemote", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type) -> AWSDataStorePlugin.DataStoreConflictHandlerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO11applyRemoteyA2CmF", + "mangledName": "$s18AWSDataStorePlugin04DataB21ConflictHandlerResultO11applyRemoteyA2CmF", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Var", + "name": "retryLocal", + "printedName": "retryLocal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type) -> AWSDataStorePlugin.DataStoreConflictHandlerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO10retryLocalyA2CmF", + "mangledName": "$s18AWSDataStorePlugin04DataB21ConflictHandlerResultO10retryLocalyA2CmF", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Var", + "name": "retry", + "printedName": "retry", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type) -> (Amplify.Model) -> AWSDataStorePlugin.DataStoreConflictHandlerResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Model) -> AWSDataStorePlugin.DataStoreConflictHandlerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Model)", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO5retryyAC7Amplify5Model_pcACmF", + "mangledName": "$s18AWSDataStorePlugin04DataB21ConflictHandlerResultO5retryyAC7Amplify5Model_pcACmF", + "moduleName": "AWSDataStorePlugin" + } + ], + "declKind": "Enum", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO", + "mangledName": "$s18AWSDataStorePlugin04DataB21ConflictHandlerResultO", + "moduleName": "AWSDataStorePlugin", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "DataStoreConfiguration", + "printedName": "DataStoreConfiguration", + "children": [ + { + "kind": "Var", + "name": "errorHandler", + "printedName": "errorHandler", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreErrorHandler", + "printedName": "AWSDataStorePlugin.DataStoreErrorHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12errorHandleryy7Amplify0H5Error_pcvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12errorHandleryy7Amplify0H5Error_pcvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreErrorHandler", + "printedName": "AWSDataStorePlugin.DataStoreErrorHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12errorHandleryy7Amplify0H5Error_pcvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12errorHandleryy7Amplify0H5Error_pcvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conflictHandler", + "printedName": "conflictHandler", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandler", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, @escaping AWSDataStorePlugin.DataStoreConflictHandlerResolver) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, AWSDataStorePlugin.DataStoreConflictHandlerResolver)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictData", + "printedName": "AWSDataStorePlugin.DataStoreConflictData", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandlerResolver", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV15conflictHandleryyAA0db8ConflictD0V_yAA0dbhG6ResultOctcvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV15conflictHandleryyAA0db8ConflictD0V_yAA0dbhG6ResultOctcvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandler", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, @escaping AWSDataStorePlugin.DataStoreConflictHandlerResolver) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, AWSDataStorePlugin.DataStoreConflictHandlerResolver)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictData", + "printedName": "AWSDataStorePlugin.DataStoreConflictData", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandlerResolver", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV15conflictHandleryyAA0db8ConflictD0V_yAA0dbhG6ResultOctcvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV15conflictHandleryyAA0db8ConflictD0V_yAA0dbhG6ResultOctcvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncInterval", + "printedName": "syncInterval", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12syncIntervalSdvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12syncIntervalSdvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12syncIntervalSdvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12syncIntervalSdvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncMaxRecords", + "printedName": "syncMaxRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV14syncMaxRecordsSuvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV14syncMaxRecordsSuvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV14syncMaxRecordsSuvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV14syncMaxRecordsSuvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncPageSize", + "printedName": "syncPageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12syncPageSizeSuvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12syncPageSizeSuvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV12syncPageSizeSuvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV12syncPageSizeSuvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncExpressions", + "printedName": "syncExpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSDataStorePlugin.DataStoreSyncExpression]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreSyncExpression", + "printedName": "AWSDataStorePlugin.DataStoreSyncExpression", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV15syncExpressionsSayAA0dB14SyncExpressionVGvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV15syncExpressionsSayAA0dB14SyncExpressionVGvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSDataStorePlugin.DataStoreSyncExpression]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreSyncExpression", + "printedName": "AWSDataStorePlugin.DataStoreSyncExpression", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV15syncExpressionsSayAA0dB14SyncExpressionVGvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV15syncExpressionsSayAA0dB14SyncExpressionVGvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authModeStrategyType", + "printedName": "authModeStrategyType", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovs", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV20authModeStrategyType14AWSPluginsCore04AuthghI0Ovs", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "disableSubscriptions", + "printedName": "disableSubscriptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV20disableSubscriptionsSbycvp", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV20disableSubscriptionsSbycvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV20disableSubscriptionsSbycvg", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV20disableSubscriptionsSbycvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSyncInterval", + "printedName": "defaultSyncInterval", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncIntervalSdvpZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncIntervalSdvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncIntervalSdvgZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncIntervalSdvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSyncMaxRecords", + "printedName": "defaultSyncMaxRecords", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV21defaultSyncMaxRecordsSuvpZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV21defaultSyncMaxRecordsSuvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV21defaultSyncMaxRecordsSuvgZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV21defaultSyncMaxRecordsSuvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultSyncPageSize", + "printedName": "defaultSyncPageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncPageSizeSuvpZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncPageSizeSuvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncPageSizeSuvgZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV19defaultSyncPageSizeSuvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "custom", + "printedName": "custom(errorHandler:conflictHandler:syncInterval:syncMaxRecords:syncPageSize:syncExpressions:authModeStrategy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConfiguration", + "printedName": "AWSDataStorePlugin.DataStoreConfiguration", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreErrorHandler", + "printedName": "AWSDataStorePlugin.DataStoreErrorHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandler", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, @escaping AWSDataStorePlugin.DataStoreConflictHandlerResolver) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSDataStorePlugin.DataStoreConflictData, AWSDataStorePlugin.DataStoreConflictHandlerResolver)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictData", + "printedName": "AWSDataStorePlugin.DataStoreConflictData", + "usr": "s:18AWSDataStorePlugin04Datab8ConflictD0V" + }, + { + "kind": "TypeNameAlias", + "name": "DataStoreConflictHandlerResolver", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.DataStoreConflictHandlerResult)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConflictHandlerResult", + "printedName": "AWSDataStorePlugin.DataStoreConflictHandlerResult", + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB21ConflictHandlerResultO" + } + ] + } + ] + } + ] + } + ] + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSDataStorePlugin.DataStoreSyncExpression]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreSyncExpression", + "printedName": "AWSDataStorePlugin.DataStoreSyncExpression", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "hasDefaultArg": true, + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV6custom12errorHandler08conflictH012syncInterval0J10MaxRecords0J8PageSize0J11Expressions16authModeStrategyACy7Amplify0T5Error_pc_yAA0db8ConflictD0V_yAA0dbvH6ResultOctcSdS2uSayAA0dB14SyncExpressionVG14AWSPluginsCore04AuthrS4TypeOtFZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV6custom12errorHandler08conflictH012syncInterval0J10MaxRecords0J8PageSize0J11Expressions16authModeStrategyACy7Amplify0T5Error_pc_yAA0db8ConflictD0V_yAA0dbvH6ResultOctcSdS2uSayAA0dB14SyncExpressionVG14AWSPluginsCore04AuthrS4TypeOtFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConfiguration", + "printedName": "AWSDataStorePlugin.DataStoreConfiguration", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV7defaultACvpZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV7defaultACvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreConfiguration", + "printedName": "AWSDataStorePlugin.DataStoreConfiguration", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV7defaultACvgZ", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV7defaultACvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin04DataB13ConfigurationV", + "mangledName": "$s18AWSDataStorePlugin04DataB13ConfigurationV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "DataStoreListDecoder", + "printedName": "DataStoreListDecoder", + "children": [ + { + "kind": "Function", + "name": "decode", + "printedName": "decode(modelType:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnyModelListProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelListProvider", + "printedName": "Amplify.AnyModelListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify20AnyModelListProviderV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ModelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB11ListDecoderV6decode9modelType7decoder7Amplify08AnyModelE8ProviderVyxGSgxm_s0F0_ptAG0M0RzlFZ", + "mangledName": "$s18AWSDataStorePlugin04DataB11ListDecoderV6decode9modelType7decoder7Amplify08AnyModelE8ProviderVyxGSgxm_s0F0_ptAG0M0RzlFZ", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDecodeToDataStoreListProvider", + "printedName": "shouldDecodeToDataStoreListProvider(modelType:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSDataStorePlugin.DataStoreListProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreListProvider", + "printedName": "AWSDataStorePlugin.DataStoreListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ModelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB11ListDecoderV014shouldDecodeTodbE8Provider9modelType7decoderAA0dbeJ0CyxGSgxm_s0F0_pt7Amplify5ModelRzlFZ", + "mangledName": "$s18AWSDataStorePlugin04DataB11ListDecoderV014shouldDecodeTodbE8Provider9modelType7decoderAA0dbeJ0CyxGSgxm_s0F0_pt7Amplify5ModelRzlFZ", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin04DataB11ListDecoderV", + "mangledName": "$s18AWSDataStorePlugin04DataB11ListDecoderV", + "moduleName": "AWSDataStorePlugin", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelListDecoder", + "printedName": "ModelListDecoder", + "usr": "s:7Amplify16ModelListDecoderP", + "mangledName": "$s7Amplify16ModelListDecoderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreListProvider", + "printedName": "DataStoreListProvider", + "children": [ + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC8getState7Amplify05ModelefH0OyxGyF", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC8getState7Amplify05ModelefH0OyxGyF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC4loadSayxGyYaKF", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC4loadSayxGyYaKF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasNextPage", + "printedName": "hasNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC11hasNextPageSbyF", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC11hasNextPageSbyF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC11getNextPage7Amplify0E0CyxGyYaKF", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC11getNextPage7Amplify0E0CyxGyYaKF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC6encode2toys7Encoder_p_tKF", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC6encode2toys7Encoder_p_tKF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC7Elementa", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC7Elementa", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "implicit": true + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvpZ", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvgZ", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvgZ", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvp", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvp", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvg", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC3log7Amplify6Logger_pvg", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:18AWSDataStorePlugin04DataB12ListProviderC", + "mangledName": "$s18AWSDataStorePlugin04DataB12ListProviderC", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ModelListProvider", + "printedName": "ModelListProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:7Amplify17ModelListProviderP", + "mangledName": "$s7Amplify17ModelListProviderP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreModelDecoder", + "printedName": "DataStoreModelDecoder", + "children": [ + { + "kind": "Function", + "name": "decode", + "printedName": "decode(modelType:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnyModelProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelProvider", + "printedName": "Amplify.AnyModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify16AnyModelProviderV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ModelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB12ModelDecoderV6decode9modelType7decoder7Amplify03AnyE8ProviderVyxGSgxm_s0F0_ptAG0E0RzlFZ", + "mangledName": "$s18AWSDataStorePlugin04DataB12ModelDecoderV6decode9modelType7decoder7Amplify03AnyE8ProviderVyxGSgxm_s0F0_ptAG0E0RzlFZ", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin04DataB12ModelDecoderV", + "mangledName": "$s18AWSDataStorePlugin04DataB12ModelDecoderV", + "moduleName": "AWSDataStorePlugin", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelProviderDecoder", + "printedName": "ModelProviderDecoder", + "usr": "s:7Amplify20ModelProviderDecoderP", + "mangledName": "$s7Amplify20ModelProviderDecoderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreModelProvider", + "printedName": "DataStoreModelProvider", + "children": [ + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ModelType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB13ModelProviderC4loadxSgyYaKF", + "mangledName": "$s18AWSDataStorePlugin04DataB13ModelProviderC4loadxSgyYaKF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB13ModelProviderC8getState7Amplify0efH0OyxGyF", + "mangledName": "$s18AWSDataStorePlugin04DataB13ModelProviderC8getState7Amplify0efH0OyxGyF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB13ModelProviderC6encode2toys7Encoder_p_tKF", + "mangledName": "$s18AWSDataStorePlugin04DataB13ModelProviderC6encode2toys7Encoder_p_tKF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin04DataB13ModelProviderC7Elementa", + "mangledName": "$s18AWSDataStorePlugin04DataB13ModelProviderC7Elementa", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Class", + "usr": "s:18AWSDataStorePlugin04DataB13ModelProviderC", + "mangledName": "$s18AWSDataStorePlugin04DataB13ModelProviderC", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ModelProvider", + "printedName": "ModelProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:7Amplify13ModelProviderP", + "mangledName": "$s7Amplify13ModelProviderP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "QueryPredicateResolver", + "printedName": "QueryPredicateResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Amplify.QueryPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin22QueryPredicateResolvera", + "mangledName": "$s18AWSDataStorePlugin22QueryPredicateResolvera", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "DataStoreSyncExpression", + "printedName": "DataStoreSyncExpression", + "children": [ + { + "kind": "Function", + "name": "syncExpression", + "printedName": "syncExpression(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreSyncExpression", + "printedName": "AWSDataStorePlugin.DataStoreSyncExpression", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNameAlias", + "name": "QueryPredicateResolver", + "printedName": "AWSDataStorePlugin.QueryPredicateResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Amplify.QueryPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV04syncF0_5whereAC7Amplify11ModelSchemaV_AF14QueryPredicate_pyctFZ", + "mangledName": "$s18AWSDataStorePlugin04DataB14SyncExpressionV04syncF0_5whereAC7Amplify11ModelSchemaV_AF14QueryPredicate_pyctFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin04DataB14SyncExpressionV", + "mangledName": "$s18AWSDataStorePlugin04DataB14SyncExpressionV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "CascadeDeleteOperation", + "printedName": "CascadeDeleteOperation", + "children": [ + { + "kind": "Function", + "name": "main", + "printedName": "main()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC4mainyyF", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC4mainyyF", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "overriding": true, + "objc_name": "main", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CascadeDeleteOperation", + "printedName": "AWSDataStorePlugin.CascadeDeleteOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationCACyxGycfc", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationCACyxGycfc", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvpZ", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvgZ", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvgZ", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvp", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvp", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvg", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC3log7Amplify6Logger_pvg", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:18AWSDataStorePlugin22CascadeDeleteOperationC", + "mangledName": "$s18AWSDataStorePlugin22CascadeDeleteOperationC", + "moduleName": "AWSDataStorePlugin", + "genericSig": "", + "superclassUsr": "c:@M@Amplify@objc(cs)AsynchronousOperation", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "Amplify.AsynchronousOperation", + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SQLiteModelValueConverter", + "printedName": "SQLiteModelValueConverter", + "children": [ + { + "kind": "TypeAlias", + "name": "SourceType", + "printedName": "SourceType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin25SQLiteModelValueConverterV10SourceTypea", + "mangledName": "$s18AWSDataStorePlugin25SQLiteModelValueConverterV10SourceTypea", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeAlias", + "name": "TargetType", + "printedName": "TargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin25SQLiteModelValueConverterV10TargetTypea", + "mangledName": "$s18AWSDataStorePlugin25SQLiteModelValueConverterV10TargetTypea", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Function", + "name": "convertToTarget", + "printedName": "convertToTarget(from:fieldType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin25SQLiteModelValueConverterV15convertToTarget4from9fieldType0D07Binding_pSgypSg_7Amplify0e5FieldM0OtKFZ", + "mangledName": "$s18AWSDataStorePlugin25SQLiteModelValueConverterV15convertToTarget4from9fieldType0D07Binding_pSgypSg_7Amplify0e5FieldM0OtKFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convertToSource", + "printedName": "convertToSource(from:fieldType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin25SQLiteModelValueConverterV15convertToSource4from9fieldTypeypSg0D07Binding_pSg_7Amplify0e5FieldM0OtKFZ", + "mangledName": "$s18AWSDataStorePlugin25SQLiteModelValueConverterV15convertToSource4from9fieldTypeypSg0D07Binding_pSg_7Amplify0e5FieldM0OtKFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin25SQLiteModelValueConverterV", + "mangledName": "$s18AWSDataStorePlugin25SQLiteModelValueConverterV", + "moduleName": "AWSDataStorePlugin", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelValueConverter", + "printedName": "ModelValueConverter", + "children": [ + { + "kind": "TypeWitness", + "name": "SourceType", + "printedName": "SourceType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SourceType", + "printedName": "AWSDataStorePlugin.SQLiteModelValueConverter.SourceType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "TargetType", + "printedName": "TargetType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TargetType", + "printedName": "AWSDataStorePlugin.SQLiteModelValueConverter.TargetType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:7Amplify19ModelValueConverterP", + "mangledName": "$s7Amplify19ModelValueConverterP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QuerySortDescriptor", + "printedName": "QuerySortDescriptor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fieldName:order:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortDescriptor", + "printedName": "AWSDataStorePlugin.QuerySortDescriptor", + "usr": "s:18AWSDataStorePlugin19QuerySortDescriptorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin19QuerySortDescriptorV9fieldName5orderACSS_AA0dE5OrderOtcfc", + "mangledName": "$s18AWSDataStorePlugin19QuerySortDescriptorV9fieldName5orderACSS_AA0dE5OrderOtcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin19QuerySortDescriptorV", + "mangledName": "$s18AWSDataStorePlugin19QuerySortDescriptorV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "QuerySortOrder", + "printedName": "QuerySortOrder", + "children": [ + { + "kind": "Var", + "name": "ascending", + "printedName": "ascending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.QuerySortOrder.Type) -> AWSDataStorePlugin.QuerySortOrder", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.QuerySortOrder.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSDataStorePlugin.QuerySortOrder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO9ascendingyA2CmF", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO9ascendingyA2CmF", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Var", + "name": "descending", + "printedName": "descending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSDataStorePlugin.QuerySortOrder.Type) -> AWSDataStorePlugin.QuerySortOrder", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSDataStorePlugin.QuerySortOrder.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSDataStorePlugin.QuerySortOrder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO10descendingyA2CmF", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO10descendingyA2CmF", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSDataStorePlugin.QuerySortOrder?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortOrder", + "printedName": "AWSDataStorePlugin.QuerySortOrder", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO8rawValueACSgSS_tcfc", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO8rawValueACSgSS_tcfc", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO8RawValuea", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO8RawValuea", + "moduleName": "AWSDataStorePlugin", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO8rawValueSSvp", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO8rawValueSSvp", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO8rawValueSSvg", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO8rawValueSSvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:18AWSDataStorePlugin14QuerySortOrderO", + "mangledName": "$s18AWSDataStorePlugin14QuerySortOrderO", + "moduleName": "AWSDataStorePlugin", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelSyncedEvent", + "printedName": "ModelSyncedEvent", + "children": [ + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV9modelNameSSvp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV9modelNameSSvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV9modelNameSSvg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV9modelNameSSvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isFullSync", + "printedName": "isFullSync", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV10isFullSyncSbvp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV10isFullSyncSbvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV10isFullSyncSbvg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV10isFullSyncSbvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isDeltaSync", + "printedName": "isDeltaSync", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV11isDeltaSyncSbvp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV11isDeltaSyncSbvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV11isDeltaSyncSbvg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV11isDeltaSyncSbvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "added", + "printedName": "added", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV5addedSivp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV5addedSivp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV5addedSivg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV5addedSivg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "updated", + "printedName": "updated", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV7updatedSivp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV7updatedSivp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV7updatedSivg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV7updatedSivg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deleted", + "printedName": "deleted", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV7deletedSivp", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV7deletedSivp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV7deletedSivg", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV7deletedSivg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelName:isFullSync:isDeltaSync:added:updated:deleted:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSyncedEvent", + "printedName": "AWSDataStorePlugin.ModelSyncedEvent", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV9modelName10isFullSync0i5DeltaK05added7updated7deletedACSS_S2bS3itcfc", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV9modelName10isFullSync0i5DeltaK05added7updated7deletedACSS_S2bS3itcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin16ModelSyncedEventV", + "mangledName": "$s18AWSDataStorePlugin16ModelSyncedEventV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "NetworkStatusEvent", + "printedName": "NetworkStatusEvent", + "children": [ + { + "kind": "Var", + "name": "active", + "printedName": "active", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin18NetworkStatusEventV6activeSbvp", + "mangledName": "$s18AWSDataStorePlugin18NetworkStatusEventV6activeSbvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin18NetworkStatusEventV6activeSbvg", + "mangledName": "$s18AWSDataStorePlugin18NetworkStatusEventV6activeSbvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(active:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkStatusEvent", + "printedName": "AWSDataStorePlugin.NetworkStatusEvent", + "usr": "s:18AWSDataStorePlugin18NetworkStatusEventV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin18NetworkStatusEventV6activeACSb_tcfc", + "mangledName": "$s18AWSDataStorePlugin18NetworkStatusEventV6activeACSb_tcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin18NetworkStatusEventV", + "mangledName": "$s18AWSDataStorePlugin18NetworkStatusEventV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "OutboxMutationEvent", + "printedName": "OutboxMutationEvent", + "children": [ + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV9modelNameSSvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV9modelNameSSvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV9modelNameSSvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV9modelNameSSvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "element", + "printedName": "element", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxMutationEventElement", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent.OutboxMutationEventElement", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV7elementAC0deF7ElementVvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV7elementAC0deF7ElementVvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxMutationEventElement", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent.OutboxMutationEventElement", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV7elementAC0deF7ElementVvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV7elementAC0deF7ElementVvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelName:element:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxMutationEvent", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "OutboxMutationEventElement", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent.OutboxMutationEventElement", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV9modelName7elementACSS_AC0deF7ElementVtcfc", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV9modelName7elementACSS_AC0deF7ElementVtcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "fromModelWithMetadata", + "printedName": "fromModelWithMetadata(modelName:model:mutationSync:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxMutationEvent", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV21fromModelWithMetadata9modelName0K012mutationSyncACSS_7Amplify0H0_p14AWSPluginsCore0eN0VyAJ03AnyH0VGtFZ", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV21fromModelWithMetadata9modelName0K012mutationSyncACSS_7Amplify0H0_p14AWSPluginsCore0eN0VyAJ03AnyH0VGtFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromModelWithoutMetadata", + "printedName": "fromModelWithoutMetadata(modelName:model:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxMutationEvent", + "printedName": "AWSDataStorePlugin.OutboxMutationEvent", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV24fromModelWithoutMetadata9modelName0K0ACSS_7Amplify0H0_ptFZ", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV24fromModelWithoutMetadata9modelName0K0ACSS_7Amplify0H0_ptFZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "OutboxMutationEventElement", + "printedName": "OutboxMutationEventElement", + "children": [ + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV5model7Amplify5Model_pvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV5model7Amplify5Model_pvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV5model7Amplify5Model_pvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV5model7Amplify5Model_pvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvs", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7versionSiSgvs", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "lastChangedAt", + "printedName": "lastChangedAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvs", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV13lastChangedAts5Int64VSgvs", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "deleted", + "printedName": "deleted", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvp", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvg", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvs", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV7deletedSbSgvs", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV0deF7ElementV", + "moduleName": "AWSDataStorePlugin" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin19OutboxMutationEventV", + "mangledName": "$s18AWSDataStorePlugin19OutboxMutationEventV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "OutboxStatusEvent", + "printedName": "OutboxStatusEvent", + "children": [ + { + "kind": "Var", + "name": "isEmpty", + "printedName": "isEmpty", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin17OutboxStatusEventV7isEmptySbvp", + "mangledName": "$s18AWSDataStorePlugin17OutboxStatusEventV7isEmptySbvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin17OutboxStatusEventV7isEmptySbvg", + "mangledName": "$s18AWSDataStorePlugin17OutboxStatusEventV7isEmptySbvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isEmpty:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OutboxStatusEvent", + "printedName": "AWSDataStorePlugin.OutboxStatusEvent", + "usr": "s:18AWSDataStorePlugin17OutboxStatusEventV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin17OutboxStatusEventV7isEmptyACSb_tcfc", + "mangledName": "$s18AWSDataStorePlugin17OutboxStatusEventV7isEmptyACSb_tcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin17OutboxStatusEventV", + "mangledName": "$s18AWSDataStorePlugin17OutboxStatusEventV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "SyncQueriesStartedEvent", + "printedName": "SyncQueriesStartedEvent", + "children": [ + { + "kind": "Var", + "name": "models", + "printedName": "models", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsSaySSGvp", + "mangledName": "$s18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsSaySSGvp", + "moduleName": "AWSDataStorePlugin", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsSaySSGvg", + "mangledName": "$s18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsSaySSGvg", + "moduleName": "AWSDataStorePlugin", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(models:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SyncQueriesStartedEvent", + "printedName": "AWSDataStorePlugin.SyncQueriesStartedEvent", + "usr": "s:18AWSDataStorePlugin23SyncQueriesStartedEventV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsACSaySSG_tcfc", + "mangledName": "$s18AWSDataStorePlugin23SyncQueriesStartedEventV6modelsACSaySSG_tcfc", + "moduleName": "AWSDataStorePlugin", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:18AWSDataStorePlugin23SyncQueriesStartedEventV", + "mangledName": "$s18AWSDataStorePlugin23SyncQueriesStartedEventV", + "moduleName": "AWSDataStorePlugin" + }, + { + "kind": "TypeDecl", + "name": "Custom", + "printedName": "Custom", + "children": [ + { + "kind": "Var", + "name": "sqlColumnName", + "printedName": "sqlColumnName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO18AWSDataStorePluginE13sqlColumnNameSSvpZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO18AWSDataStorePluginE13sqlColumnNameSSvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO18AWSDataStorePluginE13sqlColumnNameSSvgZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO18AWSDataStorePluginE13sqlColumnNameSSvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO", + "moduleName": "Amplify", + "isExternal": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AnyModelIdentifierFormat", + "printedName": "AnyModelIdentifierFormat", + "usr": "s:7Amplify24AnyModelIdentifierFormatP", + "mangledName": "$s7Amplify24AnyModelIdentifierFormatP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelPrimaryKey", + "printedName": "ModelPrimaryKey", + "children": [ + { + "kind": "Var", + "name": "sqlName", + "printedName": "sqlName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE7sqlNameSSvp", + "mangledName": "$s7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE7sqlNameSSvp", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE7sqlNameSSvg", + "mangledName": "$s7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE7sqlNameSSvg", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE4nameSSvp", + "mangledName": "$s7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE4nameSSvp", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE4nameSSvg", + "mangledName": "$s7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE4nameSSvg", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "columnName", + "printedName": "columnName(forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE10columnName12forNamespaceS2SSg_tF", + "mangledName": "$s7Amplify15ModelPrimaryKeyV18AWSDataStorePluginE10columnName12forNamespaceS2SSg_tF", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify15ModelPrimaryKeyV", + "mangledName": "$s7Amplify15ModelPrimaryKeyV", + "moduleName": "Amplify", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "ModelField", + "printedName": "ModelField", + "declKind": "Struct", + "usr": "s:7Amplify10ModelFieldV", + "mangledName": "$s7Amplify10ModelFieldV", + "moduleName": "Amplify", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "ModelSchema", + "printedName": "ModelSchema", + "children": [ + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvpZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvgZ", + "moduleName": "AWSDataStorePlugin", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvp", + "mangledName": "$s7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvp", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvg", + "mangledName": "$s7Amplify11ModelSchemaV18AWSDataStorePluginE3logAA6Logger_pvg", + "moduleName": "AWSDataStorePlugin", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11ModelSchemaV", + "mangledName": "$s7Amplify11ModelSchemaV", + "moduleName": "Amplify", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Statement", + "printedName": "Statement", + "declKind": "Class", + "usr": "s:6SQLite9StatementC", + "mangledName": "$s6SQLite9StatementC", + "moduleName": "SQLite", + "declAttributes": [ + "Final" + ], + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "SQLite.Statement.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SQLite.Binding?]", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Statement", + "printedName": "SQLite.Statement", + "usr": "s:6SQLite9StatementC" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "FailableIterator", + "printedName": "FailableIterator", + "usr": "s:6SQLite16FailableIteratorP", + "mangledName": "$s6SQLite16FailableIteratorP" + }, + { + "kind": "Conformance", + "name": "IteratorProtocol", + "printedName": "IteratorProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "SQLite.Statement.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[SQLite.Binding?]", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SQLite.Binding?", + "children": [ + { + "kind": "TypeNominal", + "name": "Binding", + "printedName": "SQLite.Binding", + "usr": "s:6SQLite7BindingP" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sa" + } + ] + } + ] + } + ], + "usr": "s:St", + "mangledName": "$sSt" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "AWSDataStorePlugin", + "-o", + "\/var\/folders\/xz\/lz5thm6s3vb1vdkk77vmkgbr0000gn\/T\/tmp.bR6aszViJ0\/AWSDataStorePlugin.json", + "-I", + ".build\/debug", + "-sdk-version", + "23A334" + ] + } +} \ No newline at end of file diff --git a/api-dump/AWSPluginsCore.json b/api-dump/AWSPluginsCore.json new file mode 100644 index 0000000000..9c7ecc6e2b --- /dev/null +++ b/api-dump/AWSPluginsCore.json @@ -0,0 +1,24289 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Amplify", + "printedName": "Amplify", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "Combine", + "printedName": "Combine", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "SwiftOnoneSupport", + "printedName": "SwiftOnoneSupport", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "_Concurrency", + "printedName": "_Concurrency", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "_StringProcessing", + "printedName": "_StringProcessing", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Import", + "name": "_SwiftConcurrencyShims", + "printedName": "_SwiftConcurrencyShims", + "declKind": "Import", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSAPIAuthInformation", + "printedName": "AWSAPIAuthInformation", + "children": [ + { + "kind": "Function", + "name": "defaultAuthType", + "printedName": "defaultAuthType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21AWSAPIAuthInformationP15defaultAuthTypeAA016AWSAuthorizationG0OyKF", + "mangledName": "$s14AWSPluginsCore21AWSAPIAuthInformationP15defaultAuthTypeAA016AWSAuthorizationG0OyKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultAuthType", + "printedName": "defaultAuthType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21AWSAPIAuthInformationP15defaultAuthType3forAA016AWSAuthorizationG0OSSSg_tKF", + "mangledName": "$s14AWSPluginsCore21AWSAPIAuthInformationP15defaultAuthType3forAA016AWSAuthorizationG0OSSSg_tKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore21AWSAPIAuthInformationP", + "mangledName": "$s14AWSPluginsCore21AWSAPIAuthInformationP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AppSyncErrorType", + "printedName": "AppSyncErrorType", + "children": [ + { + "kind": "Var", + "name": "conflictUnhandled", + "printedName": "conflictUnhandled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AppSyncErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO17conflictUnhandledyA2CmF", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO17conflictUnhandledyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "conditionalCheck", + "printedName": "conditionalCheck", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AppSyncErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO16conditionalCheckyA2CmF", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO16conditionalCheckyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AppSyncErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO12unauthorizedyA2CmF", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO12unauthorizedyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "operationDisabled", + "printedName": "operationDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AppSyncErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO17operationDisabledyA2CmF", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO17operationDisabledyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type) -> (Swift.String) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> AWSPluginsCore.AppSyncErrorType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AppSyncErrorType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AppSyncErrorType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO7unknownyACSScACmF", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO7unknownyACSScACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeOyACSScfc", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeOyACSScfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO8rawValueSSvp", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO8rawValueSSvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO8rawValueSSvg", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO8rawValueSSvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + }, + { + "kind": "TypeNominal", + "name": "AppSyncErrorType", + "printedName": "AWSPluginsCore.AppSyncErrorType", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore16AppSyncErrorTypeO", + "mangledName": "$s14AWSPluginsCore16AppSyncErrorTypeO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSAPIPluginDataStoreOptions", + "printedName": "AWSAPIPluginDataStoreOptions", + "children": [ + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authTypeAA016AWSAuthorizationH0OSgvp", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authTypeAA016AWSAuthorizationH0OSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authTypeAA016AWSAuthorizationH0OSgvg", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authTypeAA016AWSAuthorizationH0OSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV9modelNameSSvp", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV9modelNameSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV9modelNameSSvg", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV9modelNameSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(authType:modelName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAPIPluginDataStoreOptions", + "printedName": "AWSPluginsCore.AWSAPIPluginDataStoreOptions", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authType9modelNameAcA016AWSAuthorizationH0OSg_SStcfc", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV8authType9modelNameAcA016AWSAuthorizationH0OSg_SStcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV", + "mangledName": "$s14AWSPluginsCore28AWSAPIPluginDataStoreOptionsV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSPluginOptions", + "printedName": "AWSPluginOptions", + "children": [ + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV8authTypeAA016AWSAuthorizationF0OSgvp", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV8authTypeAA016AWSAuthorizationF0OSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV8authTypeAA016AWSAuthorizationF0OSgvg", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV8authTypeAA016AWSAuthorizationF0OSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV9modelNameSSSgvp", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV9modelNameSSSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV9modelNameSSSgvg", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV9modelNameSSSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(authType:modelName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSPluginOptions", + "printedName": "AWSPluginsCore.AWSPluginOptions", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV8authType9modelNameAcA016AWSAuthorizationF0OSg_SStcfc", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV8authType9modelNameAcA016AWSAuthorizationF0OSg_SStcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore16AWSPluginOptionsV", + "mangledName": "$s14AWSPluginsCore16AWSPluginOptionsV", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthModeStrategyType", + "printedName": "AuthModeStrategyType", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AuthModeStrategyType.Type) -> AWSPluginsCore.AuthModeStrategyType", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AuthModeStrategyType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AuthModeStrategyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO7defaultyA2CmF", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO7defaultyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "multiAuth", + "printedName": "multiAuth", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AuthModeStrategyType.Type) -> AWSPluginsCore.AuthModeStrategyType", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AuthModeStrategyType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AuthModeStrategyType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO05multiC0yA2CmF", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO05multiC0yA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Function", + "name": "resolveStrategy", + "printedName": "resolveStrategy()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategy", + "printedName": "AWSPluginsCore.AuthModeStrategy", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO07resolveE0AA0cdE0_pyF", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO07resolveE0AA0cdE0_pyF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + }, + { + "kind": "TypeNominal", + "name": "AuthModeStrategyType", + "printedName": "AWSPluginsCore.AuthModeStrategyType", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO4hash4intoys6HasherVz_tF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO9hashValueSivp", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO9hashValueSivp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO9hashValueSivg", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO9hashValueSivg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore20AuthModeStrategyTypeO", + "mangledName": "$s14AWSPluginsCore20AuthModeStrategyTypeO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthModeStrategyDelegate", + "printedName": "AuthModeStrategyDelegate", + "children": [ + { + "kind": "Function", + "name": "isUserLoggedIn", + "printedName": "isUserLoggedIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP14isUserLoggedInSbyYaF", + "mangledName": "$s14AWSPluginsCore24AuthModeStrategyDelegateP14isUserLoggedInSbyYaF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP", + "mangledName": "$s14AWSPluginsCore24AuthModeStrategyDelegateP", + "moduleName": "AWSPluginsCore", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AuthModeStrategy", + "printedName": "AuthModeStrategy", + "children": [ + { + "kind": "Var", + "name": "authDelegate", + "printedName": "authDelegate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvp", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvg", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvs", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP12authDelegateAA0cdeG0_pSgvs", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16AuthModeStrategyPxycfc", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyPxycfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0O9OperationOtYaF", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0O9OperationOtYaF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0O9OperationOGtYaF", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0O9OperationOGtYaF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP", + "moduleName": "AWSPluginsCore", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AuthorizationTypeIterator", + "printedName": "AuthorizationTypeIterator", + "children": [ + { + "kind": "AssociatedType", + "name": "AuthorizationType", + "printedName": "AuthorizationType", + "declKind": "AssociatedType", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP0cD0Qa", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP0cD0Qa", + "moduleName": "AWSPluginsCore", + "protocolReq": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Self.AuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.AuthorizationType" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP10withValuesxSay0cD0QzG_tcfc", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP10withValuesxSay0cD0QzG_tcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP5countSivp", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP5countSivp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP5countSivg", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP5countSivg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasNext", + "printedName": "hasNext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP7hasNextSbvp", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP7hasNextSbvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP7hasNextSbvg", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP7hasNextSbvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "next", + "printedName": "next()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self.AuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.AuthorizationType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP4next0cD0QzSgyF", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP4next0cD0QzSgyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSAuthorizationTypeIterator", + "children": [ + { + "kind": "TypeAlias", + "name": "AuthorizationType", + "printedName": "AuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV013AuthorizationD0a", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV013AuthorizationD0a", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AmplifyAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV10withValuesACSayAA020AmplifyAuthorizationD0OG_tcfc", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV10withValuesACSayAA020AmplifyAuthorizationD0OG_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(withValues:valuesOnEmpty:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AmplifyAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AmplifyAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV10withValues13valuesOnEmptyACSayAA020AmplifyAuthorizationD0OG_AHtcfc", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV10withValues13valuesOnEmptyACSayAA020AmplifyAuthorizationD0OG_AHtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV5countSivp", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV5countSivp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV5countSivg", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV5countSivg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasNext", + "printedName": "hasNext", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV7hasNextSbvp", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV7hasNextSbvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV7hasNextSbvg", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV7hasNextSbvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "next", + "printedName": "next()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV4nextAA020AmplifyAuthorizationD0OSgyF", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV4nextAA020AmplifyAuthorizationD0OSgyF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "Mutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV7Elementa", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV7Elementa", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV0E0a", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV0E0a", + "moduleName": "AWSPluginsCore", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV", + "mangledName": "$s14AWSPluginsCore28AWSAuthorizationTypeIteratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthorizationTypeIterator", + "printedName": "AuthorizationTypeIterator", + "children": [ + { + "kind": "TypeWitness", + "name": "AuthorizationType", + "printedName": "AuthorizationType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator.AuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ] + } + ] + } + ], + "usr": "s:14AWSPluginsCore25AuthorizationTypeIteratorP", + "mangledName": "$s14AWSPluginsCore25AuthorizationTypeIteratorP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "IteratorProtocol", + "printedName": "IteratorProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ] + } + ], + "usr": "s:St", + "mangledName": "$sSt" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSDefaultAuthModeStrategy", + "printedName": "AWSDefaultAuthModeStrategy", + "children": [ + { + "kind": "Var", + "name": "authDelegate", + "printedName": "authDelegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvp", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "ReferenceOwnership", + "HasStorage" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvg", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvs", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authDelegateAA0defH0_pSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSDefaultAuthModeStrategy", + "printedName": "AWSPluginsCore.AWSDefaultAuthModeStrategy", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyCACycfc", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyCACycfc", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0P9OperationOtF", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0P9OperationOtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0P9OperationOGtF", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0P9OperationOGtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore26AWSDefaultAuthModeStrategyC", + "mangledName": "$s14AWSPluginsCore26AWSDefaultAuthModeStrategyC", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthModeStrategy", + "printedName": "AuthModeStrategy", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSMultiAuthModeStrategy", + "printedName": "AWSMultiAuthModeStrategy", + "children": [ + { + "kind": "Var", + "name": "authDelegate", + "printedName": "authDelegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvp", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "ReferenceOwnership", + "HasStorage" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvg", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthModeStrategyDelegate", + "printedName": "AWSPluginsCore.AuthModeStrategyDelegate", + "usr": "s:14AWSPluginsCore24AuthModeStrategyDelegateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvs", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC12authDelegateAA0defH0_pSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSMultiAuthModeStrategy", + "printedName": "AWSPluginsCore.AWSMultiAuthModeStrategy", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyCACycfc", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyCACycfc", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0P9OperationOtYaF", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC12authTypesFor6schema9operationAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_AI0P9OperationOtYaF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "authTypesFor", + "printedName": "authTypesFor(schema:operations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationTypeIterator", + "printedName": "AWSPluginsCore.AWSAuthorizationTypeIterator", + "usr": "s:14AWSPluginsCore28AWSAuthorizationTypeIteratorV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0P9OperationOGtYaF", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC12authTypesFor6schema10operationsAA28AWSAuthorizationTypeIteratorV7Amplify11ModelSchemaV_SayAI0P9OperationOGtYaF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore24AWSMultiAuthModeStrategyC", + "mangledName": "$s14AWSPluginsCore24AWSMultiAuthModeStrategyC", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthModeStrategy", + "printedName": "AuthModeStrategy", + "usr": "s:14AWSPluginsCore16AuthModeStrategyP", + "mangledName": "$s14AWSPluginsCore16AuthModeStrategyP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSAuthService", + "printedName": "AWSAuthService", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthService", + "printedName": "AWSPluginsCore.AWSAuthService", + "usr": "s:14AWSPluginsCore14AWSAuthServiceC" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore14AWSAuthServiceCACycfc", + "mangledName": "$s14AWSPluginsCore14AWSAuthServiceCACycfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getIdentityID", + "printedName": "getIdentityID()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14AWSAuthServiceC13getIdentityIDSSyYaKF", + "mangledName": "$s14AWSPluginsCore14AWSAuthServiceC13getIdentityIDSSyYaKF", + "moduleName": "AWSPluginsCore", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTokenClaims", + "printedName": "getTokenClaims(tokenString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Swift.AnyObject], Amplify.AuthError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14AWSAuthServiceC14getTokenClaims11tokenStrings6ResultOySDySSyXlG7Amplify9AuthErrorOGSS_tF", + "mangledName": "$s14AWSPluginsCore14AWSAuthServiceC14getTokenClaims11tokenStrings6ResultOySDySSyXlG7Amplify9AuthErrorOGSS_tF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserPoolAccessToken", + "printedName": "getUserPoolAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14AWSAuthServiceC22getUserPoolAccessTokenSSyYaKF", + "mangledName": "$s14AWSPluginsCore14AWSAuthServiceC22getUserPoolAccessTokenSSyYaKF", + "moduleName": "AWSPluginsCore", + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore14AWSAuthServiceC", + "mangledName": "$s14AWSPluginsCore14AWSAuthServiceC", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "AWSAuthServiceBehavior", + "printedName": "AWSAuthServiceBehavior", + "usr": "s:14AWSPluginsCore22AWSAuthServiceBehaviorP", + "mangledName": "$s14AWSPluginsCore22AWSAuthServiceBehaviorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSAuthServiceBehavior", + "printedName": "AWSAuthServiceBehavior", + "children": [ + { + "kind": "Function", + "name": "getTokenClaims", + "printedName": "getTokenClaims(tokenString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Swift.AnyObject], Amplify.AuthError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22AWSAuthServiceBehaviorP14getTokenClaims11tokenStrings6ResultOySDySSyXlG7Amplify9AuthErrorOGSS_tF", + "mangledName": "$s14AWSPluginsCore22AWSAuthServiceBehaviorP14getTokenClaims11tokenStrings6ResultOySDySSyXlG7Amplify9AuthErrorOGSS_tF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdentityID", + "printedName": "getIdentityID()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22AWSAuthServiceBehaviorP13getIdentityIDSSyYaKF", + "mangledName": "$s14AWSPluginsCore22AWSAuthServiceBehaviorP13getIdentityIDSSyYaKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserPoolAccessToken", + "printedName": "getUserPoolAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22AWSAuthServiceBehaviorP22getUserPoolAccessTokenSSyYaKF", + "mangledName": "$s14AWSPluginsCore22AWSAuthServiceBehaviorP22getUserPoolAccessTokenSSyYaKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore22AWSAuthServiceBehaviorP", + "mangledName": "$s14AWSPluginsCore22AWSAuthServiceBehaviorP", + "moduleName": "AWSPluginsCore", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AWSAuthSessionBehavior", + "printedName": "AWSAuthSessionBehavior", + "children": [ + { + "kind": "AssociatedType", + "name": "Tokens", + "printedName": "Tokens", + "declKind": "AssociatedType", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP6TokensQa", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP6TokensQa", + "moduleName": "AWSPluginsCore", + "protocolReq": true + }, + { + "kind": "Var", + "name": "awsCredentialsResult", + "printedName": "awsCredentialsResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSTemporaryCredentials", + "printedName": "AWSPluginsCore.AWSTemporaryCredentials", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP20awsCredentialsResults0H0OyAA012AWSTemporaryG0_p7Amplify9AuthErrorOGvp", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP20awsCredentialsResults0H0OyAA012AWSTemporaryG0_p7Amplify9AuthErrorOGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSTemporaryCredentials", + "printedName": "AWSPluginsCore.AWSTemporaryCredentials", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP20awsCredentialsResults0H0OyAA012AWSTemporaryG0_p7Amplify9AuthErrorOGvg", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP20awsCredentialsResults0H0OyAA012AWSTemporaryG0_p7Amplify9AuthErrorOGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identityIdResult", + "printedName": "identityIdResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP16identityIdResults0H0OySS7Amplify9AuthErrorOGvp", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP16identityIdResults0H0OySS7Amplify9AuthErrorOGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP16identityIdResults0H0OySS7Amplify9AuthErrorOGvg", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP16identityIdResults0H0OySS7Amplify9AuthErrorOGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userSubResult", + "printedName": "userSubResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP13userSubResults0H0OySS7Amplify9AuthErrorOGvp", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP13userSubResults0H0OySS7Amplify9AuthErrorOGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP13userSubResults0H0OySS7Amplify9AuthErrorOGvg", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP13userSubResults0H0OySS7Amplify9AuthErrorOGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oidcTokensResult", + "printedName": "oidcTokensResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Tokens" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP16oidcTokensResults0H0Oy0G0Qz7Amplify9AuthErrorOGvp", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP16oidcTokensResults0H0Oy0G0Qz7Amplify9AuthErrorOGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Tokens" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP16oidcTokensResults0H0Oy0G0Qz7Amplify9AuthErrorOGvg", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP16oidcTokensResults0H0Oy0G0Qz7Amplify9AuthErrorOGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore22AWSAuthSessionBehaviorP", + "mangledName": "$s14AWSPluginsCore22AWSAuthSessionBehaviorP", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthSession", + "printedName": "AuthSession", + "usr": "s:7Amplify11AuthSessionP", + "mangledName": "$s7Amplify11AuthSessionP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSAuthorizationType", + "printedName": "AWSAuthorizationType", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO4noneyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO4noneyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO6apiKeyyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO6apiKeyyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "awsIAM", + "printedName": "awsIAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO6awsIAMyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO6awsIAMyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "openIDConnect", + "printedName": "openIDConnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO13openIDConnectyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO13openIDConnectyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "amazonCognitoUserPools", + "printedName": "amazonCognitoUserPools", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO22amazonCognitoUserPoolsyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO22amazonCognitoUserPoolsyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "function", + "printedName": "function", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type) -> AWSPluginsCore.AWSAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8functionyA2CmF", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8functionyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8rawValueACSgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8RawValuea", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8RawValuea", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8rawValueSSvp", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8rawValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8rawValueSSvg", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8rawValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AWSAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8AllCasesa", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8AllCasesa", + "moduleName": "AWSPluginsCore", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AWSAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8allCasesSayACGvpZ", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8allCasesSayACGvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AWSAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO8allCasesSayACGvgZ", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO8allCasesSayACGvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requiresAuthPlugin", + "printedName": "requiresAuthPlugin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO18requiresAuthPluginSbvp", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO18requiresAuthPluginSbvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO18requiresAuthPluginSbvg", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO18requiresAuthPluginSbvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO", + "mangledName": "$s14AWSPluginsCore20AWSAuthorizationTypeO", + "moduleName": "AWSPluginsCore", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "AuthorizationMode", + "printedName": "AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP", + "mangledName": "$s7Amplify17AuthorizationModeP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AWSAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyAuthorizationType", + "printedName": "AmplifyAuthorizationType", + "children": [ + { + "kind": "Var", + "name": "inferred", + "printedName": "inferred", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AmplifyAuthorizationType.Type) -> AWSPluginsCore.AmplifyAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AmplifyAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO8inferredyA2CmF", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO8inferredyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "designated", + "printedName": "designated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AmplifyAuthorizationType.Type) -> (AWSPluginsCore.AWSAuthorizationType) -> AWSPluginsCore.AmplifyAuthorizationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationType) -> AWSPluginsCore.AmplifyAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationType)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AmplifyAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO10designatedyAcA016AWSAuthorizationE0OcACmF", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO10designatedyAcA016AWSAuthorizationE0OcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "awsAuthType", + "printedName": "awsAuthType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO07awsAuthE0AA016AWSAuthorizationE0OSgvp", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO07awsAuthE0AA016AWSAuthorizationE0OSgvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO07awsAuthE0AA016AWSAuthorizationE0OSgvg", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO07awsAuthE0AA016AWSAuthorizationE0OSgvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "AmplifyAuthorizationType", + "printedName": "AWSPluginsCore.AmplifyAuthorizationType", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore24AmplifyAuthorizationTypeO", + "mangledName": "$s14AWSPluginsCore24AmplifyAuthorizationTypeO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthAWSCredentialsProvider", + "printedName": "AuthAWSCredentialsProvider", + "children": [ + { + "kind": "Function", + "name": "getAWSCredentials", + "printedName": "getAWSCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSCredentials", + "printedName": "AWSPluginsCore.AWSCredentials", + "usr": "s:14AWSPluginsCore14AWSCredentialsP" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore26AuthAWSCredentialsProviderP03getD0s6ResultOyAA0D0_p7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore26AuthAWSCredentialsProviderP03getD0s6ResultOyAA0D0_p7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAWSCredentials", + "printedName": "getAWSCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSCredentials", + "printedName": "AWSPluginsCore.AWSCredentials", + "usr": "s:14AWSPluginsCore14AWSCredentialsP" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore26AuthAWSCredentialsProviderPA2A22AWSAuthSessionBehaviorRzrlE03getD0s6ResultOyAA0D0_p7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore26AuthAWSCredentialsProviderPA2A22AWSAuthSessionBehaviorRzrlE03getD0s6ResultOyAA0D0_p7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore26AuthAWSCredentialsProviderP", + "mangledName": "$s14AWSPluginsCore26AuthAWSCredentialsProviderP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSCredentialsProvider", + "printedName": "AWSCredentialsProvider", + "children": [ + { + "kind": "Function", + "name": "fetchAWSCredentials", + "printedName": "fetchAWSCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSCredentials", + "printedName": "AWSPluginsCore.AWSCredentials", + "usr": "s:14AWSPluginsCore14AWSCredentialsP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22AWSCredentialsProviderP05fetchC0AA0C0_pyYaKF", + "mangledName": "$s14AWSPluginsCore22AWSCredentialsProviderP05fetchC0AA0C0_pyYaKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore22AWSCredentialsProviderP", + "mangledName": "$s14AWSPluginsCore22AWSCredentialsProviderP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSTemporaryCredentials", + "printedName": "AWSTemporaryCredentials", + "children": [ + { + "kind": "Var", + "name": "sessionToken", + "printedName": "sessionToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP12sessionTokenSSvp", + "mangledName": "$s14AWSPluginsCore23AWSTemporaryCredentialsP12sessionTokenSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP12sessionTokenSSvg", + "mangledName": "$s14AWSPluginsCore23AWSTemporaryCredentialsP12sessionTokenSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiration", + "printedName": "expiration", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP10expiration10Foundation4DateVvp", + "mangledName": "$s14AWSPluginsCore23AWSTemporaryCredentialsP10expiration10Foundation4DateVvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP10expiration10Foundation4DateVvg", + "mangledName": "$s14AWSPluginsCore23AWSTemporaryCredentialsP10expiration10Foundation4DateVvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore23AWSTemporaryCredentialsP", + "mangledName": "$s14AWSPluginsCore23AWSTemporaryCredentialsP", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AWSCredentials", + "printedName": "AWSCredentials", + "usr": "s:14AWSPluginsCore14AWSCredentialsP", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSCredentials", + "printedName": "AWSCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKeyId", + "printedName": "accessKeyId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore14AWSCredentialsP11accessKeyIdSSvp", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP11accessKeyIdSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore14AWSCredentialsP11accessKeyIdSSvg", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP11accessKeyIdSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "secretAccessKey", + "printedName": "secretAccessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore14AWSCredentialsP15secretAccessKeySSvp", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP15secretAccessKeySSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore14AWSCredentialsP15secretAccessKeySSvg", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP15secretAccessKeySSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore14AWSCredentialsP", + "mangledName": "$s14AWSPluginsCore14AWSCredentialsP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AuthCognitoIdentityProvider", + "printedName": "AuthCognitoIdentityProvider", + "children": [ + { + "kind": "Function", + "name": "getIdentityId", + "printedName": "getIdentityId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27AuthCognitoIdentityProviderP03getE2Ids6ResultOySS7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore27AuthCognitoIdentityProviderP03getE2Ids6ResultOySS7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserSub", + "printedName": "getUserSub()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27AuthCognitoIdentityProviderP10getUserSubs6ResultOySS7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore27AuthCognitoIdentityProviderP10getUserSubs6ResultOySS7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdentityId", + "printedName": "getIdentityId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27AuthCognitoIdentityProviderPA2A22AWSAuthSessionBehaviorRzrlE03getE2Ids6ResultOySS7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore27AuthCognitoIdentityProviderPA2A22AWSAuthSessionBehaviorRzrlE03getE2Ids6ResultOySS7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserSub", + "printedName": "getUserSub()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27AuthCognitoIdentityProviderPA2A22AWSAuthSessionBehaviorRzrlE10getUserSubs6ResultOySS7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore27AuthCognitoIdentityProviderPA2A22AWSAuthSessionBehaviorRzrlE10getUserSubs6ResultOySS7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore27AuthCognitoIdentityProviderP", + "mangledName": "$s14AWSPluginsCore27AuthCognitoIdentityProviderP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AuthCognitoTokensProvider", + "printedName": "AuthCognitoTokensProvider", + "children": [ + { + "kind": "Function", + "name": "getCognitoTokens", + "printedName": "getCognitoTokens()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCognitoTokens", + "printedName": "AWSPluginsCore.AuthCognitoTokens", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore25AuthCognitoTokensProviderP03getdE0s6ResultOyAA0cdE0_p7Amplify0C5ErrorOGyF", + "mangledName": "$s14AWSPluginsCore25AuthCognitoTokensProviderP03getdE0s6ResultOyAA0cdE0_p7Amplify0C5ErrorOGyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore25AuthCognitoTokensProviderP", + "mangledName": "$s14AWSPluginsCore25AuthCognitoTokensProviderP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AuthCognitoTokens", + "printedName": "AuthCognitoTokens", + "children": [ + { + "kind": "Var", + "name": "idToken", + "printedName": "idToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP7idTokenSSvp", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP7idTokenSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP7idTokenSSvg", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP7idTokenSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP11accessTokenSSvp", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP11accessTokenSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP11accessTokenSSvg", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP11accessTokenSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshToken", + "printedName": "refreshToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP12refreshTokenSSvp", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP12refreshTokenSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP12refreshTokenSSvg", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP12refreshTokenSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore17AuthCognitoTokensP", + "mangledName": "$s14AWSPluginsCore17AuthCognitoTokensP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AuthInvalidateCredentialBehavior", + "printedName": "AuthInvalidateCredentialBehavior", + "children": [ + { + "kind": "Function", + "name": "invalidateCachedTemporaryCredentials", + "printedName": "invalidateCachedTemporaryCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore32AuthInvalidateCredentialBehaviorP36invalidateCachedTemporaryCredentialsyyF", + "mangledName": "$s14AWSPluginsCore32AuthInvalidateCredentialBehaviorP36invalidateCachedTemporaryCredentialsyyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore32AuthInvalidateCredentialBehaviorP", + "mangledName": "$s14AWSPluginsCore32AuthInvalidateCredentialBehaviorP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "APIKeyConfiguration", + "printedName": "APIKeyConfiguration", + "children": [ + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV6apiKeySSvp", + "mangledName": "$s14AWSPluginsCore19APIKeyConfigurationV6apiKeySSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV6apiKeySSvg", + "mangledName": "$s14AWSPluginsCore19APIKeyConfigurationV6apiKeySSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "APIKeyConfiguration", + "printedName": "AWSPluginsCore.APIKeyConfiguration", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV6apiKeyACSS_tcfc", + "mangledName": "$s14AWSPluginsCore19APIKeyConfigurationV6apiKeyACSS_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV", + "mangledName": "$s14AWSPluginsCore19APIKeyConfigurationV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSAuthorizationConfiguration", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO4noneyA2CmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO4noneyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> (AWSPluginsCore.APIKeyConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.APIKeyConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.APIKeyConfiguration)", + "children": [ + { + "kind": "TypeNominal", + "name": "APIKeyConfiguration", + "printedName": "AWSPluginsCore.APIKeyConfiguration", + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV" + } + ], + "usr": "s:14AWSPluginsCore19APIKeyConfigurationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO6apiKeyyAcA06APIKeyD0VcACmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO6apiKeyyAcA06APIKeyD0VcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "awsIAM", + "printedName": "awsIAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> (AWSPluginsCore.AWSIAMConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSIAMConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSIAMConfiguration)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSIAMConfiguration", + "printedName": "AWSPluginsCore.AWSIAMConfiguration", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV" + } + ], + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO6awsIAMyAcA19AWSIAMConfigurationVcACmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO6awsIAMyAcA19AWSIAMConfigurationVcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "openIDConnect", + "printedName": "openIDConnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> (AWSPluginsCore.OIDCConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.OIDCConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.OIDCConfiguration)", + "children": [ + { + "kind": "TypeNominal", + "name": "OIDCConfiguration", + "printedName": "AWSPluginsCore.OIDCConfiguration", + "usr": "s:14AWSPluginsCore17OIDCConfigurationV" + } + ], + "usr": "s:14AWSPluginsCore17OIDCConfigurationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO13openIDConnectyAcA17OIDCConfigurationVcACmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO13openIDConnectyAcA17OIDCConfigurationVcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "amazonCognitoUserPools", + "printedName": "amazonCognitoUserPools", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> (AWSPluginsCore.CognitoUserPoolsConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.CognitoUserPoolsConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.CognitoUserPoolsConfiguration)", + "children": [ + { + "kind": "TypeNominal", + "name": "CognitoUserPoolsConfiguration", + "printedName": "AWSPluginsCore.CognitoUserPoolsConfiguration", + "usr": "s:14AWSPluginsCore29CognitoUserPoolsConfigurationV" + } + ], + "usr": "s:14AWSPluginsCore29CognitoUserPoolsConfigurationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO22amazonCognitoUserPoolsyAcA0fghD0VcACmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO22amazonCognitoUserPoolsyAcA0fghD0VcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "function", + "printedName": "function", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type) -> (AWSPluginsCore.AWSLambdaAuthConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AWSLambdaAuthConfiguration) -> AWSPluginsCore.AWSAuthorizationConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSLambdaAuthConfiguration)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSLambdaAuthConfiguration", + "printedName": "AWSPluginsCore.AWSLambdaAuthConfiguration", + "usr": "s:14AWSPluginsCore26AWSLambdaAuthConfigurationV" + } + ], + "usr": "s:14AWSPluginsCore26AWSLambdaAuthConfigurationV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AWSAuthorizationConfiguration.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO8functionyAcA013AWSLambdaAuthD0VcACmF", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO8functionyAcA013AWSLambdaAuthD0VcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Function", + "name": "makeConfiguration", + "printedName": "makeConfiguration(authType:region:apiKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationConfiguration", + "printedName": "AWSPluginsCore.AWSAuthorizationConfiguration", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO" + }, + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO04makeD08authType6region6apiKeyAcA0cG0O_SSSgAJtKFZ", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO04makeD08authType6region6apiKeyAcA0cG0O_SSSgAJtKFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore29AWSAuthorizationConfigurationO", + "mangledName": "$s14AWSPluginsCore29AWSAuthorizationConfigurationO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "AWSIAMConfiguration", + "printedName": "AWSIAMConfiguration", + "children": [ + { + "kind": "Var", + "name": "region", + "printedName": "region", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV6regionSSvp", + "mangledName": "$s14AWSPluginsCore19AWSIAMConfigurationV6regionSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV6regionSSvg", + "mangledName": "$s14AWSPluginsCore19AWSIAMConfigurationV6regionSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(region:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSIAMConfiguration", + "printedName": "AWSPluginsCore.AWSIAMConfiguration", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV6regionACSS_tcfc", + "mangledName": "$s14AWSPluginsCore19AWSIAMConfigurationV6regionACSS_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore19AWSIAMConfigurationV", + "mangledName": "$s14AWSPluginsCore19AWSIAMConfigurationV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AWSLambdaAuthConfiguration", + "printedName": "AWSLambdaAuthConfiguration", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSLambdaAuthConfiguration", + "printedName": "AWSPluginsCore.AWSLambdaAuthConfiguration", + "usr": "s:14AWSPluginsCore26AWSLambdaAuthConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore26AWSLambdaAuthConfigurationVACycfc", + "mangledName": "$s14AWSPluginsCore26AWSLambdaAuthConfigurationVACycfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore26AWSLambdaAuthConfigurationV", + "mangledName": "$s14AWSPluginsCore26AWSLambdaAuthConfigurationV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "CognitoUserPoolsConfiguration", + "printedName": "CognitoUserPoolsConfiguration", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CognitoUserPoolsConfiguration", + "printedName": "AWSPluginsCore.CognitoUserPoolsConfiguration", + "usr": "s:14AWSPluginsCore29CognitoUserPoolsConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore29CognitoUserPoolsConfigurationVACycfc", + "mangledName": "$s14AWSPluginsCore29CognitoUserPoolsConfigurationVACycfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore29CognitoUserPoolsConfigurationV", + "mangledName": "$s14AWSPluginsCore29CognitoUserPoolsConfigurationV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "OIDCConfiguration", + "printedName": "OIDCConfiguration", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OIDCConfiguration", + "printedName": "AWSPluginsCore.OIDCConfiguration", + "usr": "s:14AWSPluginsCore17OIDCConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17OIDCConfigurationVACycfc", + "mangledName": "$s14AWSPluginsCore17OIDCConfigurationVACycfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore17OIDCConfigurationV", + "mangledName": "$s14AWSPluginsCore17OIDCConfigurationV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "APIKeyProvider", + "printedName": "APIKeyProvider", + "children": [ + { + "kind": "Function", + "name": "getAPIKey", + "printedName": "getAPIKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14APIKeyProviderP03getC0SSyF", + "mangledName": "$s14AWSPluginsCore14APIKeyProviderP03getC0SSyF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore14APIKeyProviderP", + "mangledName": "$s14AWSPluginsCore14APIKeyProviderP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "BasicAPIKeyProvider", + "printedName": "BasicAPIKeyProvider", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BasicAPIKeyProvider", + "printedName": "AWSPluginsCore.BasicAPIKeyProvider", + "usr": "s:14AWSPluginsCore19BasicAPIKeyProviderV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19BasicAPIKeyProviderV6apiKeyACSS_tcfc", + "mangledName": "$s14AWSPluginsCore19BasicAPIKeyProviderV6apiKeyACSS_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getAPIKey", + "printedName": "getAPIKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore19BasicAPIKeyProviderV03getD0SSyF", + "mangledName": "$s14AWSPluginsCore19BasicAPIKeyProviderV03getD0SSyF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore19BasicAPIKeyProviderV", + "mangledName": "$s14AWSPluginsCore19BasicAPIKeyProviderV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "APIKeyProvider", + "printedName": "APIKeyProvider", + "usr": "s:14AWSPluginsCore14APIKeyProviderP", + "mangledName": "$s14AWSPluginsCore14APIKeyProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreBehavior", + "printedName": "KeychainStoreBehavior", + "children": [ + { + "kind": "Function", + "name": "_getString", + "printedName": "_getString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP10_getStringyS2SKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP10_getStringyS2SKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_getData", + "printedName": "_getData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP8_getDatay10Foundation0G0VSSKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP8_getDatay10Foundation0G0VSSKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_set", + "printedName": "_set(_:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP4_set_3keyySS_SStKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP4_set_3keyySS_SStKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_set", + "printedName": "_set(_:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP4_set_3keyy10Foundation4DataV_SStKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP4_set_3keyy10Foundation4DataV_SStKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_remove", + "printedName": "_remove(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP7_removeyySSKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP7_removeyySSKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_removeAll", + "printedName": "_removeAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP10_removeAllyyKF", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP10_removeAllyyKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "KeychainStore", + "printedName": "KeychainStore", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStore", + "printedName": "AWSPluginsCore.KeychainStore", + "usr": "s:14AWSPluginsCore13KeychainStoreV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore13KeychainStoreVACycfc", + "mangledName": "$s14AWSPluginsCore13KeychainStoreVACycfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStore", + "printedName": "AWSPluginsCore.KeychainStore", + "usr": "s:14AWSPluginsCore13KeychainStoreV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore13KeychainStoreV7serviceACSS_tcfc", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV7serviceACSS_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStore", + "printedName": "AWSPluginsCore.KeychainStore", + "usr": "s:14AWSPluginsCore13KeychainStoreV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore13KeychainStoreV7service11accessGroupACSS_SSSgtcfc", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV7service11accessGroupACSS_SSSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "_getString", + "printedName": "_getString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV10_getStringyS2SKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV10_getStringyS2SKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_getData", + "printedName": "_getData(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV8_getDatay10Foundation0F0VSSKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV8_getDatay10Foundation0F0VSSKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_set", + "printedName": "_set(_:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV4_set_3keyySS_SStKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV4_set_3keyySS_SStKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_set", + "printedName": "_set(_:key:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV4_set_3keyy10Foundation4DataV_SStKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV4_set_3keyy10Foundation4DataV_SStKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_remove", + "printedName": "_remove(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV7_removeyySSKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV7_removeyySSKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "_removeAll", + "printedName": "_removeAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore13KeychainStoreV10_removeAllyyKF", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV10_removeAllyyKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "KeychainStore" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvpZ", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvgZ", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvp", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Nonisolated" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvg", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV3log7Amplify6Logger_pvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore13KeychainStoreV", + "mangledName": "$s14AWSPluginsCore13KeychainStoreV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "KeychainStoreBehavior", + "printedName": "KeychainStoreBehavior", + "usr": "s:14AWSPluginsCore21KeychainStoreBehaviorP", + "mangledName": "$s14AWSPluginsCore21KeychainStoreBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreError", + "printedName": "KeychainStoreError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> (Swift.String) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(message: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO13configurationyACSS_tcACmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO13configurationyACSS_tcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO7unknownyACSS_s0E0_pSgtcACmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO7unknownyACSS_s0E0_pSgtcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "conversionError", + "printedName": "conversionError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO010conversionE0yACSS_s0E0_pSgtcACmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO010conversionE0yACSS_s0E0_pSgtcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "codingError", + "printedName": "codingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO06codingE0yACSS_s0E0_pSgtcACmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO06codingE0yACSS_s0E0_pSgtcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "itemNotFound", + "printedName": "itemNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO12itemNotFoundyA2CmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO12itemNotFoundyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "securityError", + "printedName": "securityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type) -> (Darwin.OSStatus) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.OSStatus) -> AWSPluginsCore.KeychainStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Darwin.OSStatus)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OSStatus", + "printedName": "Darwin.OSStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ], + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.KeychainStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.KeychainStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO08securityE0yACs5Int32VcACmF", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO08securityE0yACs5Int32VcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO16errorDescription18recoverySuggestion0F0ACSS_SSs0E0_ptcfc", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO16errorDescription18recoverySuggestion0F0ACSS_SSs0E0_ptcfc", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO16errorDescriptionSSvp", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO16errorDescriptionSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO16errorDescriptionSSvg", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO16errorDescriptionSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO18recoverySuggestionSSvp", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO18recoverySuggestionSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO18recoverySuggestionSSvg", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO18recoverySuggestionSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO010underlyingE0s0E0_pSgvp", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO010underlyingE0s0E0_pSgvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO010underlyingE0s0E0_pSgvg", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO010underlyingE0s0E0_pSgvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreError", + "printedName": "AWSPluginsCore.KeychainStoreError", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO2eeoiySbAC_ACtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore18KeychainStoreErrorO", + "mangledName": "$s14AWSPluginsCore18KeychainStoreErrorO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyModel", + "printedName": "AnyModel", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV2idSSvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV2idSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV2idSSvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV2idSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV8instance7Amplify0D0_pvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV8instance7Amplify0D0_pvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV8instance7Amplify0D0_pvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV8instance7Amplify0D0_pvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV9modelNameSSvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV9modelNameSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV9modelNameSSvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV9modelNameSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore8AnyModelVyAC7Amplify0D0_pcfc", + "mangledName": "$s14AWSPluginsCore8AnyModelVyAC7Amplify0D0_pcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "identifier", + "printedName": "identifier(schema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifierProtocol", + "printedName": "Amplify.ModelIdentifierProtocol", + "usr": "s:7Amplify23ModelIdentifierProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore8AnyModelV10identifier6schema7Amplify0D18IdentifierProtocol_pAF0D6SchemaV_tF", + "mangledName": "$s14AWSPluginsCore8AnyModelV10identifier6schema7Amplify0D18IdentifierProtocol_pAF0D6SchemaV_tF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV10identifierSSvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV10identifierSSvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV10identifierSSvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV10identifierSSvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore8AnyModelV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s14AWSPluginsCore8AnyModelV4fromACs7Decoder_p_tKcfc", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore8AnyModelV6encode2toys7Encoder_p_tKF", + "mangledName": "$s14AWSPluginsCore8AnyModelV6encode2toys7Encoder_p_tKF", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:14AWSPluginsCore8AnyModelVyypSgSScip", + "mangledName": "$s14AWSPluginsCore8AnyModelVyypSgSScip", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelVyypSgSScig", + "mangledName": "$s14AWSPluginsCore8AnyModelVyypSgSScig", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Subscript", + "usr": "s:14AWSPluginsCore8AnyModelVyypSgs9CodingKey_pcip", + "mangledName": "$s14AWSPluginsCore8AnyModelVyypSgs9CodingKey_pcip", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelVyypSgs9CodingKey_pcig", + "mangledName": "$s14AWSPluginsCore8AnyModelVyypSgs9CodingKey_pcig", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type) -> AWSPluginsCore.AnyModel.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO2idyA2EmF", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO2idyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "instance", + "printedName": "instance", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type) -> AWSPluginsCore.AnyModel.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8instanceyA2EmF", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8instanceyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type) -> AWSPluginsCore.AnyModel.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AnyModel.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO9modelNameyA2EmF", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO9modelNameyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AnyModel.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8AllCasesa", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8AllCasesa", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8RawValuea", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8RawValuea", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AnyModel.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AnyModel.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8intValueSiSgvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8intValueSiSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueSSvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueSSvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO8rawValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueSSvp", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueSSvg", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO11stringValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO", + "mangledName": "$s14AWSPluginsCore8AnyModelV10CodingKeysO", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ModelKey", + "printedName": "ModelKey", + "usr": "s:7Amplify8ModelKeyP", + "mangledName": "$s7Amplify8ModelKeyP" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.AnyModel.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV4keysAC10CodingKeysOmvpZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV4keysAC10CodingKeysOmvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.AnyModel.CodingKeys", + "usr": "s:14AWSPluginsCore8AnyModelV10CodingKeysO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV4keysAC10CodingKeysOmvgZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV4keysAC10CodingKeysOmvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvpZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvgZ", + "mangledName": "$s14AWSPluginsCore8AnyModelV6schema7Amplify0D6SchemaVvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore8AnyModelV", + "mangledName": "$s14AWSPluginsCore8AnyModelV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "Model", + "printedName": "Model", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeAlias", + "name": "IdentityClaimsDictionary", + "printedName": "IdentityClaimsDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore24IdentityClaimsDictionarya", + "mangledName": "$s14AWSPluginsCore24IdentityClaimsDictionarya", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "AuthRuleDecoratorInput", + "printedName": "AuthRuleDecoratorInput", + "children": [ + { + "kind": "Var", + "name": "subscription", + "printedName": "subscription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type) -> (Amplify.GraphQLSubscriptionType, AWSPluginsCore.IdentityClaimsDictionary?) -> AWSPluginsCore.AuthRuleDecoratorInput", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLSubscriptionType, AWSPluginsCore.IdentityClaimsDictionary?) -> AWSPluginsCore.AuthRuleDecoratorInput", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.GraphQLSubscriptionType, AWSPluginsCore.IdentityClaimsDictionary?)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.IdentityClaimsDictionary?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IdentityClaimsDictionary", + "printedName": "AWSPluginsCore.IdentityClaimsDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO12subscriptionyAC7Amplify23GraphQLSubscriptionTypeO_SDySSyXlGSgtcACmF", + "mangledName": "$s14AWSPluginsCore22AuthRuleDecoratorInputO12subscriptionyAC7Amplify23GraphQLSubscriptionTypeO_SDySSyXlGSgtcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "mutation", + "printedName": "mutation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type) -> AWSPluginsCore.AuthRuleDecoratorInput", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO8mutationyA2CmF", + "mangledName": "$s14AWSPluginsCore22AuthRuleDecoratorInputO8mutationyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type) -> AWSPluginsCore.AuthRuleDecoratorInput", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AuthRuleDecoratorInput.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO5queryyA2CmF", + "mangledName": "$s14AWSPluginsCore22AuthRuleDecoratorInputO5queryyA2CmF", + "moduleName": "AWSPluginsCore" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO", + "mangledName": "$s14AWSPluginsCore22AuthRuleDecoratorInputO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "AuthRuleDecorator", + "printedName": "AuthRuleDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleDecorator", + "printedName": "AWSPluginsCore.AuthRuleDecorator", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "AuthRuleDecoratorInput", + "printedName": "AWSPluginsCore.AuthRuleDecoratorInput", + "usr": "s:14AWSPluginsCore22AuthRuleDecoratorInputO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV_8authTypeAcA0cdE5InputO_AA016AWSAuthorizationG0OSgtcfc", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV_8authTypeAcA0cdE5InputO_AA016AWSAuthorizationG0OSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvpZ", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvgZ", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvp", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvg", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV3log7Amplify6Logger_pvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore17AuthRuleDecoratorV", + "mangledName": "$s14AWSPluginsCore17AuthRuleDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConflictResolutionDecorator", + "printedName": "ConflictResolutionDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(version:lastSync:graphQLType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConflictResolutionDecorator", + "printedName": "AWSPluginsCore.ConflictResolutionDecorator", + "usr": "s:14AWSPluginsCore27ConflictResolutionDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore27ConflictResolutionDecoratorV7version8lastSync11graphQLType15primaryKeysOnlyACSiSg_s5Int64VSg7Amplify20GraphQLOperationTypeOSbtcfc", + "mangledName": "$s14AWSPluginsCore27ConflictResolutionDecoratorV7version8lastSync11graphQLType15primaryKeysOnlyACSiSg_s5Int64VSg7Amplify20GraphQLOperationTypeOSbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27ConflictResolutionDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore27ConflictResolutionDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27ConflictResolutionDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "mangledName": "$s14AWSPluginsCore27ConflictResolutionDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore27ConflictResolutionDecoratorV", + "mangledName": "$s14AWSPluginsCore27ConflictResolutionDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DirectiveNameDecorator", + "printedName": "DirectiveNameDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DirectiveNameDecorator", + "printedName": "AWSPluginsCore.DirectiveNameDecorator", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify16GraphQLQueryTypeO_tcfc", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify16GraphQLQueryTypeO_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DirectiveNameDecorator", + "printedName": "AWSPluginsCore.DirectiveNameDecorator", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify19GraphQLMutationTypeO_tcfc", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify19GraphQLMutationTypeO_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DirectiveNameDecorator", + "printedName": "AWSPluginsCore.DirectiveNameDecorator", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify23GraphQLSubscriptionTypeO_tcfc", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV4typeAC7Amplify23GraphQLSubscriptionTypeO_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV8decorate_9modelTypeAA06SingleC15GraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV8decorate_9modelTypeAA06SingleC15GraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV8decorate_11modelSchemaAA06SingleC15GraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV8decorate_11modelSchemaAA06SingleC15GraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore22DirectiveNameDecoratorV", + "mangledName": "$s14AWSPluginsCore22DirectiveNameDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FilterDecorator", + "printedName": "FilterDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(filter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FilterDecorator", + "printedName": "AWSPluginsCore.FilterDecorator", + "usr": "s:14AWSPluginsCore15FilterDecoratorV" + }, + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore15FilterDecoratorV6filterACSDySSypG_tcfc", + "mangledName": "$s14AWSPluginsCore15FilterDecoratorV6filterACSDySSypG_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15FilterDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore15FilterDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15FilterDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelG0VtF", + "mangledName": "$s14AWSPluginsCore15FilterDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelG0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore15FilterDecoratorV", + "mangledName": "$s14AWSPluginsCore15FilterDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IncludeAssociationDecorator", + "printedName": "IncludeAssociationDecorator", + "children": [ + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27IncludeAssociationDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore27IncludeAssociationDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore27IncludeAssociationDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "mangledName": "$s14AWSPluginsCore27IncludeAssociationDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelH0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore27IncludeAssociationDecoratorV", + "mangledName": "$s14AWSPluginsCore27IncludeAssociationDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "children": [ + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP8decorate_9modelTypeAA015SingleDirectiveeF0_pAaF_p_7Amplify0C0_pXptF", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP8decorate_9modelTypeAA015SingleDirectiveeF0_pAaF_p_7Amplify0C0_pXptF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP8decorate_11modelSchemaAA015SingleDirectiveeF0_pAaF_p_7Amplify0cJ0VtF", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP8decorate_11modelSchemaAA015SingleDirectiveeF0_pAaF_p_7Amplify0cJ0VtF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "ModelDecorator", + "printedName": "ModelDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:mutationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelDecorator", + "printedName": "AWSPluginsCore.ModelDecorator", + "usr": "s:14AWSPluginsCore14ModelDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore14ModelDecoratorV5model12mutationTypeAC7Amplify0C0_p_AF015GraphQLMutationG0Otcfc", + "mangledName": "$s14AWSPluginsCore14ModelDecoratorV5model12mutationTypeAC7Amplify0C0_p_AF015GraphQLMutationG0Otcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14ModelDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0C0_pXptF", + "mangledName": "$s14AWSPluginsCore14ModelDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0C0_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore14ModelDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0cG0VtF", + "mangledName": "$s14AWSPluginsCore14ModelDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0cG0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore14ModelDecoratorV", + "mangledName": "$s14AWSPluginsCore14ModelDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelIdDecorator", + "printedName": "ModelIdDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:schema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdDecorator", + "printedName": "AWSPluginsCore.ModelIdDecorator", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV5model6schemaAC7Amplify0C0_p_AF0C6SchemaVtcfc", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV5model6schemaAC7Amplify0C0_p_AF0C6SchemaVtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifierFields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdDecorator", + "printedName": "AWSPluginsCore.ModelIdDecorator", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(name: Swift.String, value: Amplify.Persistable)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV16identifierFieldsACSaySS4name_7Amplify11Persistable_p5valuetG_tcfc", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV16identifierFieldsACSaySS4name_7Amplify11Persistable_p5valuetG_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdDecorator", + "printedName": "AWSPluginsCore.ModelIdDecorator", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.LazyReferenceIdentifier]", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV11identifiersACSay7Amplify23LazyReferenceIdentifierVG_tcfc", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV11identifiersACSay7Amplify23LazyReferenceIdentifierVG_tcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdDecorator", + "printedName": "AWSPluginsCore.ModelIdDecorator", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV5modelAC7Amplify0C0_p_tcfc", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV5modelAC7Amplify0C0_p_tcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdDecorator", + "printedName": "AWSPluginsCore.ModelIdDecorator", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV2id6fieldsACSS_SDyS2SGSgtcfc", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV2id6fieldsACSS_SDyS2SGSgtcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0C0_pXptF", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0C0_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0cH0VtF", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify0cH0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore16ModelIdDecoratorV", + "mangledName": "$s14AWSPluginsCore16ModelIdDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PaginationDecorator", + "printedName": "PaginationDecorator", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(limit:nextToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginationDecorator", + "printedName": "AWSPluginsCore.PaginationDecorator", + "usr": "s:14AWSPluginsCore19PaginationDecoratorV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19PaginationDecoratorV5limit9nextTokenACSiSg_SSSgtcfc", + "mangledName": "$s14AWSPluginsCore19PaginationDecoratorV5limit9nextTokenACSiSg_SSSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore19PaginationDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "mangledName": "$s14AWSPluginsCore19PaginationDecoratorV8decorate_9modelTypeAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify5Model_pXptF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decorate", + "printedName": "decorate(_:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore19PaginationDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelG0VtF", + "mangledName": "$s14AWSPluginsCore19PaginationDecoratorV8decorate_11modelSchemaAA30SingleDirectiveGraphQLDocument_pAaF_p_7Amplify05ModelG0VtF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore19PaginationDecoratorV", + "mangledName": "$s14AWSPluginsCore19PaginationDecoratorV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP", + "mangledName": "$s14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLMutation", + "printedName": "GraphQLMutation", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operationType:name:inputs:selectionSet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutation", + "printedName": "AWSPluginsCore.GraphQLMutation", + "usr": "s:14AWSPluginsCore15GraphQLMutationV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutation", + "printedName": "AWSPluginsCore.GraphQLMutation", + "usr": "s:14AWSPluginsCore15GraphQLMutationV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelSchema:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutation", + "printedName": "AWSPluginsCore.GraphQLMutation", + "usr": "s:14AWSPluginsCore15GraphQLMutationV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15GraphQLMutationV4nameSSvp", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV4nameSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV4nameSSvg", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV4nameSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV4nameSSvs", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV4nameSSvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovp", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovg", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovs", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV13operationType7Amplify0c11QLOperationF0Ovs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "inputs", + "printedName": "inputs", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvp", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvg", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvs", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV6inputsSDySSAA0C15QLDocumentInputVGvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "selectionSet", + "printedName": "selectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore15GraphQLMutationV", + "mangledName": "$s14AWSPluginsCore15GraphQLMutationV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLQuery", + "printedName": "GraphQLQuery", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operationType:name:inputs:selectionSet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQuery", + "printedName": "AWSPluginsCore.GraphQLQuery", + "usr": "s:14AWSPluginsCore12GraphQLQueryV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQuery", + "printedName": "AWSPluginsCore.GraphQLQuery", + "usr": "s:14AWSPluginsCore12GraphQLQueryV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelSchema:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQuery", + "printedName": "AWSPluginsCore.GraphQLQuery", + "usr": "s:14AWSPluginsCore12GraphQLQueryV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12GraphQLQueryV4nameSSvp", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV4nameSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV4nameSSvg", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV4nameSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV4nameSSvs", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV4nameSSvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovp", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovg", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovs", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV13operationType7Amplify0c11QLOperationF0Ovs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "inputs", + "printedName": "inputs", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvp", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvg", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvs", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV6inputsSDySSAA0C15QLDocumentInputVGvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "selectionSet", + "printedName": "selectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore12GraphQLQueryV", + "mangledName": "$s14AWSPluginsCore12GraphQLQueryV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLSubscription", + "printedName": "GraphQLSubscription", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operationType:name:inputs:selectionSet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscription", + "printedName": "AWSPluginsCore.GraphQLSubscription", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV13operationType4name6inputs12selectionSetAC7Amplify0c11QLOperationF0O_SSSDySSAA0C15QLDocumentInputVGAH4TreeCyAA09SelectionJ5FieldCGSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscription", + "printedName": "AWSPluginsCore.GraphQLSubscription", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV9modelType15primaryKeysOnlyAC7Amplify5Model_pXp_Sbtcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelSchema:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscription", + "printedName": "AWSPluginsCore.GraphQLSubscription", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV11modelSchema15primaryKeysOnlyAC7Amplify05ModelF0V_Sbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovp", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovg", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovs", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV13operationType7Amplify0c11QLOperationF0Ovs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV4nameSSvp", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV4nameSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV4nameSSvg", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV4nameSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV4nameSSvs", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV4nameSSvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "inputs", + "printedName": "inputs", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvp", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvg", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvs", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV6inputsSDySSAA0C15QLDocumentInputVGvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "selectionSet", + "printedName": "selectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV12selectionSet7Amplify4TreeCyAA09SelectionF5FieldCGSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore19GraphQLSubscriptionV", + "mangledName": "$s14AWSPluginsCore19GraphQLSubscriptionV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelBasedGraphQLDocumentBuilder", + "printedName": "ModelBasedGraphQLDocumentBuilder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelName:operationType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelBasedGraphQLDocumentBuilder", + "printedName": "AWSPluginsCore.ModelBasedGraphQLDocumentBuilder", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV9modelName13operationType15primaryKeysOnlyACSS_7Amplify0e11QLOperationK0OSbtcfc", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV9modelName13operationType15primaryKeysOnlyACSS_7Amplify0e11QLOperationK0OSbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelType:operationType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelBasedGraphQLDocumentBuilder", + "printedName": "AWSPluginsCore.ModelBasedGraphQLDocumentBuilder", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV9modelType09operationI015primaryKeysOnlyAC7Amplify0C0_pXp_AG0e11QLOperationI0OSbtcfc", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV9modelType09operationI015primaryKeysOnlyAC7Amplify0C0_pXp_AG0e11QLOperationI0OSbtcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelSchema:operationType:primaryKeysOnly:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelBasedGraphQLDocumentBuilder", + "printedName": "AWSPluginsCore.ModelBasedGraphQLDocumentBuilder", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV11modelSchema13operationType15primaryKeysOnlyAC7Amplify0cI0V_AG0e11QLOperationK0OSbtcfc", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV11modelSchema13operationType15primaryKeysOnlyAC7Amplify0cI0V_AG0e11QLOperationK0OSbtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(decorator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ModelBasedGraphQLDocumentDecorator", + "printedName": "AWSPluginsCore.ModelBasedGraphQLDocumentDecorator", + "usr": "s:14AWSPluginsCore34ModelBasedGraphQLDocumentDecoratorP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV3add9decoratoryAA0cdeF9Decorator_p_tF", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV3add9decoratoryAA0cdeF9Decorator_p_tF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "build", + "printedName": "build()", + "children": [ + { + "kind": "TypeNominal", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "AWSPluginsCore.SingleDirectiveGraphQLDocument", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV5buildAA015SingleDirectiveeF0_pyF", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV5buildAA015SingleDirectiveeF0_pyF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV", + "mangledName": "$s14AWSPluginsCore32ModelBasedGraphQLDocumentBuilderV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "GraphQLParameterName", + "printedName": "GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20GraphQLParameterNamea", + "mangledName": "$s14AWSPluginsCore20GraphQLParameterNamea", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "SingleDirectiveGraphQLDocument", + "printedName": "SingleDirectiveGraphQLDocument", + "children": [ + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovs", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType7Amplify0e11QLOperationH0Ovs", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvs", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP4nameSSvs", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "inputs", + "printedName": "inputs", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvs", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP6inputsSDySSAA0eF5InputVGvs", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "selectionSet", + "printedName": "selectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvs", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP12selectionSet7Amplify4TreeCyAA09SelectionH5FieldCGSgvs", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operationType:name:inputs:selectionSet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType4name6inputs12selectionSetx7Amplify0e11QLOperationH0O_SSSDySSAA0eF5InputVGAH4TreeCyAA09SelectionL5FieldCGSgtcfc", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP13operationType4name6inputs12selectionSetx7Amplify0e11QLOperationH0O_SSSDySSAA0eF5InputVGAH4TreeCyAA09SelectionL5FieldCGSgtcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "copy", + "printedName": "copy(operationType:name:inputs:selectionSet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[AWSPluginsCore.GraphQLParameterName : AWSPluginsCore.GraphQLDocumentInput]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLParameterName", + "printedName": "AWSPluginsCore.GraphQLParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.SelectionSet?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SelectionSet", + "printedName": "AWSPluginsCore.SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE4copy13operationType4name6inputs12selectionSetx7Amplify0e11QLOperationI0OSg_SSSgSDySSAA0eF5InputVGSgAI4TreeCyAA09SelectionM5FieldCGSgtF", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE4copy13operationType4name6inputs12selectionSetx7Amplify0e11QLOperationI0OSg_SSSgSDySSAA0eF5InputVGSgAI4TreeCyAA09SelectionM5FieldCGSgtF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "variables", + "printedName": "variables", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE9variablesSDySSypGSgvp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE9variablesSDySSypGSgvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE9variablesSDySSypGSgvg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE9variablesSDySSypGSgvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE11stringValueSSvp", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE11stringValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE11stringValueSSvg", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentPAAE11stringValueSSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore30SingleDirectiveGraphQLDocumentP", + "mangledName": "$s14AWSPluginsCore30SingleDirectiveGraphQLDocumentP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "SyncQueryResult", + "printedName": "SyncQueryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginatedList", + "printedName": "AWSPluginsCore.PaginatedList", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore13PaginatedListV" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore15SyncQueryResulta", + "mangledName": "$s14AWSPluginsCore15SyncQueryResulta", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "MutationSyncResult", + "printedName": "MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore18MutationSyncResulta", + "mangledName": "$s14AWSPluginsCore18MutationSyncResulta", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "IncludedAssociations", + "printedName": "IncludedAssociations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20IncludedAssociationsa", + "mangledName": "$s14AWSPluginsCore20IncludedAssociationsa", + "moduleName": "AWSPluginsCore", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "GraphQLDocumentInput", + "printedName": "GraphQLDocumentInput", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV4typeSSvp", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV4typeSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV4typeSSvg", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV4typeSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV4typeSSvs", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV4typeSSvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvp", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvg", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvs", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV5valueAA0cdE5ValueOvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInput", + "printedName": "AWSPluginsCore.GraphQLDocumentInput", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV4type5valueACSS_AA0cdE5ValueOtcfc", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV4type5valueACSS_AA0cdE5ValueOtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore20GraphQLDocumentInputV", + "mangledName": "$s14AWSPluginsCore20GraphQLDocumentInputV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "GraphQLDocumentInputValue", + "printedName": "GraphQLDocumentInputValue", + "children": [ + { + "kind": "Var", + "name": "inline", + "printedName": "inline", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type) -> (AWSPluginsCore.GraphQLDocumentValueRepresentable) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.GraphQLDocumentValueRepresentable) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.GraphQLDocumentValueRepresentable)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "AWSPluginsCore.GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + } + ], + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO6inlineyAcA0cdF13Representable_pcACmF", + "mangledName": "$s14AWSPluginsCore25GraphQLDocumentInputValueO6inlineyAcA0cdF13Representable_pcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "scalar", + "printedName": "scalar", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type) -> (AWSPluginsCore.GraphQLDocumentValueRepresentable) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.GraphQLDocumentValueRepresentable) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.GraphQLDocumentValueRepresentable)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "AWSPluginsCore.GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + } + ], + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO6scalaryAcA0cdF13Representable_pcACmF", + "mangledName": "$s14AWSPluginsCore25GraphQLDocumentInputValueO6scalaryAcA0cdF13Representable_pcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "object", + "printedName": "object", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type) -> ([Swift.String : Any?]) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any?]) -> AWSPluginsCore.GraphQLDocumentInputValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Swift.String : Any?])", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any?]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.GraphQLDocumentInputValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLDocumentInputValue", + "printedName": "AWSPluginsCore.GraphQLDocumentInputValue", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO6objectyACSDySSypSgGcACmF", + "mangledName": "$s14AWSPluginsCore25GraphQLDocumentInputValueO6objectyACSDySSypSgGcACmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Function", + "name": "isInline", + "printedName": "isInline()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO8isInlineSbyF", + "mangledName": "$s14AWSPluginsCore25GraphQLDocumentInputValueO8isInlineSbyF", + "moduleName": "AWSPluginsCore", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore25GraphQLDocumentInputValueO", + "mangledName": "$s14AWSPluginsCore25GraphQLDocumentInputValueO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP05graphdE0SSvp", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP05graphdE0SSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP05graphdE0SSvg", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP05graphdE0SSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP013graphQLInlineE0SSvp", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP013graphQLInlineE0SSvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP013graphQLInlineE0SSvg", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP013graphQLInlineE0SSvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "GraphQLFilter", + "printedName": "GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore13GraphQLFiltera", + "mangledName": "$s14AWSPluginsCore13GraphQLFiltera", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "GraphQLFilterConverter", + "printedName": "GraphQLFilterConverter", + "children": [ + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:modelSchema:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "WritingOptions", + "printedName": "Foundation.JSONSerialization.WritingOptions", + "hasDefaultArg": true, + "usr": "c:@E@NSJSONWritingOptions" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22GraphQLFilterConverterV6toJSON_11modelSchema7optionsSS7Amplify14QueryPredicate_p_AG05ModelI0VSo20NSJSONWritingOptionsVtKFZ", + "mangledName": "$s14AWSPluginsCore22GraphQLFilterConverterV6toJSON_11modelSchema7optionsSS7Amplify14QueryPredicate_p_AG05ModelI0VSo20NSJSONWritingOptionsVtKFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + }, + { + "kind": "TypeNominal", + "name": "WritingOptions", + "printedName": "Foundation.JSONSerialization.WritingOptions", + "hasDefaultArg": true, + "usr": "c:@E@NSJSONWritingOptions" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22GraphQLFilterConverterV6toJSON_7optionsSS7Amplify14QueryPredicate_p_So20NSJSONWritingOptionsVtKFZ", + "mangledName": "$s14AWSPluginsCore22GraphQLFilterConverterV6toJSON_7optionsSS7Amplify14QueryPredicate_p_So20NSJSONWritingOptionsVtKFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromJSON", + "printedName": "fromJSON(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore22GraphQLFilterConverterV8fromJSONySDySSypGSSKFZ", + "mangledName": "$s14AWSPluginsCore22GraphQLFilterConverterV8fromJSONySDySSypGSSKFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore22GraphQLFilterConverterV", + "mangledName": "$s14AWSPluginsCore22GraphQLFilterConverterV", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "SelectionSet", + "printedName": "SelectionSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore12SelectionSeta", + "mangledName": "$s14AWSPluginsCore12SelectionSeta", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "SelectionSetFieldType", + "printedName": "SelectionSetFieldType", + "children": [ + { + "kind": "Var", + "name": "pagination", + "printedName": "pagination", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type) -> AWSPluginsCore.SelectionSetFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.SelectionSetFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO10paginationyA2CmF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO10paginationyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type) -> AWSPluginsCore.SelectionSetFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.SelectionSetFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO5modelyA2CmF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO5modelyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "embedded", + "printedName": "embedded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type) -> AWSPluginsCore.SelectionSetFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.SelectionSetFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO8embeddedyA2CmF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO8embeddedyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type) -> AWSPluginsCore.SelectionSetFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.SelectionSetFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO5valueyA2CmF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO5valueyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "collection", + "printedName": "collection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type) -> AWSPluginsCore.SelectionSetFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.SelectionSetFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.SelectionSetFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO10collectionyA2CmF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO10collectionyA2CmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO4hash4intoys6HasherVz_tF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO9hashValueSivp", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO9hashValueSivp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO9hashValueSivg", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO9hashValueSivg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO", + "mangledName": "$s14AWSPluginsCore21SelectionSetFieldTypeO", + "moduleName": "AWSPluginsCore", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SelectionSetField", + "printedName": "SelectionSetField", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:fieldType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SelectionSetField", + "printedName": "AWSPluginsCore.SelectionSetField", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SelectionSetFieldType", + "printedName": "AWSPluginsCore.SelectionSetFieldType", + "usr": "s:14AWSPluginsCore21SelectionSetFieldTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC4name9fieldTypeACSSSg_AA0cdeH0Otcfc", + "mangledName": "$s14AWSPluginsCore17SelectionSetFieldC4name9fieldTypeACSSSg_AA0cdeH0Otcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore17SelectionSetFieldC", + "mangledName": "$s14AWSPluginsCore17SelectionSetFieldC", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeDecl", + "name": "ModelSyncMetadata", + "printedName": "ModelSyncMetadata", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV2idSSvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV2idSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV2idSSvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV2idSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastSync", + "printedName": "lastSync", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvs", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV04lastD0s5Int64VSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "syncPredicate", + "printedName": "syncPredicate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvs", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV13syncPredicateSSSgvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:lastSync:syncPredicate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSyncMetadata", + "printedName": "AWSPluginsCore.ModelSyncMetadata", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV2id04lastD013syncPredicateACSS_s5Int64VSgSSSgtcfc", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV2id04lastD013syncPredicateACSS_s5Int64VSgSSSgtcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV6encode2toys7Encoder_p_tKF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSyncMetadata", + "printedName": "AWSPluginsCore.ModelSyncMetadata", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV4fromACs7Decoder_p_tKcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO2idyA2EmF", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO2idyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "lastSync", + "printedName": "lastSync", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO04lastD0yA2EmF", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO04lastD0yA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "syncPredicate", + "printedName": "syncPredicate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO13syncPredicateyA2EmF", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO13syncPredicateyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.ModelSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8AllCasesa", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8AllCasesa", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8RawValuea", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8RawValuea", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.ModelSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.ModelSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueSiSgvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8intValueSiSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueSSvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueSSvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO8rawValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueSSvp", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueSSvg", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO11stringValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ModelKey", + "printedName": "ModelKey", + "usr": "s:7Amplify8ModelKeyP", + "mangledName": "$s7Amplify8ModelKeyP" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.ModelSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV4keysAC10CodingKeysOmvpZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV4keysAC10CodingKeysOmvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.ModelSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV10CodingKeysO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV4keysAC10CodingKeysOmvgZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV4keysAC10CodingKeysOmvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV6schema7Amplify0C6SchemaVvpZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV6schema7Amplify0C6SchemaVvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV6schema7Amplify0C6SchemaVvgZ", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV6schema7Amplify0C6SchemaVvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore17ModelSyncMetadataV", + "mangledName": "$s14AWSPluginsCore17ModelSyncMetadataV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "Model", + "printedName": "Model", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MutationSync", + "printedName": "MutationSync", + "children": [ + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12MutationSyncV5modelxvp", + "mangledName": "$s14AWSPluginsCore12MutationSyncV5modelxvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12MutationSyncV5modelxvg", + "mangledName": "$s14AWSPluginsCore12MutationSyncV5modelxvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncMetadata", + "printedName": "syncMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore12MutationSyncV12syncMetadataAA0cdF0Vvp", + "mangledName": "$s14AWSPluginsCore12MutationSyncV12syncMetadataAA0cdF0Vvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore12MutationSyncV12syncMetadataAA0cdF0Vvg", + "mangledName": "$s14AWSPluginsCore12MutationSyncV12syncMetadataAA0cdF0Vvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:syncMetadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + }, + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore12MutationSyncV5model12syncMetadataACyxGx_AA0cdG0Vtcfc", + "mangledName": "$s14AWSPluginsCore12MutationSyncV5model12syncMetadataACyxGx_AA0cdG0Vtcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore12MutationSyncV4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s14AWSPluginsCore12MutationSyncV4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore12MutationSyncV", + "mangledName": "$s14AWSPluginsCore12MutationSyncV", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MutationSyncMetadata", + "printedName": "MutationSyncMetadata", + "children": [ + { + "kind": "TypeAlias", + "name": "MutationSyncIdentifier", + "printedName": "MutationSyncIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV0cD10Identifiera", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV0cD10Identifiera", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "TypeAlias", + "name": "ModelId", + "printedName": "ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7ModelIda", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7ModelIda", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncIdentifier", + "printedName": "AWSPluginsCore.MutationSyncMetadata.MutationSyncIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV2idSSvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV2idSSvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncIdentifier", + "printedName": "AWSPluginsCore.MutationSyncMetadata.MutationSyncIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV2idSSvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV2idSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deleted", + "printedName": "deleted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7deletedSbvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7deletedSbvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7deletedSbvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7deletedSbvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7deletedSbvs", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7deletedSbvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "lastChangedAt", + "printedName": "lastChangedAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvs", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV13lastChangedAts5Int64Vvs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7versionSivp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7versionSivp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7versionSivg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7versionSivg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7versionSivs", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7versionSivs", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "modelId", + "printedName": "modelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7modelIdSSvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7modelIdSSvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7modelIdSSvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7modelIdSSvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV9modelNameSSvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV9modelNameSSvp", + "moduleName": "AWSPluginsCore", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV9modelNameSSvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV9modelNameSSvg", + "moduleName": "AWSPluginsCore", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:deleted:lastChangedAt:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + }, + { + "kind": "TypeNameAlias", + "name": "MutationSyncIdentifier", + "printedName": "AWSPluginsCore.MutationSyncMetadata.MutationSyncIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV2id7deleted13lastChangedAt7versionACSS_Sbs5Int64VSitcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV2id7deleted13lastChangedAt7versionACSS_Sbs5Int64VSitcfc", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelId:modelName:deleted:lastChangedAt:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + }, + { + "kind": "TypeNameAlias", + "name": "ModelId", + "printedName": "AWSPluginsCore.MutationSyncMetadata.ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV7modelId0F4Name7deleted13lastChangedAt7versionACSS_SSSbs5Int64VSitcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV7modelId0F4Name7deleted13lastChangedAt7versionACSS_SSSbs5Int64VSitcfc", + "moduleName": "AWSPluginsCore", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "identifier", + "printedName": "identifier(modelName:modelId:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncIdentifier", + "printedName": "AWSPluginsCore.MutationSyncMetadata.MutationSyncIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10identifier9modelName0G2IdS2S_SStFZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10identifier9modelName0G2IdS2S_SStFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV6encode2toys7Encoder_p_tKF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV4fromACs7Decoder_p_tKcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO2idyA2EmF", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO2idyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "deleted", + "printedName": "deleted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO7deletedyA2EmF", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO7deletedyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "lastChangedAt", + "printedName": "lastChangedAt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO13lastChangedAtyA2EmF", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO13lastChangedAtyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type) -> AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO7versionyA2EmF", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO7versionyA2EmF", + "moduleName": "AWSPluginsCore" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "AWSPluginsCore", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8AllCasesa", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8AllCasesa", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8RawValuea", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8RawValuea", + "moduleName": "AWSPluginsCore", + "implicit": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueSiSgvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8intValueSiSgvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueSSvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueSSvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO8rawValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueSSvp", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueSSvp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueSSvg", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO11stringValueSSvg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ModelKey", + "printedName": "ModelKey", + "usr": "s:7Amplify8ModelKeyP", + "mangledName": "$s7Amplify8ModelKeyP" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSyncMetadata.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV4keysAC10CodingKeysOmvpZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV4keysAC10CodingKeysOmvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "AWSPluginsCore.MutationSyncMetadata.CodingKeys", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV10CodingKeysO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV4keysAC10CodingKeysOmvgZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV4keysAC10CodingKeysOmvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV6schema7Amplify11ModelSchemaVvpZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV6schema7Amplify11ModelSchemaVvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV6schema7Amplify11ModelSchemaVvgZ", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV6schema7Amplify11ModelSchemaVvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "IdentifierProtocol", + "printedName": "IdentifierProtocol", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV18IdentifierProtocola", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV18IdentifierProtocola", + "moduleName": "AWSPluginsCore", + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "IdentifierFormat", + "printedName": "IdentifierFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV16IdentifierFormata", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV16IdentifierFormata", + "moduleName": "AWSPluginsCore", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV", + "mangledName": "$s14AWSPluginsCore20MutationSyncMetadataV", + "moduleName": "AWSPluginsCore", + "conformances": [ + { + "kind": "Conformance", + "name": "Model", + "printedName": "Model", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ModelIdentifiable", + "printedName": "ModelIdentifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "IdentifierFormat", + "printedName": "IdentifierFormat", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IdentifierFormat", + "printedName": "AWSPluginsCore.MutationSyncMetadata.IdentifierFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "IdentifierProtocol", + "printedName": "IdentifierProtocol", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IdentifierProtocol", + "printedName": "AWSPluginsCore.MutationSyncMetadata.IdentifierProtocol", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSyncMetadata", + "printedName": "AWSPluginsCore.MutationSyncMetadata", + "usr": "s:14AWSPluginsCore20MutationSyncMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ] + } + ] + } + ], + "usr": "s:7Amplify17ModelIdentifiableP", + "mangledName": "$s7Amplify17ModelIdentifiableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PaginatedList", + "printedName": "PaginatedList", + "children": [ + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSync]", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore13PaginatedListV5itemsSayAA12MutationSyncVyxGGvp", + "mangledName": "$s14AWSPluginsCore13PaginatedListV5itemsSayAA12MutationSyncVyxGGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSync]", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore13PaginatedListV5itemsSayAA12MutationSyncVyxGGvg", + "mangledName": "$s14AWSPluginsCore13PaginatedListV5itemsSayAA12MutationSyncVyxGGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextToken", + "printedName": "nextToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore13PaginatedListV9nextTokenSSSgvp", + "mangledName": "$s14AWSPluginsCore13PaginatedListV9nextTokenSSSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore13PaginatedListV9nextTokenSSSgvg", + "mangledName": "$s14AWSPluginsCore13PaginatedListV9nextTokenSSSgvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startedAt", + "printedName": "startedAt", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore13PaginatedListV9startedAts5Int64VSgvp", + "mangledName": "$s14AWSPluginsCore13PaginatedListV9startedAts5Int64VSgvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore13PaginatedListV9startedAts5Int64VSgvg", + "mangledName": "$s14AWSPluginsCore13PaginatedListV9startedAts5Int64VSgvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(items:nextToken:startedAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginatedList", + "printedName": "AWSPluginsCore.PaginatedList", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore13PaginatedListV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[AWSPluginsCore.MutationSync]", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore13PaginatedListV5items9nextToken9startedAtACyxGSayAA12MutationSyncVyxGG_SSSgs5Int64VSgtcfc", + "mangledName": "$s14AWSPluginsCore13PaginatedListV5items9nextToken9startedAtACyxGSayAA12MutationSyncVyxGG_SSSgs5Int64VSgtcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginatedList", + "printedName": "AWSPluginsCore.PaginatedList", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:14AWSPluginsCore13PaginatedListV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore13PaginatedListV4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s14AWSPluginsCore13PaginatedListV4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:14AWSPluginsCore13PaginatedListV", + "mangledName": "$s14AWSPluginsCore13PaginatedListV", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyNetworkMonitor", + "printedName": "AmplifyNetworkMonitor", + "children": [ + { + "kind": "TypeDecl", + "name": "State", + "printedName": "State", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type) -> AWSPluginsCore.AmplifyNetworkMonitor.State", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO4noneyA2EmF", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO4noneyA2EmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "online", + "printedName": "online", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type) -> AWSPluginsCore.AmplifyNetworkMonitor.State", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO6onlineyA2EmF", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO6onlineyA2EmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "offline", + "printedName": "offline", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type) -> AWSPluginsCore.AmplifyNetworkMonitor.State", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO7offlineyA2EmF", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO7offlineyA2EmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO21__derived_enum_equalsySbAE_AEtFZ", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO21__derived_enum_equalsySbAE_AEtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO4hash4intoys6HasherVz_tF", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO4hash4intoys6HasherVz_tF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO9hashValueSivp", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO9hashValueSivp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO9hashValueSivg", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO9hashValueSivg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC5StateO", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Var", + "name": "publisher", + "printedName": "publisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher<(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State), Swift.Never>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State)", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC9publisher7Combine12AnyPublisherVyAC5StateO_AIts5NeverOGvp", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC9publisher7Combine12AnyPublisherVyAC5StateO_AIts5NeverOGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher<(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State), Swift.Never>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State)", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC9publisher7Combine12AnyPublisherVyAC5StateO_AIts5NeverOGvg", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC9publisher7Combine12AnyPublisherVyAC5StateO_AIts5NeverOGvg", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(on:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyNetworkMonitor", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Network.NWInterface.InterfaceType?", + "children": [ + { + "kind": "TypeNominal", + "name": "InterfaceType", + "printedName": "Network.NWInterface.InterfaceType", + "usr": "s:7Network11NWInterfaceV13InterfaceTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC2onAC0D011NWInterfaceV13InterfaceTypeOSg_tcfc", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC2onAC0D011NWInterfaceV13InterfaceTypeOSg_tcfc", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "updateState", + "printedName": "updateState(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC11updateStateyyAC0G0OF", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC11updateStateyyAC0G0OF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC", + "mangledName": "$s14AWSPluginsCore21AmplifyNetworkMonitorC", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final", + "SPIAccessControl" + ], + "spi_group_names": [ + "WebSocket" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "WebSocketNetworkMonitorProtocol", + "printedName": "WebSocketNetworkMonitorProtocol", + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP", + "mangledName": "$s14AWSPluginsCore31WebSocketNetworkMonitorProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RetryWithJitter", + "printedName": "RetryWithJitter", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "maxRetryExceeded", + "printedName": "maxRetryExceeded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.RetryWithJitter.Error.Type) -> ([Swift.Error]) -> AWSPluginsCore.RetryWithJitter.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.Error]) -> AWSPluginsCore.RetryWithJitter.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.RetryWithJitter.Error", + "usr": "s:14AWSPluginsCore15RetryWithJitterC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Swift.Error])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Error]", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.RetryWithJitter.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.RetryWithJitter.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.RetryWithJitter.Error", + "usr": "s:14AWSPluginsCore15RetryWithJitterC5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore15RetryWithJitterC5ErrorO03maxC8ExceededyAESaysAD_pGcAEmF", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC5ErrorO03maxC8ExceededyAESaysAD_pGcAEmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore15RetryWithJitterC5ErrorO", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC5ErrorO", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "unownedExecutor", + "printedName": "unownedExecutor", + "children": [ + { + "kind": "TypeNominal", + "name": "UnownedSerialExecutor", + "printedName": "_Concurrency.UnownedSerialExecutor", + "usr": "s:Sce" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15RetryWithJitterC15unownedExecutorScevp", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC15unownedExecutorScevp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Final", + "Nonisolated", + "Semantics" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnownedSerialExecutor", + "printedName": "_Concurrency.UnownedSerialExecutor", + "usr": "s:Sce" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15RetryWithJitterC15unownedExecutorScevg", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC15unownedExecutorScevg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute(maxRetryCount:shouldRetryOnError:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Error)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s5ErrorP" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Output", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15RetryWithJitterC7execute03maxC5Count06shouldC7OnError_xSu_Sbs0K0_pXExyYaKctYaKlFZ", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC7execute03maxC5Count06shouldC7OnError_xSu_Sbs0K0_pXExyYaKctYaKlFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:14AWSPluginsCore15RetryWithJitterC", + "mangledName": "$s14AWSPluginsCore15RetryWithJitterC", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "WebSocket" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Actor", + "printedName": "Actor", + "usr": "s:ScA", + "mangledName": "$sScA" + }, + { + "kind": "Conformance", + "name": "AnyActor", + "printedName": "AnyActor", + "usr": "s:12_Concurrency8AnyActorP", + "mangledName": "$ss8AnyActorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketClient", + "printedName": "WebSocketClient", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "connectionLost", + "printedName": "connectionLost", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketClient.Error.Type) -> AWSPluginsCore.WebSocketClient.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketClient.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketClient.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO14connectionLostyA2EmF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO14connectionLostyA2EmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "connectionCancelled", + "printedName": "connectionCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketClient.Error.Type) -> AWSPluginsCore.WebSocketClient.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketClient.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketClient.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO19connectionCancelledyA2EmF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO19connectionCancelledyA2EmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "AWSPluginsCore.WebSocketClient.Error", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO21__derived_enum_equalsySbAE_AEtFZ", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO21__derived_enum_equalsySbAE_AEtFZ", + "moduleName": "AWSPluginsCore", + "static": true, + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO9hashValueSivp", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO9hashValueSivp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO9hashValueSivg", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO9hashValueSivg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore15WebSocketClientC5ErrorO", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5ErrorO", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "publisher", + "printedName": "publisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC9publisher7Combine12AnyPublisherVyAA0cD5EventOs5NeverOGvp", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC9publisher7Combine12AnyPublisherVyAA0cD5EventOs5NeverOGvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC9publisher7Combine12AnyPublisherVyAA0cD5EventOs5NeverOGvg", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC9publisher7Combine12AnyPublisherVyAA0cD5EventOs5NeverOGvg", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isConnected", + "printedName": "isConnected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC11isConnectedSbvp", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC11isConnectedSbvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC11isConnectedSbvg", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC11isConnectedSbvg", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:handshakeHttpHeaders:interceptor:networkMonitor:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketClient", + "printedName": "AWSPluginsCore.WebSocketClient", + "usr": "c:@M@AWSPluginsCore@objc(cs)WebSocketClient" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.WebSocketInterceptor?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketInterceptor", + "printedName": "AWSPluginsCore.WebSocketInterceptor", + "usr": "s:14AWSPluginsCore20WebSocketInterceptorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "WebSocketNetworkMonitorProtocol", + "printedName": "AWSPluginsCore.WebSocketNetworkMonitorProtocol", + "hasDefaultArg": true, + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:14AWSPluginsCore15WebSocketClientC3url20handshakeHttpHeaders11interceptor14networkMonitorAC10Foundation3URLV_SDyS2SGAA0cD11Interceptor_pSgAA0cd7NetworkL8Protocol_ptcfc", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC3url20handshakeHttpHeaders11interceptor14networkMonitorAC10Foundation3URLV_SDyS2SGAA0cD11Interceptor_pSgAA0cd7NetworkL8Protocol_ptcfc", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "connect", + "printedName": "connect(autoConnectOnNetworkStatusChange:autoRetryOnConnectionFailure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC7connect32autoConnectOnNetworkStatusChange0g5RetryI17ConnectionFailureySb_SbtYaF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC7connect32autoConnectOnNetworkStatusChange0g5RetryI17ConnectionFailureySb_SbtYaF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC10disconnectyyF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC10disconnectyyF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC5write7messageySS_tYaKF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5write7messageySS_tYaKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "write", + "printedName": "write(message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC5write7messagey10Foundation4DataV_tYaKF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5write7messagey10Foundation4DataV_tYaKF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketClient", + "printedName": "AWSPluginsCore.WebSocketClient", + "usr": "c:@M@AWSPluginsCore@objc(cs)WebSocketClient" + } + ], + "declKind": "Constructor", + "usr": "c:@M@AWSPluginsCore@objc(cs)WebSocketClient(im)init", + "mangledName": "$s14AWSPluginsCore15WebSocketClientCACycfc", + "moduleName": "AWSPluginsCore", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "ObjC", + "Override" + ], + "spi_group_names": [ + "WebSocket" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "unownedExecutor", + "printedName": "unownedExecutor", + "children": [ + { + "kind": "TypeNominal", + "name": "UnownedSerialExecutor", + "printedName": "_Concurrency.UnownedSerialExecutor", + "usr": "s:Sce" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC15unownedExecutorScevp", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC15unownedExecutorScevp", + "moduleName": "AWSPluginsCore", + "implicit": true, + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Final", + "Nonisolated", + "Semantics" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UnownedSerialExecutor", + "printedName": "_Concurrency.UnownedSerialExecutor", + "usr": "s:Sce" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC15unownedExecutorScevg", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC15unownedExecutorScevg", + "moduleName": "AWSPluginsCore", + "implicit": true, + "declAttributes": [ + "Final" + ], + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didOpenWithProtocol:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@AWSPluginsCore@objc(cs)WebSocketClient(im)URLSession:webSocketTask:didOpenWithProtocol:", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC10urlSession_03webD4Task19didOpenWithProtocolySo12NSURLSessionC_So0ncdI0CSSSgtF", + "moduleName": "AWSPluginsCore", + "objc_name": "URLSession:webSocketTask:didOpenWithProtocol:", + "declAttributes": [ + "Final", + "ObjC", + "Nonisolated" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:webSocketTask:didCloseWith:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionWebSocketTask", + "printedName": "Foundation.URLSessionWebSocketTask", + "usr": "c:objc(cs)NSURLSessionWebSocketTask" + }, + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "Foundation.URLSessionWebSocketTask.CloseCode", + "usr": "c:@E@NSURLSessionWebSocketCloseCode" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@AWSPluginsCore@objc(cs)WebSocketClient(im)URLSession:webSocketTask:didCloseWithCode:reason:", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC10urlSession_03webD4Task12didCloseWith6reasonySo12NSURLSessionC_So0ncdI0CSo0ncdK4CodeV10Foundation4DataVSgtF", + "moduleName": "AWSPluginsCore", + "objc_name": "URLSession:webSocketTask:didCloseWithCode:reason:", + "declAttributes": [ + "Final", + "ObjC", + "Nonisolated" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "urlSession", + "printedName": "urlSession(_:task:didCompleteWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSession", + "printedName": "Foundation.URLSession", + "usr": "c:objc(cs)NSURLSession" + }, + { + "kind": "TypeNominal", + "name": "URLSessionTask", + "printedName": "Foundation.URLSessionTask", + "usr": "c:objc(cs)NSURLSessionTask" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@AWSPluginsCore@objc(cs)WebSocketClient(im)URLSession:task:didCompleteWithError:", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0M4TaskCs0L0_pSgtF", + "moduleName": "AWSPluginsCore", + "objc_name": "URLSession:task:didCompleteWithError:", + "declAttributes": [ + "Final", + "ObjC", + "Nonisolated" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvpZ", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvpZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvgZ", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvgZ", + "moduleName": "AWSPluginsCore", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvp", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvp", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final", + "Nonisolated" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvg", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC3log7Amplify6Logger_pvg", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore15WebSocketClientC5resetyyYaF", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC5resetyyYaF", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "spi_group_names": [ + "WebSocket" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@AWSPluginsCore@objc(cs)WebSocketClient", + "mangledName": "$s14AWSPluginsCore15WebSocketClientC", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "Final", + "SPIAccessControl", + "ObjC" + ], + "spi_group_names": [ + "WebSocket" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Actor", + "printedName": "Actor", + "usr": "s:ScA", + "mangledName": "$sScA" + }, + { + "kind": "Conformance", + "name": "AnyActor", + "printedName": "AnyActor", + "usr": "s:12_Concurrency8AnyActorP", + "mangledName": "$ss8AnyActorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "URLSessionWebSocketDelegate", + "printedName": "URLSessionWebSocketDelegate", + "usr": "c:objc(pl)NSURLSessionWebSocketDelegate" + }, + { + "kind": "Conformance", + "name": "URLSessionTaskDelegate", + "printedName": "URLSessionTaskDelegate", + "usr": "c:objc(pl)NSURLSessionTaskDelegate" + }, + { + "kind": "Conformance", + "name": "URLSessionDelegate", + "printedName": "URLSessionDelegate", + "usr": "c:objc(pl)NSURLSessionDelegate" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketEvent", + "printedName": "WebSocketEvent", + "children": [ + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore14WebSocketEventO9connectedyA2CmF", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO9connectedyA2CmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type) -> (Foundation.URLSessionWebSocketTask.CloseCode, Swift.String?) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URLSessionWebSocketTask.CloseCode, Swift.String?) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URLSessionWebSocketTask.CloseCode, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "CloseCode", + "printedName": "Foundation.URLSessionWebSocketTask.CloseCode", + "usr": "c:@E@NSURLSessionWebSocketCloseCode" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore14WebSocketEventO12disconnectedyACSo012NSURLSessioncD9CloseCodeV_SSSgtcACmF", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO12disconnectedyACSo012NSURLSessioncD9CloseCodeV_SSSgtcACmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type) -> (Foundation.Data) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Foundation.Data)", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore14WebSocketEventO4datayAC10Foundation4DataVcACmF", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO4datayAC10Foundation4DataVcACmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type) -> (Swift.String) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore14WebSocketEventO6stringyACSScACmF", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO6stringyACSScACmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type) -> (Swift.Error) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> AWSPluginsCore.WebSocketEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Error)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(AWSPluginsCore.WebSocketEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "AWSPluginsCore.WebSocketEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WebSocketEvent", + "printedName": "AWSPluginsCore.WebSocketEvent", + "usr": "s:14AWSPluginsCore14WebSocketEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:14AWSPluginsCore14WebSocketEventO5erroryACs5Error_pcACmF", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO5erroryACs5Error_pcACmF", + "moduleName": "AWSPluginsCore", + "spi_group_names": [ + "WebSocket" + ] + } + ], + "declKind": "Enum", + "usr": "s:14AWSPluginsCore14WebSocketEventO", + "mangledName": "$s14AWSPluginsCore14WebSocketEventO", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "WebSocket" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "WebSocketInterceptor", + "printedName": "WebSocketInterceptor", + "children": [ + { + "kind": "Function", + "name": "interceptConnection", + "printedName": "interceptConnection(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore20WebSocketInterceptorP19interceptConnection3url10Foundation3URLVAH_tYaF", + "mangledName": "$s14AWSPluginsCore20WebSocketInterceptorP19interceptConnection3url10Foundation3URLVAH_tYaF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "spi_group_names": [ + "WebSocket" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore20WebSocketInterceptorP", + "mangledName": "$s14AWSPluginsCore20WebSocketInterceptorP", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "TypeDecl", + "name": "WebSocketNetworkMonitorProtocol", + "printedName": "WebSocketNetworkMonitorProtocol", + "children": [ + { + "kind": "Var", + "name": "publisher", + "printedName": "publisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher<(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State), Swift.Never>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State)", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP9publisher7Combine12AnyPublisherVyAA07AmplifyeF0C5StateO_AKts5NeverOGvp", + "mangledName": "$s14AWSPluginsCore31WebSocketNetworkMonitorProtocolP9publisher7Combine12AnyPublisherVyAA07AmplifyeF0C5StateO_AKts5NeverOGvp", + "moduleName": "AWSPluginsCore", + "protocolReq": true, + "spi_group_names": [ + "WebSocket" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher<(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State), Swift.Never>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(AWSPluginsCore.AmplifyNetworkMonitor.State, AWSPluginsCore.AmplifyNetworkMonitor.State)", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP9publisher7Combine12AnyPublisherVyAA07AmplifyeF0C5StateO_AKts5NeverOGvg", + "mangledName": "$s14AWSPluginsCore31WebSocketNetworkMonitorProtocolP9publisher7Combine12AnyPublisherVyAA07AmplifyeF0C5StateO_AKts5NeverOGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "spi_group_names": [ + "WebSocket" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateState", + "printedName": "updateState(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "AWSPluginsCore.AmplifyNetworkMonitor.State", + "usr": "s:14AWSPluginsCore21AmplifyNetworkMonitorC5StateO" + } + ], + "declKind": "Func", + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP11updateStateyyAA07AmplifyeF0C0I0OYaF", + "mangledName": "$s14AWSPluginsCore31WebSocketNetworkMonitorProtocolP11updateStateyyAA07AmplifyeF0C0I0OYaF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "protocolReq": true, + "spi_group_names": [ + "WebSocket" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:14AWSPluginsCore31WebSocketNetworkMonitorProtocolP", + "mangledName": "$s14AWSPluginsCore31WebSocketNetworkMonitorProtocolP", + "moduleName": "AWSPluginsCore", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "WebSocket" + ] + }, + { + "kind": "TypeDecl", + "name": "Model", + "printedName": "Model", + "children": [ + { + "kind": "Function", + "name": "eraseToAnyModel", + "printedName": "eraseToAnyModel()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelP14AWSPluginsCoreE010eraseToAnyB0AD0gB0VyKF", + "mangledName": "$s7Amplify5ModelP14AWSPluginsCoreE010eraseToAnyB0AD0gB0VyKF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP", + "moduleName": "Amplify", + "genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthRule", + "printedName": "AuthRule", + "children": [ + { + "kind": "Function", + "name": "identityClaimOrDefault", + "printedName": "identityClaimOrDefault()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8AuthRuleV14AWSPluginsCoreE22identityClaimOrDefaultSSyF", + "mangledName": "$s7Amplify8AuthRuleV14AWSPluginsCoreE22identityClaimOrDefaultSSyF", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8AuthRuleV", + "mangledName": "$s7Amplify8AuthRuleV", + "moduleName": "Amplify", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLRequest", + "printedName": "GraphQLRequest", + "children": [ + { + "kind": "Function", + "name": "query", + "printedName": "query(modelName:byId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.MutationSyncResult?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE5query9modelName4byId8authTypeACyAD12MutationSyncVyAD8AnyModelVGSgGSS_SSAD016AWSAuthorizationL0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE5query9modelName4byId8authTypeACyAD12MutationSyncVyAD8AnyModelVGSgGSS_SSAD016AWSAuthorizationL0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMutation", + "printedName": "createMutation(of:version:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE14createMutation2of7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0N0_p_SiSgAD016AWSAuthorizationK0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE14createMutation2of7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0N0_p_SiSgAD016AWSAuthorizationK0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateMutation", + "printedName": "updateMutation(of:where:version:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.GraphQLFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE14updateMutation2of5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0O0_p_SDySSypGSgSiSgAD016AWSAuthorizationL0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE14updateMutation2of5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0O0_p_SDySSypGSgSiSgAD016AWSAuthorizationL0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscription", + "printedName": "subscription(to:subscriptionType:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0M0_pXp_AA0b14QLSubscriptionH0OAD016AWSAuthorizationH0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0M0_pXp_AA0b14QLSubscriptionH0OAD016AWSAuthorizationH0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscription", + "printedName": "subscription(to:subscriptionType:claims:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "IdentityClaimsDictionary", + "printedName": "AWSPluginsCore.IdentityClaimsDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type6claims04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0N0_pXp_AA0b14QLSubscriptionH0OSDySSyXlGAD016AWSAuthorizationH0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type6claims04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0N0_pXp_AA0b14QLSubscriptionH0OSDySSyXlGAD016AWSAuthorizationH0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncQuery", + "printedName": "syncQuery(modelType:where:limit:nextToken:lastSync:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SyncQueryResult", + "printedName": "AWSPluginsCore.SyncQueryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginatedList", + "printedName": "AWSPluginsCore.PaginatedList", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore13PaginatedListV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE9syncQuery9modelType5where5limit9nextToken8lastSync04authI0ACyAD13PaginatedListVyAD8AnyModelVGGAA0T0_pXp_AA0G9Predicate_pSgSiSgSSSgs5Int64VSgAD016AWSAuthorizationI0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE9syncQuery9modelType5where5limit9nextToken8lastSync04authI0ACyAD13PaginatedListVyAD8AnyModelVGGAA0T0_pXp_AA0G9Predicate_pSgSiSgSSSgs5Int64VSgAD016AWSAuthorizationI0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMutation", + "printedName": "createMutation(of:modelSchema:version:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE14createMutation2of11modelSchema7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0P0_p_AA0pJ0VSiSgAD016AWSAuthorizationM0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE14createMutation2of11modelSchema7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0P0_p_AA0pJ0VSiSgAD016AWSAuthorizationM0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateMutation", + "printedName": "updateMutation(of:modelSchema:where:version:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.GraphQLFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE14updateMutation2of11modelSchema5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0Q0_p_AA0qJ0VSDySSypGSgSiSgAD016AWSAuthorizationN0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE14updateMutation2of11modelSchema5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0Q0_p_AA0qJ0VSDySSypGSgSiSgAD016AWSAuthorizationN0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteMutation", + "printedName": "deleteMutation(of:modelSchema:where:version:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.GraphQLFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE14deleteMutation2of11modelSchema5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0Q0_p_AA0qJ0VSDySSypGSgSiSgAD016AWSAuthorizationN0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE14deleteMutation2of11modelSchema5where7version8authTypeACyAD0G4SyncVyAD8AnyModelVGGAA0Q0_p_AA0qJ0VSDySSypGSgSiSgAD016AWSAuthorizationN0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscription", + "printedName": "subscription(to:subscriptionType:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0M6SchemaV_AA0b14QLSubscriptionH0OAD016AWSAuthorizationH0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0M6SchemaV_AA0b14QLSubscriptionH0OAD016AWSAuthorizationH0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscription", + "printedName": "subscription(to:subscriptionType:claims:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "MutationSyncResult", + "printedName": "AWSPluginsCore.MutationSyncResult", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationSync", + "printedName": "AWSPluginsCore.MutationSync", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore12MutationSyncV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "IdentityClaimsDictionary", + "printedName": "AWSPluginsCore.IdentityClaimsDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.AnyObject]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyObject", + "printedName": "Swift.AnyObject" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type6claims04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0N6SchemaV_AA0b14QLSubscriptionH0OSDySSyXlGAD016AWSAuthorizationH0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2to0F4Type6claims04authH0ACyAD12MutationSyncVyAD8AnyModelVGGAA0N6SchemaV_AA0b14QLSubscriptionH0OSDySSyXlGAD016AWSAuthorizationH0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncQuery", + "printedName": "syncQuery(modelSchema:where:limit:nextToken:lastSync:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SyncQueryResult", + "printedName": "AWSPluginsCore.SyncQueryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "PaginatedList", + "printedName": "AWSPluginsCore.PaginatedList", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModel", + "printedName": "AWSPluginsCore.AnyModel", + "usr": "s:14AWSPluginsCore8AnyModelV" + } + ], + "usr": "s:14AWSPluginsCore13PaginatedListV" + } + ] + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE9syncQuery11modelSchema5where5limit9nextToken8lastSync8authTypeACyAD13PaginatedListVyAD8AnyModelVGGAA0uI0V_AA0G9Predicate_pSgSiSgSSSgs5Int64VSgAD016AWSAuthorizationQ0OSgtFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE9syncQuery11modelSchema5where5limit9nextToken8lastSync8authTypeACyAD13PaginatedListVyAD8AnyModelVGGAA0uI0V_AA0G9Predicate_pSgSiSgSSSgs5Int64VSgAD016AWSAuthorizationQ0OSgtFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(_:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6create_8includes8authModeACyqd__Gqd___SayAA21PropertyContainerPath_pGAA05ModelL0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6create_8includes8authModeACyqd__Gqd___SayAA21PropertyContainerPath_pGAA05ModelL0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(_:where:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6update_5where8includes8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0P0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6update_5where8includes8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0P0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6delete_5where8includes8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0P0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6delete_5where8includes8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0P0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(_:modelSchema:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6create_11modelSchema8includes8authModeACyqd__Gqd___AA05ModelH0VSayAA21PropertyContainerPath_pGAA0lO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0L0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6create_11modelSchema8includes8authModeACyqd__Gqd___AA05ModelH0VSayAA21PropertyContainerPath_pGAA0lO0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0L0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(_:modelSchema:where:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6update_11modelSchema5where8includes8authModeACyqd__Gqd___AA05ModelH0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0mR0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6update_11modelSchema5where8includes8authModeACyqd__Gqd___AA05ModelH0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0mR0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:modelSchema:where:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE6delete_11modelSchema5where8includes8authModeACyqd__Gqd___AA05ModelH0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0mR0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE6delete_11modelSchema5where8includes8authModeACyqd__Gqd___AA05ModelH0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0mR0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0M0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mutation", + "printedName": "mutation(of:where:includes:type:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE8mutation2of5where8includes4type8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelQ0Cyqd__GXEAA0B14QLMutationTypeOAD016AWSAuthorizationT0OSgtAA0R0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE8mutation2of5where8includes4type8authModeACyqd__Gqd___AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelQ0Cyqd__GXEAA0B14QLMutationTypeOAD016AWSAuthorizationT0OSgtAA0R0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mutation", + "printedName": "mutation(of:modelSchema:where:includes:type:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE8mutation2of11modelSchema5where8includes4type8authModeACyqd__Gqd___AA05ModelI0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0oT0Cyqd__GXEAA0B14QLMutationTypeOAD016AWSAuthorizationV0OSgtAA0O0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE8mutation2of11modelSchema5where8includes4type8authModeACyqd__Gqd___AA05ModelI0VAA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA0oT0Cyqd__GXEAA0B14QLMutationTypeOAD016AWSAuthorizationV0OSgtAA0O0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(_:byId:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_4byId8includes8authModeACyqd__SgGqd__m_SSSayAA21PropertyContainerPath_pGAA05ModelN0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0O0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_4byId8includes8authModeACyqd__SgGqd__m_SSSayAA21PropertyContainerPath_pGAA05ModelN0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0O0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(_:byIdentifier:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_12byIdentifier8includes8authModeACyqd__SgGqd__m_SSSayAA21PropertyContainerPath_pGAA05ModelN0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0O0Rd__AA0O12IdentifiableRd__AA0oH6FormatO7DefaultO0hS0AaTPRtd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_12byIdentifier8includes8authModeACyqd__SgGqd__m_SSSayAA21PropertyContainerPath_pGAA05ModelN0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0O0Rd__AA0O12IdentifiableRd__AA0oH6FormatO7DefaultO0hS0AaTPRtd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(_:byIdentifier:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_12byIdentifier8includes8authModeACyqd__SgGqd__m_AA05ModelH0Vyqd__0H6FormatAA0L12IdentifiablePQyd__GSayAA21PropertyContainerPath_pGAA0lQ0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0L0Rd__AaNRd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE3get_12byIdentifier8includes8authModeACyqd__SgGqd__m_AA05ModelH0Vyqd__0H6FormatAA0L12IdentifiablePQyd__GSayAA21PropertyContainerPath_pGAA0lQ0Cyqd__GXEAD20AWSAuthorizationTypeOSgtAA0L0Rd__AaNRd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "list", + "printedName": "list(_:where:includes:limit:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE4list_5where8includes5limit8authModeACyAA4ListCyqd__GGqd__m_AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelQ0Cyqd__GXESiSgAD20AWSAuthorizationTypeOSgtAA0R0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE4list_5where8includes5limit8authModeACyAA4ListCyqd__GGqd__m_AA14QueryPredicate_pSgSayAA21PropertyContainerPath_pGAA05ModelQ0Cyqd__GXESiSgAD20AWSAuthorizationTypeOSgtAA0R0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscription", + "printedName": "subscription(of:type:includes:authMode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelPath) -> [Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.PropertyContainerPath]", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelPath)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "usr": "s:7Amplify9ModelPathC" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AWSPluginsCore.AWSAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2of4type8includes8authModeACyqd__Gqd__m_AA0B18QLSubscriptionTypeOSayAA21PropertyContainerPath_pGAA05ModelP0Cyqd__GXEAD016AWSAuthorizationM0OSgtAA0Q0Rd__lFZ", + "mangledName": "$s7Amplify14GraphQLRequestV14AWSPluginsCoreE12subscription2of4type8includes8authModeACyqd__Gqd__m_AA0B18QLSubscriptionTypeOSayAA21PropertyContainerPath_pGAA05ModelP0Cyqd__GXEAD016AWSAuthorizationM0OSgtAA0Q0Rd__lFZ", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify14GraphQLRequestV", + "mangledName": "$s7Amplify14GraphQLRequestV", + "moduleName": "Amplify", + "genericSig": "", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "AuthRuleProvider", + "printedName": "AuthRuleProvider", + "children": [ + { + "kind": "Function", + "name": "toAWSAuthorizationType", + "printedName": "toAWSAuthorizationType()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAuthorizationType", + "printedName": "AWSPluginsCore.AWSAuthorizationType", + "usr": "s:14AWSPluginsCore20AWSAuthorizationTypeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AuthRuleProviderO14AWSPluginsCoreE22toAWSAuthorizationTypeAD0hI0OyF", + "mangledName": "$s7Amplify16AuthRuleProviderO14AWSPluginsCoreE22toAWSAuthorizationTypeAD0hI0OyF", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify16AuthRuleProviderO", + "mangledName": "$s7Amplify16AuthRuleProviderO", + "moduleName": "Amplify", + "isExternal": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Int", + "printedName": "Int", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Si14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$sSi14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Si14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$sSi14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Si14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$sSi14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Si14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$sSi14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Swift.Int.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Swift.Int.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Swift.Int.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SIMDMaskScalar", + "printedName": "Swift.Int.SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Int64", + "printedName": "Int64", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:s5Int64V14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$ss5Int64V14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:s5Int64V14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$ss5Int64V14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:s5Int64V14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$ss5Int64V14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:s5Int64V14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$ss5Int64V14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:s5Int64V", + "mangledName": "$ss5Int64V", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int64.Words", + "usr": "s:s5Int64V5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Swift.Int64.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Swift.Int64.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Swift.Int64.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SIMDMaskScalar", + "printedName": "Swift.Int64.SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Int64.SIMD2Storage", + "usr": "s:s5Int64V12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Int64.SIMD4Storage", + "usr": "s:s5Int64V12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Int64.SIMD8Storage", + "usr": "s:s5Int64V12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Int64.SIMD16Storage", + "usr": "s:s5Int64V13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Int64.SIMD32Storage", + "usr": "s:s5Int64V13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Int64.SIMD64Storage", + "usr": "s:s5Int64V13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$sSS14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:SS14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$sSS14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$sSS14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:SS14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$sSS14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StringLiteralType", + "printedName": "Swift.String.StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "Swift.String.ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "UnicodeScalarLiteralType", + "printedName": "Swift.String.UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.String.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.String.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StringInterpolation", + "printedName": "Swift.String.StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Representation", + "printedName": "Swift.String.Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bool", + "printedName": "Bool", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Sb14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$sSb14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Sb14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$sSb14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Sb14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$sSb14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Sb14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$sSb14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Sb", + "mangledName": "$sSb", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "BooleanLiteralType", + "printedName": "Swift.Bool.BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Decimal", + "printedName": "Decimal", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:So9NSDecimala14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$sSo9NSDecimala14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:So9NSDecimala14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$sSo9NSDecimala14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:So9NSDecimala14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$sSo9NSDecimala14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:So9NSDecimala14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$sSo9NSDecimala14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@SA@NSDecimal", + "location": "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk\/System\/Library\/Frameworks\/Foundation.framework\/Headers\/NSDecimal.h:42:9", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "NonSendable", + "Sendable" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "FloatLiteralType", + "printedName": "Foundation.Decimal.FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Foundation.Decimal.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Foundation.Decimal.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Decimal", + "printedName": "Foundation.Decimal", + "usr": "c:@SA@NSDecimal" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Foundation.Decimal.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Decimal", + "printedName": "Foundation.Decimal", + "usr": "c:@SA@NSDecimal" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Var", + "name": "graphQLDocumentValue", + "printedName": "graphQLDocumentValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Sd14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "mangledName": "$sSd14AWSPluginsCoreE20graphQLDocumentValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Sd14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "mangledName": "$sSd14AWSPluginsCoreE20graphQLDocumentValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLInlineValue", + "printedName": "graphQLInlineValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Sd14AWSPluginsCoreE18graphQLInlineValueSSvp", + "mangledName": "$sSd14AWSPluginsCoreE18graphQLInlineValueSSvp", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Sd14AWSPluginsCoreE18graphQLInlineValueSSvg", + "mangledName": "$sSd14AWSPluginsCoreE18graphQLInlineValueSSvg", + "moduleName": "AWSPluginsCore", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "GraphQLDocumentValueRepresentable", + "printedName": "GraphQLDocumentValueRepresentable", + "usr": "s:14AWSPluginsCore33GraphQLDocumentValueRepresentableP", + "mangledName": "$s14AWSPluginsCore33GraphQLDocumentValueRepresentableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RawSignificand", + "printedName": "Swift.Double.RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RawExponent", + "printedName": "Swift.Double.RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "FloatLiteralType", + "printedName": "Swift.Double.FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Exponent", + "printedName": "Swift.Double.Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Swift.Double.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Swift.Double.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Swift.Double.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SIMDMaskScalar", + "printedName": "Swift.Double.SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnimatableData", + "printedName": "Swift.Double.AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "children": [ + { + "kind": "Function", + "name": "graphQLFilter", + "printedName": "graphQLFilter(for:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilter3forSDySSypGAA11ModelSchemaVSg_tF", + "mangledName": "$s7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilter3forSDySSypGAA11ModelSchemaVSg_tF", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "graphQLFilter", + "printedName": "graphQLFilter", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilterSDySSypGvp", + "mangledName": "$s7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilterSDySSypGvp", + "moduleName": "AWSPluginsCore", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLFilter", + "printedName": "AWSPluginsCore.GraphQLFilter", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilterSDySSypGvg", + "mangledName": "$s7Amplify14QueryPredicateP14AWSPluginsCoreE13graphQLFilterSDySSypGvg", + "moduleName": "AWSPluginsCore", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP", + "moduleName": "Amplify", + "genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateConstant", + "printedName": "QueryPredicateConstant", + "declKind": "Enum", + "usr": "s:7Amplify22QueryPredicateConstantO", + "mangledName": "$s7Amplify22QueryPredicateConstantO", + "moduleName": "Amplify", + "isExternal": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateOperation", + "printedName": "QueryPredicateOperation", + "declKind": "Class", + "usr": "s:7Amplify23QueryPredicateOperationC", + "mangledName": "$s7Amplify23QueryPredicateOperationC", + "moduleName": "Amplify", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateGroup", + "printedName": "QueryPredicateGroup", + "declKind": "Class", + "usr": "s:7Amplify19QueryPredicateGroupC", + "mangledName": "$s7Amplify19QueryPredicateGroupC", + "moduleName": "Amplify", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "AWSPluginsCore", + "-o", + "\/var\/folders\/xz\/lz5thm6s3vb1vdkk77vmkgbr0000gn\/T\/tmp.bR6aszViJ0\/AWSPluginsCore.json", + "-I", + ".build\/debug", + "-sdk-version", + "23A334" + ] + } +} \ No newline at end of file diff --git a/api-dump/Amplify.json b/api-dump/Amplify.json new file mode 100644 index 0000000000..1e06d215a8 --- /dev/null +++ b/api-dump/Amplify.json @@ -0,0 +1,179359 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "AppKit", + "printedName": "AppKit", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "Combine", + "printedName": "Combine", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "CoreGraphics", + "printedName": "CoreGraphics", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "CoreLocation", + "printedName": "CoreLocation", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "IOKit", + "printedName": "IOKit", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "SwiftOnoneSupport", + "printedName": "SwiftOnoneSupport", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "SwiftUI", + "printedName": "SwiftUI", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "_Concurrency", + "printedName": "_Concurrency", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "_StringProcessing", + "printedName": "_StringProcessing", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "_SwiftConcurrencyShims", + "printedName": "_SwiftConcurrencyShims", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "os.log", + "printedName": "os.log", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "Import", + "name": "os", + "printedName": "os", + "declKind": "Import", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Amplify", + "printedName": "Amplify", + "children": [ + { + "kind": "Var", + "name": "Analytics", + "printedName": "Analytics", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategory", + "printedName": "Amplify.AnalyticsCategory", + "usr": "s:7Amplify17AnalyticsCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC9AnalyticsAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC9AnalyticsAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategory", + "printedName": "Amplify.AnalyticsCategory", + "usr": "s:7Amplify17AnalyticsCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC9AnalyticsAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC9AnalyticsAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "API", + "printedName": "API", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategory", + "printedName": "Amplify.APICategory", + "usr": "s:7Amplify11APICategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC3APIAA11APICategoryCvpZ", + "mangledName": "$s7AmplifyAAC3APIAA11APICategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategory", + "printedName": "Amplify.APICategory", + "usr": "s:7Amplify11APICategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC3APIAA11APICategoryCvgZ", + "mangledName": "$s7AmplifyAAC3APIAA11APICategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Auth", + "printedName": "Auth", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategory", + "printedName": "Amplify.AuthCategory", + "usr": "s:7Amplify12AuthCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC4AuthAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC4AuthAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategory", + "printedName": "Amplify.AuthCategory", + "usr": "s:7Amplify12AuthCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC4AuthAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC4AuthAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "DataStore", + "printedName": "DataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategory", + "printedName": "Amplify.DataStoreCategory", + "usr": "s:7Amplify17DataStoreCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC9DataStoreAA0bC8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC9DataStoreAA0bC8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategory", + "printedName": "Amplify.DataStoreCategory", + "usr": "s:7Amplify17DataStoreCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC9DataStoreAA0bC8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC9DataStoreAA0bC8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Geo", + "printedName": "Geo", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategory", + "printedName": "Amplify.GeoCategory", + "usr": "s:7Amplify11GeoCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC3GeoAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC3GeoAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategory", + "printedName": "Amplify.GeoCategory", + "usr": "s:7Amplify11GeoCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC3GeoAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC3GeoAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Hub", + "printedName": "Hub", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategory", + "printedName": "Amplify.HubCategory", + "usr": "s:7Amplify11HubCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC3HubAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC3HubAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategory", + "printedName": "Amplify.HubCategory", + "usr": "s:7Amplify11HubCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC3HubAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC3HubAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Notifications", + "printedName": "Notifications", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationsCategory", + "printedName": "Amplify.NotificationsCategory", + "usr": "s:7Amplify21NotificationsCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC13NotificationsAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC13NotificationsAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationsCategory", + "printedName": "Amplify.NotificationsCategory", + "usr": "s:7Amplify21NotificationsCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC13NotificationsAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC13NotificationsAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Predictions", + "printedName": "Predictions", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategory", + "printedName": "Amplify.PredictionsCategory", + "usr": "s:7Amplify19PredictionsCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC11PredictionsAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC11PredictionsAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategory", + "printedName": "Amplify.PredictionsCategory", + "usr": "s:7Amplify19PredictionsCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC11PredictionsAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC11PredictionsAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Storage", + "printedName": "Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategory", + "printedName": "Amplify.StorageCategory", + "usr": "s:7Amplify15StorageCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC7StorageAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC7StorageAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategory", + "printedName": "Amplify.StorageCategory", + "usr": "s:7Amplify15StorageCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC7StorageAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC7StorageAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "Logging", + "printedName": "Logging", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategory", + "printedName": "Amplify.LoggingCategory", + "usr": "s:7Amplify15LoggingCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC7LoggingAA0B8CategoryCvpZ", + "mangledName": "$s7AmplifyAAC7LoggingAA0B8CategoryCvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final", + "SetterAccess" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategory", + "printedName": "Amplify.LoggingCategory", + "usr": "s:7Amplify15LoggingCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC7LoggingAA0B8CategoryCvgZ", + "mangledName": "$s7AmplifyAAC7LoggingAA0B8CategoryCvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "P" + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC3add6pluginyx_tKAA6PluginRzlFZ", + "mangledName": "$s7AmplifyAAC3add6pluginyx_tKAA6PluginRzlFZ", + "moduleName": "Amplify", + "genericSig": "

", + "static": true, + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC3logAA6Logger_pvpZ", + "mangledName": "$s7AmplifyAAC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC3logAA6Logger_pvgZ", + "mangledName": "$s7AmplifyAAC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC3logAA6Logger_pvp", + "mangledName": "$s7AmplifyAAC3logAA6Logger_pvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC3logAA6Logger_pvg", + "mangledName": "$s7AmplifyAAC3logAA6Logger_pvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LogLevel", + "printedName": "LogLevel", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO4noneyA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO4noneyA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO5erroryA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO5erroryA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO4warnyA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO4warnyA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO4infoyA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO4infoyA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO5debugyA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO5debugyA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "verbose", + "printedName": "verbose", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Amplify.LogLevel.Type) -> Amplify.Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Amplify.LogLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Amplify.LogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7AmplifyAAC8LogLevelO7verboseyA2DmF", + "mangledName": "$s7AmplifyAAC8LogLevelO7verboseyA2DmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7AmplifyAAC8LogLevelO4fromADs7Decoder_p_tKcfc", + "mangledName": "$s7AmplifyAAC8LogLevelO4fromADs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Amplify.LogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:7AmplifyAAC8LogLevelO8rawValueADSgSi_tcfc", + "mangledName": "$s7AmplifyAAC8LogLevelO8rawValueADSgSi_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "TypeAlias", + "usr": "s:7AmplifyAAC8LogLevelO8RawValuea", + "mangledName": "$s7AmplifyAAC8LogLevelO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7AmplifyAAC8LogLevelO8rawValueSivp", + "mangledName": "$s7AmplifyAAC8LogLevelO8rawValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7AmplifyAAC8LogLevelO8rawValueSivg", + "mangledName": "$s7AmplifyAAC8LogLevelO8rawValueSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC8LogLevelO1loiySbAD_ADtFZ", + "mangledName": "$s7AmplifyAAC8LogLevelO1loiySbAD_ADtFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7AmplifyAAC8LogLevelO", + "mangledName": "$s7AmplifyAAC8LogLevelO", + "moduleName": "Amplify", + "isFromExtension": true, + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyConfiguration", + "printedName": "Amplify.AmplifyConfiguration", + "usr": "s:7Amplify0A13ConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9configureyyAA0A13ConfigurationVSgKFZ", + "mangledName": "$s7AmplifyAAC9configureyyAA0A13ConfigurationVSgKFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AmplifyOutputs", + "printedName": "Amplify.AmplifyOutputs", + "usr": "s:7Amplify0A7OutputsV" + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9configure4withyAA0A7OutputsV_tKFZ", + "mangledName": "$s7AmplifyAAC9configure4withyAA0A7OutputsV_tKFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AmplifyOutputsData", + "printedName": "Amplify.AmplifyOutputsData", + "usr": "s:7Amplify0A11OutputsDataV" + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9configureyyAA0A11OutputsDataVKFZ", + "mangledName": "$s7AmplifyAAC9configureyyAA0A11OutputsDataVKFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final", + "SPIAccessControl" + ], + "isFromExtension": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Publisher", + "printedName": "Publisher", + "children": [ + { + "kind": "Function", + "name": "create", + "printedName": "create(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:7Combine12AnyPublisherV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vyxs5Error_pGxyYaYbKclFZ", + "mangledName": "$s7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vyxs5Error_pGxyYaYbKclFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async -> Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vyxs5NeverOGxyYaYbclFZ", + "mangledName": "$s7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vyxs5NeverOGxyYaYbclFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "create", + "printedName": "create(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Sequence.Element" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:7Combine12AnyPublisherV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Sequence" + } + ], + "declKind": "Func", + "usr": "s:7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vy7ElementQzs5Error_pGxSciRzlFZ", + "mangledName": "$s7AmplifyAAC9PublisherO6createy7Combine03AnyB0Vy7ElementQzs5Error_pGxSciRzlFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7AmplifyAAC9PublisherO", + "mangledName": "$s7AmplifyAAC9PublisherO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + } + ], + "declKind": "Class", + "usr": "s:7AmplifyAAC", + "mangledName": "$s7AmplifyAAC", + "moduleName": "Amplify", + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "APICategory", + "printedName": "APICategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11APICategoryC12categoryTypeAA08CategoryD0Ovp", + "mangledName": "$s7Amplify11APICategoryC12categoryTypeAA08CategoryD0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11APICategoryC12categoryTypeAA08CategoryD0Ovg", + "mangledName": "$s7Amplify11APICategoryC12categoryTypeAA08CategoryD0Ovg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isConfigured", + "printedName": "isConfigured", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11APICategoryC12isConfiguredSbvp", + "mangledName": "$s7Amplify11APICategoryC12isConfiguredSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11APICategoryC12isConfiguredSbvg", + "mangledName": "$s7Amplify11APICategoryC12isConfiguredSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11APICategoryC12isConfiguredSbvs", + "mangledName": "$s7Amplify11APICategoryC12isConfiguredSbvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "APICategoryPlugin", + "printedName": "Amplify.APICategoryPlugin", + "usr": "s:7Amplify17APICategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC3add6pluginyAA0B6Plugin_p_tKF", + "mangledName": "$s7Amplify11APICategoryC3add6pluginyAA0B6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategoryPlugin", + "printedName": "Amplify.APICategoryPlugin", + "usr": "s:7Amplify17APICategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC9getPlugin3forAA0bD0_pSS_tKF", + "mangledName": "$s7Amplify11APICategoryC9getPlugin3forAA0bD0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify11APICategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11APICategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify11APICategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11APICategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify11APICategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11APICategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify11APICategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11APICategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify11APICategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "apiAuthProviderFactory", + "printedName": "apiAuthProviderFactory()", + "children": [ + { + "kind": "TypeNominal", + "name": "APIAuthProviderFactory", + "printedName": "Amplify.APIAuthProviderFactory", + "usr": "s:7Amplify22APIAuthProviderFactoryC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC22apiAuthProviderFactoryAA07APIAutheF0CyF", + "mangledName": "$s7Amplify11APICategoryC22apiAuthProviderFactoryAA07APIAutheF0CyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC5query7requests6ResultOyxAA20GraphQLResponseErrorOyxGGAA0F9QLRequestVyxG_tYaKSeRzlF", + "mangledName": "$s7Amplify11APICategoryC5query7requests6ResultOyxAA20GraphQLResponseErrorOyxGGAA0F9QLRequestVyxG_tYaKSeRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mutate", + "printedName": "mutate(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC6mutate7requests6ResultOyxAA20GraphQLResponseErrorOyxGGAA0F9QLRequestVyxG_tYaKSeRzlF", + "mangledName": "$s7Amplify11APICategoryC6mutate7requests6ResultOyxAA20GraphQLResponseErrorOyxGGAA0F9QLRequestVyxG_tYaKSeRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence>", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC9subscribe7requestAA0A21AsyncThrowingSequenceCyAA24GraphQLSubscriptionEventOyxGGAA0H9QLRequestVyxG_tSeRzlF", + "mangledName": "$s7Amplify11APICategoryC9subscribe7requestAA0A21AsyncThrowingSequenceCyAA24GraphQLSubscriptionEventOyxGGAA0H9QLRequestVyxG_tSeRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(interceptor:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequestInterceptor", + "printedName": "Amplify.URLRequestInterceptor", + "usr": "s:7Amplify21URLRequestInterceptorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC3add11interceptor3foryAA21URLRequestInterceptor_p_SStKF", + "mangledName": "$s7Amplify11APICategoryC3add11interceptor3foryAA21URLRequestInterceptor_p_SStKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC3get7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC3get7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC3put7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC3put7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "post", + "printedName": "post(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC4post7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC4post7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC6delete7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC6delete7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "head", + "printedName": "head(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC4head7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC4head7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "patch", + "printedName": "patch(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC5patch7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify11APICategoryC5patch7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reachabilityPublisher", + "printedName": "reachabilityPublisher(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Combine.AnyPublisher?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityUpdate", + "printedName": "Amplify.ReachabilityUpdate", + "usr": "s:7Amplify18ReachabilityUpdateV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC21reachabilityPublisher3for7Combine03AnyD0VyAA18ReachabilityUpdateVs5NeverOGSgSSSg_tKF", + "mangledName": "$s7Amplify11APICategoryC21reachabilityPublisher3for7Combine03AnyD0VyAA18ReachabilityUpdateVs5NeverOGSgSSSg_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reachabilityPublisher", + "printedName": "reachabilityPublisher()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Combine.AnyPublisher?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityUpdate", + "printedName": "Amplify.ReachabilityUpdate", + "usr": "s:7Amplify18ReachabilityUpdateV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC21reachabilityPublisher7Combine03AnyD0VyAA18ReachabilityUpdateVs5NeverOGSgyKF", + "mangledName": "$s7Amplify11APICategoryC21reachabilityPublisher7Combine03AnyD0VyAA18ReachabilityUpdateVs5NeverOGSgyKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11APICategoryC5resetyyYaF", + "mangledName": "$s7Amplify11APICategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify11APICategoryC", + "mangledName": "$s7Amplify11APICategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "APICategoryAuthProviderFactoryBehavior", + "printedName": "APICategoryAuthProviderFactoryBehavior", + "usr": "s:7Amplify38APICategoryAuthProviderFactoryBehaviorP", + "mangledName": "$s7Amplify38APICategoryAuthProviderFactoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryGraphQLBehavior", + "printedName": "APICategoryGraphQLBehavior", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryInterceptorBehavior", + "printedName": "APICategoryInterceptorBehavior", + "usr": "s:7Amplify30APICategoryInterceptorBehaviorP", + "mangledName": "$s7Amplify30APICategoryInterceptorBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryRESTBehavior", + "printedName": "APICategoryRESTBehavior", + "usr": "s:7Amplify23APICategoryRESTBehaviorP", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryReachabilityBehavior", + "printedName": "APICategoryReachabilityBehavior", + "usr": "s:7Amplify31APICategoryReachabilityBehaviorP", + "mangledName": "$s7Amplify31APICategoryReachabilityBehaviorP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "APICategoryConfiguration", + "printedName": "APICategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24APICategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify24APICategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24APICategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify24APICategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategoryConfiguration", + "printedName": "Amplify.APICategoryConfiguration", + "usr": "s:7Amplify24APICategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24APICategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify24APICategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24APICategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify24APICategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategoryConfiguration", + "printedName": "Amplify.APICategoryConfiguration", + "usr": "s:7Amplify24APICategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24APICategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify24APICategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24APICategoryConfigurationV", + "mangledName": "$s7Amplify24APICategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "APICategoryPlugin", + "printedName": "APICategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17APICategoryPluginPAAE12categoryTypeAA08CategoryE0Ovp", + "mangledName": "$s7Amplify17APICategoryPluginPAAE12categoryTypeAA08CategoryE0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17APICategoryPluginPAAE12categoryTypeAA08CategoryE0Ovg", + "mangledName": "$s7Amplify17APICategoryPluginPAAE12categoryTypeAA08CategoryE0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17APICategoryPluginP", + "mangledName": "$s7Amplify17APICategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "APICategoryReachabilityBehavior", + "printedName": "APICategoryReachabilityBehavior", + "usr": "s:7Amplify31APICategoryReachabilityBehaviorP", + "mangledName": "$s7Amplify31APICategoryReachabilityBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryRESTBehavior", + "printedName": "APICategoryRESTBehavior", + "usr": "s:7Amplify23APICategoryRESTBehaviorP", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryInterceptorBehavior", + "printedName": "APICategoryInterceptorBehavior", + "usr": "s:7Amplify30APICategoryInterceptorBehaviorP", + "mangledName": "$s7Amplify30APICategoryInterceptorBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryGraphQLBehavior", + "printedName": "APICategoryGraphQLBehavior", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP" + }, + { + "kind": "Conformance", + "name": "APICategoryAuthProviderFactoryBehavior", + "printedName": "APICategoryAuthProviderFactoryBehavior", + "usr": "s:7Amplify38APICategoryAuthProviderFactoryBehaviorP", + "mangledName": "$s7Amplify38APICategoryAuthProviderFactoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "APIAuthProviderFactory", + "printedName": "APIAuthProviderFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "APIAuthProviderFactory", + "printedName": "Amplify.APIAuthProviderFactory", + "usr": "s:7Amplify22APIAuthProviderFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22APIAuthProviderFactoryCACycfc", + "mangledName": "$s7Amplify22APIAuthProviderFactoryCACycfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "oidcAuthProvider", + "printedName": "oidcAuthProvider()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOIDCAuthProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOIDCAuthProvider", + "printedName": "Amplify.AmplifyOIDCAuthProvider", + "usr": "s:7Amplify0A16OIDCAuthProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22APIAuthProviderFactoryC08oidcAuthC0AA0a8OIDCAuthC0_pSgyF", + "mangledName": "$s7Amplify22APIAuthProviderFactoryC08oidcAuthC0AA0a8OIDCAuthC0_pSgyF", + "moduleName": "Amplify", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "functionAuthProvider", + "printedName": "functionAuthProvider()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyFunctionAuthProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyFunctionAuthProvider", + "printedName": "Amplify.AmplifyFunctionAuthProvider", + "usr": "s:7Amplify0A20FunctionAuthProviderP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22APIAuthProviderFactoryC012functionAuthC0AA0a8FunctionfC0_pSgyF", + "mangledName": "$s7Amplify22APIAuthProviderFactoryC012functionAuthC0AA0a8FunctionfC0_pSgyF", + "moduleName": "Amplify", + "isOpen": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify22APIAuthProviderFactoryC", + "mangledName": "$s7Amplify22APIAuthProviderFactoryC", + "moduleName": "Amplify", + "isOpen": true + }, + { + "kind": "TypeDecl", + "name": "AmplifyAuthTokenProvider", + "printedName": "AmplifyAuthTokenProvider", + "children": [ + { + "kind": "TypeAlias", + "name": "AuthToken", + "printedName": "AuthToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A17AuthTokenProviderP0bC0a", + "mangledName": "$s7Amplify0A17AuthTokenProviderP0bC0a", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Function", + "name": "getLatestAuthToken", + "printedName": "getLatestAuthToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A17AuthTokenProviderP09getLatestbC0SSyYaKF", + "mangledName": "$s7Amplify0A17AuthTokenProviderP09getLatestbC0SSyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A17AuthTokenProviderP", + "mangledName": "$s7Amplify0A17AuthTokenProviderP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AmplifyOIDCAuthProvider", + "printedName": "AmplifyOIDCAuthProvider", + "declKind": "Protocol", + "usr": "s:7Amplify0A16OIDCAuthProviderP", + "mangledName": "$s7Amplify0A16OIDCAuthProviderP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyAuthTokenProvider", + "printedName": "AmplifyAuthTokenProvider", + "usr": "s:7Amplify0A17AuthTokenProviderP", + "mangledName": "$s7Amplify0A17AuthTokenProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyFunctionAuthProvider", + "printedName": "AmplifyFunctionAuthProvider", + "declKind": "Protocol", + "usr": "s:7Amplify0A20FunctionAuthProviderP", + "mangledName": "$s7Amplify0A20FunctionAuthProviderP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyAuthTokenProvider", + "printedName": "AmplifyAuthTokenProvider", + "usr": "s:7Amplify0A17AuthTokenProviderP", + "mangledName": "$s7Amplify0A17AuthTokenProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "APICategoryAuthProviderFactoryBehavior", + "printedName": "APICategoryAuthProviderFactoryBehavior", + "children": [ + { + "kind": "Function", + "name": "apiAuthProviderFactory", + "printedName": "apiAuthProviderFactory()", + "children": [ + { + "kind": "TypeNominal", + "name": "APIAuthProviderFactory", + "printedName": "Amplify.APIAuthProviderFactory", + "usr": "s:7Amplify22APIAuthProviderFactoryC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify38APICategoryAuthProviderFactoryBehaviorP03apicdE0AA07APIAuthdE0CyF", + "mangledName": "$s7Amplify38APICategoryAuthProviderFactoryBehaviorP03apicdE0AA07APIAuthdE0CyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify38APICategoryAuthProviderFactoryBehaviorP", + "mangledName": "$s7Amplify38APICategoryAuthProviderFactoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "APICategoryBehavior", + "printedName": "APICategoryBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Amplify.APICategoryAuthProviderFactoryBehavior & Amplify.APICategoryGraphQLBehavior & Amplify.APICategoryInterceptorBehavior & Amplify.APICategoryRESTBehavior & Amplify.APICategoryReachabilityBehavior" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify19APICategoryBehaviora", + "mangledName": "$s7Amplify19APICategoryBehaviora", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "APICategoryGraphQLBehavior", + "printedName": "APICategoryGraphQLBehavior", + "children": [ + { + "kind": "Function", + "name": "query", + "printedName": "query(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP5query7requests6ResultOyqd__AA0C15QLResponseErrorOyqd__GGAA0C9QLRequestVyqd__G_tYaKSeRd__lF", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP5query7requests6ResultOyqd__AA0C15QLResponseErrorOyqd__GGAA0C9QLRequestVyqd__G_tYaKSeRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mutate", + "printedName": "mutate(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP6mutate7requests6ResultOyqd__AA0C15QLResponseErrorOyqd__GGAA0C9QLRequestVyqd__G_tYaKSeRd__lF", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP6mutate7requests6ResultOyqd__AA0C15QLResponseErrorOyqd__GGAA0C9QLRequestVyqd__G_tYaKSeRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence>", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP9subscribe7requestAA0A21AsyncThrowingSequenceCyAA0C19QLSubscriptionEventOyqd__GGAA0C9QLRequestVyqd__G_tSeRd__lF", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP9subscribe7requestAA0A21AsyncThrowingSequenceCyAA0C19QLSubscriptionEventOyqd__GGAA0C9QLRequestVyqd__G_tSeRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify26APICategoryGraphQLBehaviorP", + "mangledName": "$s7Amplify26APICategoryGraphQLBehaviorP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "APICategoryInterceptorBehavior", + "printedName": "APICategoryInterceptorBehavior", + "children": [ + { + "kind": "Function", + "name": "add", + "printedName": "add(interceptor:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLRequestInterceptor", + "printedName": "Amplify.URLRequestInterceptor", + "usr": "s:7Amplify21URLRequestInterceptorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify30APICategoryInterceptorBehaviorP3add11interceptor3foryAA010URLRequestC0_p_SStKF", + "mangledName": "$s7Amplify30APICategoryInterceptorBehaviorP3add11interceptor3foryAA010URLRequestC0_p_SStKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify30APICategoryInterceptorBehaviorP", + "mangledName": "$s7Amplify30APICategoryInterceptorBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "APICategoryRESTBehavior", + "printedName": "APICategoryRESTBehavior", + "children": [ + { + "kind": "Function", + "name": "get", + "printedName": "get(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP3get7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP3get7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "put", + "printedName": "put(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP3put7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP3put7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "post", + "printedName": "post(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP4post7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP4post7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP6delete7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP6delete7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "head", + "printedName": "head(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP4head7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP4head7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "patch", + "printedName": "patch(request:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.RESTTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23APICategoryRESTBehaviorP5patch7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP5patch7request10Foundation4DataVAA11RESTRequestC_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23APICategoryRESTBehaviorP", + "mangledName": "$s7Amplify23APICategoryRESTBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "APICategoryReachabilityBehavior", + "printedName": "APICategoryReachabilityBehavior", + "children": [ + { + "kind": "Function", + "name": "reachabilityPublisher", + "printedName": "reachabilityPublisher(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Combine.AnyPublisher?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityUpdate", + "printedName": "Amplify.ReachabilityUpdate", + "usr": "s:7Amplify18ReachabilityUpdateV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify31APICategoryReachabilityBehaviorP21reachabilityPublisher3for7Combine03AnyF0VyAA0C6UpdateVs5NeverOGSgSSSg_tKF", + "mangledName": "$s7Amplify31APICategoryReachabilityBehaviorP21reachabilityPublisher3for7Combine03AnyF0VyAA0C6UpdateVs5NeverOGSgSSSg_tKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reachabilityPublisher", + "printedName": "reachabilityPublisher()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Combine.AnyPublisher?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityUpdate", + "printedName": "Amplify.ReachabilityUpdate", + "usr": "s:7Amplify18ReachabilityUpdateV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify31APICategoryReachabilityBehaviorP21reachabilityPublisher7Combine03AnyF0VyAA0C6UpdateVs5NeverOGSgyKF", + "mangledName": "$s7Amplify31APICategoryReachabilityBehaviorP21reachabilityPublisher7Combine03AnyF0VyAA0C6UpdateVs5NeverOGSgyKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify31APICategoryReachabilityBehaviorP", + "mangledName": "$s7Amplify31APICategoryReachabilityBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "APIError", + "printedName": "APIError", + "children": [ + { + "kind": "TypeAlias", + "name": "UserInfo", + "printedName": "UserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify8APIErrorO8UserInfoa", + "mangledName": "$s7Amplify8APIErrorO8UserInfoa", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "StatusCode", + "printedName": "StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify8APIErrorO10StatusCodea", + "mangledName": "$s7Amplify8APIErrorO10StatusCodea", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO7unknownyACSS_SSs5Error_pSgtcACmF", + "mangledName": "$s7Amplify8APIErrorO7unknownyACSS_SSs5Error_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidConfiguration", + "printedName": "invalidConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO20invalidConfigurationyACSS_SSs5Error_pSgtcACmF", + "mangledName": "$s7Amplify8APIErrorO20invalidConfigurationyACSS_SSs5Error_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidURL", + "printedName": "invalidURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO10invalidURLyACSS_SSs5Error_pSgtcACmF", + "mangledName": "$s7Amplify8APIErrorO10invalidURLyACSS_SSs5Error_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "operationError", + "printedName": "operationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO14operationErroryACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify8APIErrorO14operationErroryACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.ErrorDescription, Amplify.APIError.UserInfo?, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.APIError.UserInfo?, Swift.Error?) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.APIError.UserInfo?, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.APIError.UserInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "UserInfo", + "printedName": "Amplify.APIError.UserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO12networkErroryACSS_SDySSypGSgs0D0_pSgtcACmF", + "mangledName": "$s7Amplify8APIErrorO12networkErroryACSS_SDySSypGSgs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "httpStatusError", + "printedName": "httpStatusError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.APIError.StatusCode, Foundation.HTTPURLResponse) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.StatusCode, Foundation.HTTPURLResponse) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.APIError.StatusCode, Foundation.HTTPURLResponse)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StatusCode", + "printedName": "Amplify.APIError.StatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNominal", + "name": "HTTPURLResponse", + "printedName": "Foundation.HTTPURLResponse", + "usr": "c:objc(cs)NSHTTPURLResponse" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO15httpStatusErroryACSi_So17NSHTTPURLResponseCtcACmF", + "mangledName": "$s7Amplify8APIErrorO15httpStatusErroryACSi_So17NSHTTPURLResponseCtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "pluginError", + "printedName": "pluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.APIError.Type) -> (Amplify.AmplifyError) -> Amplify.APIError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Amplify.APIError", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.APIError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.APIError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8APIErrorO11pluginErroryAcA0aD0_pcACmF", + "mangledName": "$s7Amplify8APIErrorO11pluginErroryAcA0aD0_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8APIErrorO16errorDescription18recoverySuggestion0C0ACSS_SSs5Error_ptcfc", + "mangledName": "$s7Amplify8APIErrorO16errorDescription18recoverySuggestion0C0ACSS_SSs5Error_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify8APIErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify8APIErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8APIErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify8APIErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify8APIErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify8APIErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8APIErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify8APIErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8APIErrorO15underlyingErrors0D0_pSgvp", + "mangledName": "$s7Amplify8APIErrorO15underlyingErrors0D0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8APIErrorO15underlyingErrors0D0_pSgvg", + "mangledName": "$s7Amplify8APIErrorO15underlyingErrors0D0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify8APIErrorO", + "mangledName": "$s7Amplify8APIErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "URLRequestInterceptor", + "printedName": "URLRequestInterceptor", + "children": [ + { + "kind": "Function", + "name": "intercept", + "printedName": "intercept(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + }, + { + "kind": "TypeNominal", + "name": "URLRequest", + "printedName": "Foundation.URLRequest", + "usr": "s:10Foundation10URLRequestV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21URLRequestInterceptorP9intercepty10Foundation0B0VAGYaKF", + "mangledName": "$s7Amplify21URLRequestInterceptorP9intercepty10Foundation0B0VAGYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21URLRequestInterceptorP", + "mangledName": "$s7Amplify21URLRequestInterceptorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GraphQLOperation", + "printedName": "GraphQLOperation", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(categoryType:eventName:request:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperation", + "printedName": "Amplify.GraphQLOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify16GraphQLOperationC" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationRequest", + "printedName": "Amplify.GraphQLOperationRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify23GraphQLOperationRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOperation, Amplify.GraphQLResponse, Amplify.APIError>.ResultListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyOperation, Amplify.GraphQLResponse, Amplify.APIError>.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation, Amplify.GraphQLResponse, Amplify.APIError>.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation, Amplify.GraphQLResponse, Amplify.APIError>.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation, Amplify.GraphQLResponse, Amplify.APIError>.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result, Amplify.APIError>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16GraphQLOperationC12categoryType9eventName7request14resultListenerACyxGAA08CategoryE0O_SSAA0bC7RequestVyxGys6ResultOyAOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGcSgtcfc", + "mangledName": "$s7Amplify16GraphQLOperationC12categoryType9eventName7request14resultListenerACyxGAA08CategoryE0O_SSAA0bC7RequestVyxGys6ResultOyAOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGcSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "TaskAdapter", + "printedName": "TaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperationTaskAdapter", + "printedName": "Amplify.AmplifyOperationTaskAdapter.Request, Amplify.GraphQLOperation.Success, Amplify.GraphQLOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Request", + "printedName": "Amplify.GraphQLOperation.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationRequest", + "printedName": "Amplify.GraphQLOperationRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify23GraphQLOperationRequestV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.GraphQLOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Amplify0A20OperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16GraphQLOperationC11TaskAdaptera", + "mangledName": "$s7Amplify16GraphQLOperationC11TaskAdaptera", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:7Amplify16GraphQLOperationC", + "mangledName": "$s7Amplify16GraphQLOperationC", + "moduleName": "Amplify", + "genericSig": "", + "isOpen": true, + "superclassUsr": "s:7Amplify0A9OperationC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "Amplify.AmplifyOperation, Swift.Result<τ_0_0, Amplify.GraphQLResponseError<τ_0_0>>, Amplify.APIError>", + "Amplify.AsynchronousOperation", + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "HubPayloadEventNameable", + "printedName": "HubPayloadEventNameable", + "usr": "s:7Amplify23HubPayloadEventNameableP", + "mangledName": "$s7Amplify23HubPayloadEventNameableP" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLSubscriptionOperation", + "printedName": "GraphQLSubscriptionOperation", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(categoryType:eventName:request:inProcessListener:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionOperation", + "printedName": "Amplify.GraphQLSubscriptionOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify28GraphQLSubscriptionOperationC" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationRequest", + "printedName": "Amplify.GraphQLOperationRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify23GraphQLOperationRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyInProcessReportingOperation, Amplify.GraphQLSubscriptionEvent, Swift.Void, Amplify.APIError>.InProcessListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Amplify.AmplifyInProcessReportingOperation, Amplify.GraphQLSubscriptionEvent, Swift.Void, Amplify.APIError>.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLSubscriptionEvent) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionEvent)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyInProcessReportingOperation, Amplify.GraphQLSubscriptionEvent, Swift.Void, Amplify.APIError>.ResultListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyInProcessReportingOperation, Amplify.GraphQLSubscriptionEvent, Swift.Void, Amplify.APIError>.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation, Swift.Void, Amplify.APIError>.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation, Swift.Void, Amplify.APIError>.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation, Swift.Void, Amplify.APIError>.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC12categoryType9eventName7request17inProcessListener06resultL0ACyxGAA08CategoryF0O_SSAA0B18QLOperationRequestVyxGyAA0bC5EventOyxGcSgys6ResultOyytAA8APIErrorOGcSgtcfc", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC12categoryType9eventName7request17inProcessListener06resultL0ACyxGAA08CategoryF0O_SSAA0B18QLOperationRequestVyxGyAA0bC5EventOyxGcSgys6ResultOyytAA8APIErrorOGcSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "connectionStatePublisher", + "printedName": "connectionStatePublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC24connectionStatePublisher7Combine03AnyG0VyAA022SubscriptionConnectionF0OAA8APIErrorOGvp", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC24connectionStatePublisher7Combine03AnyG0VyAA022SubscriptionConnectionF0OAA8APIErrorOGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC24connectionStatePublisher7Combine03AnyG0VyAA022SubscriptionConnectionF0OAA8APIErrorOGvg", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC24connectionStatePublisher7Combine03AnyG0VyAA022SubscriptionConnectionF0OAA8APIErrorOGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subscriptionDataPublisher", + "printedName": "subscriptionDataPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher, Amplify.GraphQLSubscriptionOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.GraphQLSubscriptionOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC25subscriptionDataPublisher7Combine03AnyG0Vys6ResultOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGvp", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC25subscriptionDataPublisher7Combine03AnyG0Vys6ResultOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher, Amplify.GraphQLSubscriptionOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.GraphQLSubscriptionOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC25subscriptionDataPublisher7Combine03AnyG0Vys6ResultOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGvg", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC25subscriptionDataPublisher7Combine03AnyG0Vys6ResultOyxAA0B15QLResponseErrorOyxGGAA8APIErrorOGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify28GraphQLSubscriptionOperationC", + "mangledName": "$s7Amplify28GraphQLSubscriptionOperationC", + "moduleName": "Amplify", + "genericSig": "", + "isOpen": true, + "superclassUsr": "s:7Amplify0A27InProcessReportingOperationC", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "Amplify.AmplifyInProcessReportingOperation, Amplify.GraphQLSubscriptionEvent<τ_0_0>, (), Amplify.APIError>", + "Amplify.AmplifyOperation, (), Amplify.APIError>", + "Amplify.AsynchronousOperation", + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "HubPayloadEventNameable", + "printedName": "HubPayloadEventNameable", + "usr": "s:7Amplify23HubPayloadEventNameableP", + "mangledName": "$s7Amplify23HubPayloadEventNameableP" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "GraphQLTask", + "printedName": "GraphQLTask", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TaskAdapter", + "printedName": "Amplify.GraphQLOperation.TaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperationTaskAdapter", + "printedName": "Amplify.AmplifyOperationTaskAdapter.Request, Amplify.GraphQLOperation.Success, Amplify.GraphQLOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Request", + "printedName": "Amplify.GraphQLOperation.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationRequest", + "printedName": "Amplify.GraphQLOperationRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify23GraphQLOperationRequestV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.GraphQLOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Amplify0A20OperationTaskAdapterC" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11GraphQLTaska", + "mangledName": "$s7Amplify11GraphQLTaska", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "RESTOperation", + "printedName": "RESTOperation", + "children": [ + { + "kind": "TypeAlias", + "name": "TaskAdapter", + "printedName": "TaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperationTaskAdapter", + "printedName": "Amplify.AmplifyOperationTaskAdapter.Request, Amplify.AmplifyOperation.Success, Amplify.AmplifyOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Request", + "printedName": "Amplify.AmplifyOperation.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationRequest", + "printedName": "Amplify.RESTOperationRequest", + "usr": "s:7Amplify20RESTOperationRequestV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.AmplifyOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Amplify0A20OperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13RESTOperationPAAE11TaskAdaptera", + "mangledName": "$s7Amplify13RESTOperationPAAE11TaskAdaptera", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify13RESTOperationP", + "mangledName": "$s7Amplify13RESTOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeAlias", + "name": "RESTTask", + "printedName": "RESTTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperationTaskAdapter", + "printedName": "Amplify.AmplifyOperationTaskAdapter.Request, Amplify.AmplifyOperation.Success, Amplify.AmplifyOperation.Failure>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Request", + "printedName": "Amplify.AmplifyOperation.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationRequest", + "printedName": "Amplify.RESTOperationRequest", + "usr": "s:7Amplify20RESTOperationRequestV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.AmplifyOperation.Success", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Failure", + "printedName": "Amplify.AmplifyOperation.Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ], + "usr": "s:7Amplify0A20OperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify8RESTTaska", + "mangledName": "$s7Amplify8RESTTaska", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "RetryableGraphQLOperation", + "printedName": "RetryableGraphQLOperation", + "children": [ + { + "kind": "TypeAlias", + "name": "Payload", + "printedName": "Payload", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify25RetryableGraphQLOperationC7Payloada", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC7Payloada", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RetryableGraphQLOperation", + "printedName": "Amplify.RetryableGraphQLOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify25RetryableGraphQLOperationC" + }, + { + "kind": "TypeNominal", + "name": "AsyncStream", + "printedName": "_Concurrency.AsyncStream<() async throws -> Amplify.GraphQLTask.Success>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:ScS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25RetryableGraphQLOperationC13requestStreamACyxGScSys6ResultOyxAA0C15QLResponseErrorOyxGGyYaKcG_tcfc", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC13requestStreamACyxGScSys6ResultOyxAA0C15QLResponseErrorOyxGGyYaKcG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher.Success, Amplify.APIError>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25RetryableGraphQLOperationC7executey7Combine12AnyPublisherVys6ResultOyxAA0C15QLResponseErrorOyxGGAA8APIErrorOGAA0cD4TypeOF", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC7executey7Combine12AnyPublisherVys6ResultOyxAA0C15QLResponseErrorOyxGGAA8APIErrorOGAA0cD4TypeOF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "run", + "printedName": "run()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result.Success, Amplify.APIError>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLTask.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Success", + "printedName": "Amplify.GraphQLOperation.Success", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25RetryableGraphQLOperationC3runs6ResultOyAFyxAA0C15QLResponseErrorOyxGGAA8APIErrorOGyYaF", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC3runs6ResultOyAFyxAA0C15QLResponseErrorOyxGGAA8APIErrorOGyYaF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25RetryableGraphQLOperationC6cancelyyF", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify25RetryableGraphQLOperationC", + "mangledName": "$s7Amplify25RetryableGraphQLOperationC", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "RetryableGraphQLSubscriptionOperation", + "printedName": "RetryableGraphQLSubscriptionOperation", + "children": [ + { + "kind": "TypeAlias", + "name": "Payload", + "printedName": "Payload", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC7Payloada", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC7Payloada", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "SubscriptionEvents", + "printedName": "SubscriptionEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC18SubscriptionEventsa", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC18SubscriptionEventsa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestStream:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RetryableGraphQLSubscriptionOperation", + "printedName": "Amplify.RetryableGraphQLSubscriptionOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC" + }, + { + "kind": "TypeNominal", + "name": "AsyncStream", + "printedName": "_Concurrency.AsyncStream<() async throws -> Amplify.AmplifyAsyncThrowingSequence.SubscriptionEvents>>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Amplify.AmplifyAsyncThrowingSequence.SubscriptionEvents>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence.SubscriptionEvents>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubscriptionEvents", + "printedName": "Amplify.RetryableGraphQLSubscriptionOperation.SubscriptionEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ] + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:ScS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC13requestStreamACyxGScSyAA0A21AsyncThrowingSequenceCyAA0cD5EventOyxGGyYaKcG_tcfc", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC13requestStreamACyxGScSyAA0A21AsyncThrowingSequenceCyAA0cD5EventOyxGGyYaKcG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher.SubscriptionEvents, Amplify.APIError>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubscriptionEvents", + "printedName": "Amplify.RetryableGraphQLSubscriptionOperation.SubscriptionEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Payload" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC9subscribe7Combine12AnyPublisherVyAA0cD5EventOyxGAA8APIErrorOGyF", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC9subscribe7Combine12AnyPublisherVyAA0cD5EventOyxGAA8APIErrorOGyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC6cancelyyF", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvp", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvg", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC3logAA6Logger_pvg", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify37RetryableGraphQLSubscriptionOperationC", + "mangledName": "$s7Amplify37RetryableGraphQLSubscriptionOperationC", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "ReachabilityUpdate", + "printedName": "ReachabilityUpdate", + "children": [ + { + "kind": "Var", + "name": "isOnline", + "printedName": "isOnline", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18ReachabilityUpdateV8isOnlineSbvp", + "mangledName": "$s7Amplify18ReachabilityUpdateV8isOnlineSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18ReachabilityUpdateV8isOnlineSbvg", + "mangledName": "$s7Amplify18ReachabilityUpdateV8isOnlineSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isOnline:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityUpdate", + "printedName": "Amplify.ReachabilityUpdate", + "usr": "s:7Amplify18ReachabilityUpdateV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18ReachabilityUpdateV8isOnlineACSb_tcfc", + "mangledName": "$s7Amplify18ReachabilityUpdateV8isOnlineACSb_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify18ReachabilityUpdateV", + "mangledName": "$s7Amplify18ReachabilityUpdateV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GraphQLOperationRequest", + "printedName": "GraphQLOperationRequest", + "children": [ + { + "kind": "Var", + "name": "apiName", + "printedName": "apiName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV7apiNameSSSgvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7apiNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV7apiNameSSSgvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7apiNameSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV13operationTypeAA0bcF0Ovp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV13operationTypeAA0bcF0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV13operationTypeAA0bcF0Ovg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV13operationTypeAA0bcF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "document", + "printedName": "document", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV8documentSSvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV8documentSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV8documentSSvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV8documentSSvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "variables", + "printedName": "variables", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV9variablesSDySSypGSgvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV9variablesSDySSypGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV9variablesSDySSypGSgvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV9variablesSDySSypGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "responseType", + "printedName": "responseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV12responseTypexmvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV12responseTypexmvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV12responseTypexmvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV12responseTypexmvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "decodePath", + "printedName": "decodePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV10decodePathSSSgvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV10decodePathSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV10decodePathSSSgvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV10decodePathSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authMode", + "printedName": "authMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV8authModeAA013AuthorizationF0_pSgvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV8authModeAA013AuthorizationF0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV8authModeAA013AuthorizationF0_pSgvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV8authModeAA013AuthorizationF0_pSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLOperationRequest.Options", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV7optionsAC7OptionsVyx_Gvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7optionsAC7OptionsVyx_Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLOperationRequest.Options", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV7optionsAC7OptionsVyx_Gvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7optionsAC7OptionsVyx_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiName:operationType:document:variables:responseType:decodePath:authMode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationRequest", + "printedName": "Amplify.GraphQLOperationRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify23GraphQLOperationRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLOperationRequest.Options", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23GraphQLOperationRequestV7apiName13operationType8document9variables08responseH010decodePath8authMode7optionsACyxGSSSg_AA0bcH0OSSSDySSypGSgxmAmA013AuthorizationO0_pSgAC7OptionsVyx_Gtcfc", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7apiName13operationType8document9variables08responseH010decodePath8authMode7optionsACyxGSSSg_AA0bcH0OSSSDySSypGSgxmAmA013AuthorizationO0_pSgAC7OptionsVyx_Gtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0ypSgvp", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0ypSgvg", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0ypSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLOperationRequest.Options", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0AEyx_GypSg_tcfc", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7OptionsV06pluginE0AEyx_GypSg_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV", + "mangledName": "$s7Amplify23GraphQLOperationRequestV7OptionsV", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23GraphQLOperationRequestV", + "mangledName": "$s7Amplify23GraphQLOperationRequestV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLOperationRequest.Options", + "usr": "s:7Amplify23GraphQLOperationRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLOperationType", + "printedName": "GraphQLOperationType", + "children": [ + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLOperationType.Type) -> Amplify.GraphQLOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLOperationTypeO5queryyA2CmF", + "mangledName": "$s7Amplify20GraphQLOperationTypeO5queryyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "mutation", + "printedName": "mutation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLOperationType.Type) -> Amplify.GraphQLOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLOperationTypeO8mutationyA2CmF", + "mangledName": "$s7Amplify20GraphQLOperationTypeO8mutationyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "subscription", + "printedName": "subscription", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLOperationType.Type) -> Amplify.GraphQLOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLOperationTypeO12subscriptionyA2CmF", + "mangledName": "$s7Amplify20GraphQLOperationTypeO12subscriptionyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLOperationType", + "printedName": "Amplify.GraphQLOperationType", + "usr": "s:7Amplify20GraphQLOperationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20GraphQLOperationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify20GraphQLOperationTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify20GraphQLOperationTypeO8RawValuea", + "mangledName": "$s7Amplify20GraphQLOperationTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20GraphQLOperationTypeO8rawValueSSvp", + "mangledName": "$s7Amplify20GraphQLOperationTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20GraphQLOperationTypeO8rawValueSSvg", + "mangledName": "$s7Amplify20GraphQLOperationTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hubEventName", + "printedName": "hubEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20GraphQLOperationTypeO12hubEventNameSSvp", + "mangledName": "$s7Amplify20GraphQLOperationTypeO12hubEventNameSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20GraphQLOperationTypeO12hubEventNameSSvg", + "mangledName": "$s7Amplify20GraphQLOperationTypeO12hubEventNameSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify20GraphQLOperationTypeO", + "mangledName": "$s7Amplify20GraphQLOperationTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthorizationMode", + "printedName": "AuthorizationMode", + "declKind": "Protocol", + "usr": "s:7Amplify17AuthorizationModeP", + "mangledName": "$s7Amplify17AuthorizationModeP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GraphQLRequest", + "printedName": "GraphQLRequest", + "children": [ + { + "kind": "Var", + "name": "apiName", + "printedName": "apiName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV7apiNameSSSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV7apiNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV7apiNameSSSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV7apiNameSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "document", + "printedName": "document", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV8documentSSvp", + "mangledName": "$s7Amplify14GraphQLRequestV8documentSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV8documentSSvg", + "mangledName": "$s7Amplify14GraphQLRequestV8documentSSvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "variables", + "printedName": "variables", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV9variablesSDySSypGSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV9variablesSDySSypGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV9variablesSDySSypGSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV9variablesSDySSypGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "responseType", + "printedName": "responseType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV12responseTypexmvp", + "mangledName": "$s7Amplify14GraphQLRequestV12responseTypexmvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV12responseTypexmvg", + "mangledName": "$s7Amplify14GraphQLRequestV12responseTypexmvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authMode", + "printedName": "authMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV8authModeAA013AuthorizationE0_pSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV8authModeAA013AuthorizationE0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV8authModeAA013AuthorizationE0_pSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV8authModeAA013AuthorizationE0_pSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "decodePath", + "printedName": "decodePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV10decodePathSSSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV10decodePathSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV10decodePathSSSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV10decodePathSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLRequest.Options", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLRequest.Options", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLRequest.Options", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvs", + "mangledName": "$s7Amplify14GraphQLRequestV7optionsAC7OptionsVyx_GSgvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiName:document:variables:responseType:decodePath:authMode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLRequest", + "printedName": "Amplify.GraphQLRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ], + "usr": "s:7Amplify14GraphQLRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "R.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "R" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthorizationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthorizationMode", + "printedName": "Amplify.AuthorizationMode", + "usr": "s:7Amplify17AuthorizationModeP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLRequest.Options", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify14GraphQLRequestV7apiName8document9variables12responseType10decodePath8authMode7optionsACyxGSSSg_SSSDySSypGSgxmAlA013AuthorizationM0_pSgAC7OptionsVyx_GSgtcfc", + "mangledName": "$s7Amplify14GraphQLRequestV7apiName8document9variables12responseType10decodePath8authMode7optionsACyxGSSSg_SSSDySSypGSgxmAlA013AuthorizationM0_pSgAC7OptionsVyx_GSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV06pluginD0ypSgvp", + "mangledName": "$s7Amplify14GraphQLRequestV7OptionsV06pluginD0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV06pluginD0ypSgvg", + "mangledName": "$s7Amplify14GraphQLRequestV7OptionsV06pluginD0ypSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.GraphQLRequest.Options", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV06pluginD0AEyx_GypSg_tcfc", + "mangledName": "$s7Amplify14GraphQLRequestV7OptionsV06pluginD0AEyx_GypSg_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify14GraphQLRequestV7OptionsV", + "mangledName": "$s7Amplify14GraphQLRequestV7OptionsV", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify14GraphQLRequestV", + "mangledName": "$s7Amplify14GraphQLRequestV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "RESTOperationRequest", + "printedName": "RESTOperationRequest", + "children": [ + { + "kind": "Var", + "name": "apiName", + "printedName": "apiName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV7apiNameSSSgvp", + "mangledName": "$s7Amplify20RESTOperationRequestV7apiNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV7apiNameSSSgvg", + "mangledName": "$s7Amplify20RESTOperationRequestV7apiNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operationType", + "printedName": "operationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV13operationTypeAA0bE0Ovp", + "mangledName": "$s7Amplify20RESTOperationRequestV13operationTypeAA0bE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV13operationTypeAA0bE0Ovg", + "mangledName": "$s7Amplify20RESTOperationRequestV13operationTypeAA0bE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV4pathSSSgvp", + "mangledName": "$s7Amplify20RESTOperationRequestV4pathSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV4pathSSSgvg", + "mangledName": "$s7Amplify20RESTOperationRequestV4pathSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headers", + "printedName": "headers", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV7headersSDyS2SGSgvp", + "mangledName": "$s7Amplify20RESTOperationRequestV7headersSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV7headersSDyS2SGSgvg", + "mangledName": "$s7Amplify20RESTOperationRequestV7headersSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "queryParameters", + "printedName": "queryParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV15queryParametersSDyS2SGSgvp", + "mangledName": "$s7Amplify20RESTOperationRequestV15queryParametersSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV15queryParametersSDyS2SGSgvg", + "mangledName": "$s7Amplify20RESTOperationRequestV15queryParametersSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV4body10Foundation4DataVSgvp", + "mangledName": "$s7Amplify20RESTOperationRequestV4body10Foundation4DataVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV4body10Foundation4DataVSgvg", + "mangledName": "$s7Amplify20RESTOperationRequestV4body10Foundation4DataVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.RESTOperationRequest.Options", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20RESTOperationRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify20RESTOperationRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.RESTOperationRequest.Options", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20RESTOperationRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify20RESTOperationRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiName:operationType:path:headers:queryParameters:body:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationRequest", + "printedName": "Amplify.RESTOperationRequest", + "usr": "s:7Amplify20RESTOperationRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.RESTOperationRequest.Options", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20RESTOperationRequestV7apiName13operationType4path7headers15queryParameters4body7optionsACSSSg_AA0bG0OAKSDyS2SGSgAO10Foundation4DataVSgAC7OptionsVtcfc", + "mangledName": "$s7Amplify20RESTOperationRequestV7apiName13operationType4path7headers15queryParameters4body7optionsACSSSg_AA0bG0OAKSDyS2SGSgAO10Foundation4DataVSgAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.RESTOperationRequest.Options", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsVAEycfc", + "mangledName": "$s7Amplify20RESTOperationRequestV7OptionsVAEycfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV", + "mangledName": "$s7Amplify20RESTOperationRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20RESTOperationRequestV", + "mangledName": "$s7Amplify20RESTOperationRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.RESTOperationRequest.Options", + "usr": "s:7Amplify20RESTOperationRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RESTOperationType", + "printedName": "RESTOperationType", + "children": [ + { + "kind": "Var", + "name": "get", + "printedName": "get", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO3getyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO3getyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "put", + "printedName": "put", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO3putyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO3putyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "post", + "printedName": "post", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO4postyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO4postyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "patch", + "printedName": "patch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO5patchyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO5patchyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO6deleteyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO6deleteyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "head", + "printedName": "head", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RESTOperationType.Type) -> Amplify.RESTOperationType", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.RESTOperationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.RESTOperationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify17RESTOperationTypeO4headyA2CmF", + "mangledName": "$s7Amplify17RESTOperationTypeO4headyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.RESTOperationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTOperationType", + "printedName": "Amplify.RESTOperationType", + "usr": "s:7Amplify17RESTOperationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17RESTOperationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify17RESTOperationTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify17RESTOperationTypeO8RawValuea", + "mangledName": "$s7Amplify17RESTOperationTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17RESTOperationTypeO8rawValueSSvp", + "mangledName": "$s7Amplify17RESTOperationTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17RESTOperationTypeO8rawValueSSvg", + "mangledName": "$s7Amplify17RESTOperationTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hubEventName", + "printedName": "hubEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17RESTOperationTypeO12hubEventNameSSvp", + "mangledName": "$s7Amplify17RESTOperationTypeO12hubEventNameSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17RESTOperationTypeO12hubEventNameSSvg", + "mangledName": "$s7Amplify17RESTOperationTypeO12hubEventNameSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify17RESTOperationTypeO", + "mangledName": "$s7Amplify17RESTOperationTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RESTRequest", + "printedName": "RESTRequest", + "children": [ + { + "kind": "Var", + "name": "apiName", + "printedName": "apiName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11RESTRequestC7apiNameSSSgvp", + "mangledName": "$s7Amplify11RESTRequestC7apiNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11RESTRequestC7apiNameSSSgvg", + "mangledName": "$s7Amplify11RESTRequestC7apiNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11RESTRequestC4pathSSSgvp", + "mangledName": "$s7Amplify11RESTRequestC4pathSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11RESTRequestC4pathSSSgvg", + "mangledName": "$s7Amplify11RESTRequestC4pathSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headers", + "printedName": "headers", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11RESTRequestC7headersSDyS2SGSgvp", + "mangledName": "$s7Amplify11RESTRequestC7headersSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11RESTRequestC7headersSDyS2SGSgvg", + "mangledName": "$s7Amplify11RESTRequestC7headersSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "queryParameters", + "printedName": "queryParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11RESTRequestC15queryParametersSDyS2SGSgvp", + "mangledName": "$s7Amplify11RESTRequestC15queryParametersSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11RESTRequestC15queryParametersSDyS2SGSgvg", + "mangledName": "$s7Amplify11RESTRequestC15queryParametersSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "body", + "printedName": "body", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11RESTRequestC4body10Foundation4DataVSgvp", + "mangledName": "$s7Amplify11RESTRequestC4body10Foundation4DataVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11RESTRequestC4body10Foundation4DataVSgvg", + "mangledName": "$s7Amplify11RESTRequestC4body10Foundation4DataVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(apiName:path:headers:queryParameters:body:)", + "children": [ + { + "kind": "TypeNominal", + "name": "RESTRequest", + "printedName": "Amplify.RESTRequest", + "usr": "s:7Amplify11RESTRequestC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11RESTRequestC7apiName4path7headers15queryParameters4bodyACSSSg_AISDyS2SGSgAK10Foundation4DataVSgtcfc", + "mangledName": "$s7Amplify11RESTRequestC7apiName4path7headers15queryParameters4bodyACSSSg_AISDyS2SGSgAK10Foundation4DataVSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:7Amplify11RESTRequestC", + "mangledName": "$s7Amplify11RESTRequestC", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GraphQLError", + "printedName": "GraphQLError", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV7messageSSvp", + "mangledName": "$s7Amplify12GraphQLErrorV7messageSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV7messageSSvg", + "mangledName": "$s7Amplify12GraphQLErrorV7messageSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "locations", + "printedName": "locations", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.GraphQLError.Location]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "Amplify.GraphQLError.Location", + "usr": "s:7Amplify12GraphQLErrorV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV9locationsSayAC8LocationVGSgvp", + "mangledName": "$s7Amplify12GraphQLErrorV9locationsSayAC8LocationVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.GraphQLError.Location]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "Amplify.GraphQLError.Location", + "usr": "s:7Amplify12GraphQLErrorV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV9locationsSayAC8LocationVGSgvg", + "mangledName": "$s7Amplify12GraphQLErrorV9locationsSayAC8LocationVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV4pathSayAA9JSONValueOGSgvp", + "mangledName": "$s7Amplify12GraphQLErrorV4pathSayAA9JSONValueOGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV4pathSayAA9JSONValueOGSgvg", + "mangledName": "$s7Amplify12GraphQLErrorV4pathSayAA9JSONValueOGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extensions", + "printedName": "extensions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV10extensionsSDySSAA9JSONValueOGSgvp", + "mangledName": "$s7Amplify12GraphQLErrorV10extensionsSDySSAA9JSONValueOGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV10extensionsSDySSAA9JSONValueOGSgvg", + "mangledName": "$s7Amplify12GraphQLErrorV10extensionsSDySSAA9JSONValueOGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(message:locations:path:extensions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.GraphQLError.Location]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError.Location]", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "Amplify.GraphQLError.Location", + "usr": "s:7Amplify12GraphQLErrorV8LocationV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12GraphQLErrorV7message9locations4path10extensionsACSS_SayAC8LocationVGSgSayAA9JSONValueOGSgSDySSAMGSgtcfc", + "mangledName": "$s7Amplify12GraphQLErrorV7message9locations4path10extensionsACSS_SayAC8LocationVGSgSayAA9JSONValueOGSgSDySSAMGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12GraphQLErrorV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify12GraphQLErrorV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Location", + "printedName": "Location", + "children": [ + { + "kind": "Var", + "name": "line", + "printedName": "line", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV8LocationV4lineSivp", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV4lineSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV8LocationV4lineSivg", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV4lineSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "column", + "printedName": "column", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12GraphQLErrorV8LocationV6columnSivp", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV6columnSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12GraphQLErrorV8LocationV6columnSivg", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV6columnSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "Amplify.GraphQLError.Location", + "usr": "s:7Amplify12GraphQLErrorV8LocationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12GraphQLErrorV8LocationV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify12GraphQLErrorV8LocationV", + "mangledName": "$s7Amplify12GraphQLErrorV8LocationV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify12GraphQLErrorV", + "mangledName": "$s7Amplify12GraphQLErrorV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "RawGraphQLResponse", + "printedName": "RawGraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify18RawGraphQLResponsea", + "mangledName": "$s7Amplify18RawGraphQLResponsea", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "GraphQLResponse", + "printedName": "GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify15GraphQLResponsea", + "mangledName": "$s7Amplify15GraphQLResponsea", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "GraphQLResponseError", + "printedName": "GraphQLResponseError", + "children": [ + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLResponseError.Type) -> ([Amplify.GraphQLError]) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.GraphQLError]) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Amplify.GraphQLError])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLResponseError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLResponseError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLResponseErrorO5erroryACyxGSayAA0B7QLErrorVGcAEmSeRzlF", + "mangledName": "$s7Amplify20GraphQLResponseErrorO5erroryACyxGSayAA0B7QLErrorVGcAEmSeRzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "partial", + "printedName": "partial", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLResponseError.Type) -> (ResponseType, [Amplify.GraphQLError]) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ResponseType, [Amplify.GraphQLError]) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ResponseType, [Amplify.GraphQLError])", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLResponseError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLResponseError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLResponseErrorO7partialyACyxGx_SayAA0B7QLErrorVGtcAEmSeRzlF", + "mangledName": "$s7Amplify20GraphQLResponseErrorO7partialyACyxGx_SayAA0B7QLErrorVGtcAEmSeRzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "transformationError", + "printedName": "transformationError", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLResponseError.Type) -> (Amplify.RawGraphQLResponse, Amplify.APIError) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.RawGraphQLResponse, Amplify.APIError) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.RawGraphQLResponse, Amplify.APIError)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RawGraphQLResponse", + "printedName": "Amplify.RawGraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "APIError", + "printedName": "Amplify.APIError", + "usr": "s:7Amplify8APIErrorO" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLResponseError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLResponseError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLResponseErrorO014transformationD0yACyxGSS_AA8APIErrorOtcAEmSeRzlF", + "mangledName": "$s7Amplify20GraphQLResponseErrorO014transformationD0yACyxGSS_AA8APIErrorOtcAEmSeRzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLResponseError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLResponseError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLResponseError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20GraphQLResponseErrorO7unknownyACyxGSS_SSs0D0_pSgtcAEmSeRzlF", + "mangledName": "$s7Amplify20GraphQLResponseErrorO7unknownyACyxGSS_SSs0D0_pSgtcAEmSeRzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify20GraphQLResponseErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify20GraphQLResponseErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20GraphQLResponseErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify20GraphQLResponseErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify20GraphQLResponseErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify20GraphQLResponseErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20GraphQLResponseErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify20GraphQLResponseErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20GraphQLResponseErrorO010underlyingD0s0D0_pSgvp", + "mangledName": "$s7Amplify20GraphQLResponseErrorO010underlyingD0s0D0_pSgvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20GraphQLResponseErrorO010underlyingD0s0D0_pSgvg", + "mangledName": "$s7Amplify20GraphQLResponseErrorO010underlyingD0s0D0_pSgvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ResponseType" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20GraphQLResponseErrorO16errorDescription18recoverySuggestion0E0ACyxGSS_SSs0D0_ptcfc", + "mangledName": "$s7Amplify20GraphQLResponseErrorO16errorDescription18recoverySuggestion0E0ACyxGSS_SSs0D0_ptcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify20GraphQLResponseErrorO", + "mangledName": "$s7Amplify20GraphQLResponseErrorO", + "moduleName": "Amplify", + "genericSig": "", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SubscriptionConnectionState", + "printedName": "SubscriptionConnectionState", + "children": [ + { + "kind": "Var", + "name": "connecting", + "printedName": "connecting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.SubscriptionConnectionState.Type) -> Amplify.SubscriptionConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.SubscriptionConnectionState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.SubscriptionConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify27SubscriptionConnectionStateO10connectingyA2CmF", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO10connectingyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "connected", + "printedName": "connected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.SubscriptionConnectionState.Type) -> Amplify.SubscriptionConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.SubscriptionConnectionState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.SubscriptionConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify27SubscriptionConnectionStateO9connectedyA2CmF", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO9connectedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "disconnected", + "printedName": "disconnected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.SubscriptionConnectionState.Type) -> Amplify.SubscriptionConnectionState", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.SubscriptionConnectionState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.SubscriptionConnectionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify27SubscriptionConnectionStateO12disconnectedyA2CmF", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO12disconnectedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + }, + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27SubscriptionConnectionStateO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27SubscriptionConnectionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify27SubscriptionConnectionStateO9hashValueSivp", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27SubscriptionConnectionStateO9hashValueSivg", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify27SubscriptionConnectionStateO", + "mangledName": "$s7Amplify27SubscriptionConnectionStateO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLSubscriptionEvent", + "printedName": "GraphQLSubscriptionEvent", + "children": [ + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLSubscriptionEvent.Type) -> (Amplify.SubscriptionConnectionState) -> Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.SubscriptionConnectionState) -> Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.SubscriptionConnectionState)", + "children": [ + { + "kind": "TypeNominal", + "name": "SubscriptionConnectionState", + "printedName": "Amplify.SubscriptionConnectionState", + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ], + "usr": "s:7Amplify27SubscriptionConnectionStateO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLSubscriptionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify24GraphQLSubscriptionEventO10connectionyACyxGAA27SubscriptionConnectionStateOcAEmSeRzlF", + "mangledName": "$s7Amplify24GraphQLSubscriptionEventO10connectionyACyxGAA27SubscriptionConnectionStateOcAEmSeRzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.GraphQLSubscriptionEvent.Type) -> (Amplify.GraphQLResponse) -> Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLResponse) -> Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLResponse)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "GraphQLResponse", + "printedName": "Amplify.GraphQLResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + }, + { + "kind": "TypeNominal", + "name": "GraphQLResponseError", + "printedName": "Amplify.GraphQLResponseError", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify20GraphQLResponseErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionEvent.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLSubscriptionEvent.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionEvent", + "printedName": "Amplify.GraphQLSubscriptionEvent", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify24GraphQLSubscriptionEventO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify24GraphQLSubscriptionEventO4datayACyxGs6ResultOyxAA0B15QLResponseErrorOyxGGcAEmSeRzlF", + "mangledName": "$s7Amplify24GraphQLSubscriptionEventO4datayACyxGs6ResultOyxAA0B15QLResponseErrorOyxGGcAEmSeRzlF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify24GraphQLSubscriptionEventO", + "mangledName": "$s7Amplify24GraphQLSubscriptionEventO", + "moduleName": "Amplify", + "genericSig": "", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnalyticsCategory", + "printedName": "AnalyticsCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AnalyticsCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify17AnalyticsCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AnalyticsCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify17AnalyticsCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsCategoryPlugin", + "printedName": "Amplify.AnalyticsCategoryPlugin", + "usr": "s:7Amplify23AnalyticsCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify17AnalyticsCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategoryPlugin", + "printedName": "Amplify.AnalyticsCategoryPlugin", + "usr": "s:7Amplify23AnalyticsCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify17AnalyticsCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify17AnalyticsCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "identifyUser", + "printedName": "identifyUser(userId:userProfile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsUserProfile", + "printedName": "Amplify.AnalyticsUserProfile", + "usr": "s:7Amplify20AnalyticsUserProfileV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC12identifyUser6userId0F7ProfileySS_AA0beH0VSgtF", + "mangledName": "$s7Amplify17AnalyticsCategoryC12identifyUser6userId0F7ProfileySS_AA0beH0VSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsEvent", + "printedName": "Amplify.AnalyticsEvent", + "usr": "s:7Amplify14AnalyticsEventP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC6record5eventyAA0B5Event_p_tF", + "mangledName": "$s7Amplify17AnalyticsCategoryC6record5eventyAA0B5Event_p_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(eventWithName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC6record13eventWithNameySS_tF", + "mangledName": "$s7Amplify17AnalyticsCategoryC6record13eventWithNameySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerGlobalProperties", + "printedName": "registerGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC24registerGlobalPropertiesyySDySSAA0B13PropertyValue_pGF", + "mangledName": "$s7Amplify17AnalyticsCategoryC24registerGlobalPropertiesyySDySSAA0B13PropertyValue_pGF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unregisterGlobalProperties", + "printedName": "unregisterGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyyShySSGSgF", + "mangledName": "$s7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyyShySSGSgF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flushEvents", + "printedName": "flushEvents()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC11flushEventsyyF", + "mangledName": "$s7Amplify17AnalyticsCategoryC11flushEventsyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC6enableyyF", + "mangledName": "$s7Amplify17AnalyticsCategoryC6enableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC7disableyyF", + "mangledName": "$s7Amplify17AnalyticsCategoryC7disableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unregisterGlobalProperties", + "printedName": "unregisterGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Swift.String...", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyySSd_tF", + "mangledName": "$s7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyySSd_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unregisterGlobalProperties", + "printedName": "unregisterGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyySaySSGF", + "mangledName": "$s7Amplify17AnalyticsCategoryC26unregisterGlobalPropertiesyySaySSGF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AnalyticsCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify17AnalyticsCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AnalyticsCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify17AnalyticsCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AnalyticsCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify17AnalyticsCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AnalyticsCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify17AnalyticsCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17AnalyticsCategoryC5resetyyYaF", + "mangledName": "$s7Amplify17AnalyticsCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify17AnalyticsCategoryC", + "mangledName": "$s7Amplify17AnalyticsCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "AnalyticsCategoryBehavior", + "printedName": "AnalyticsCategoryBehavior", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AnalyticsProperties", + "printedName": "AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify19AnalyticsPropertiesa", + "mangledName": "$s7Amplify19AnalyticsPropertiesa", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AnalyticsCategoryBehavior", + "printedName": "AnalyticsCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "identifyUser", + "printedName": "identifyUser(userId:userProfile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsUserProfile", + "printedName": "Amplify.AnalyticsUserProfile", + "usr": "s:7Amplify20AnalyticsUserProfileV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP12identifyUser6userId0G7ProfileySS_AA0bfI0VSgtF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP12identifyUser6userId0G7ProfileySS_AA0bfI0VSgtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsEvent", + "printedName": "Amplify.AnalyticsEvent", + "usr": "s:7Amplify14AnalyticsEventP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP6record5eventyAA0B5Event_p_tF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP6record5eventyAA0B5Event_p_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "record", + "printedName": "record(eventWithName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP6record13eventWithNameySS_tF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP6record13eventWithNameySS_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerGlobalProperties", + "printedName": "registerGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP24registerGlobalPropertiesyySDySSAA0B13PropertyValue_pGF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP24registerGlobalPropertiesyySDySSAA0B13PropertyValue_pGF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unregisterGlobalProperties", + "printedName": "unregisterGlobalProperties(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP26unregisterGlobalPropertiesyyShySSGSgF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP26unregisterGlobalPropertiesyyShySSGSgF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flushEvents", + "printedName": "flushEvents()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP11flushEventsyyF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP11flushEventsyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP6enableyyF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP6enableyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP7disableyyF", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP7disableyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AnalyticsCategoryConfiguration", + "printedName": "AnalyticsCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategoryConfiguration", + "printedName": "Amplify.AnalyticsCategoryConfiguration", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategoryConfiguration", + "printedName": "Amplify.AnalyticsCategoryConfiguration", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV", + "mangledName": "$s7Amplify30AnalyticsCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnalyticsCategoryPlugin", + "printedName": "AnalyticsCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AnalyticsCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify23AnalyticsCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AnalyticsCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify23AnalyticsCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23AnalyticsCategoryPluginP", + "mangledName": "$s7Amplify23AnalyticsCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AnalyticsCategoryBehavior", + "printedName": "AnalyticsCategoryBehavior", + "usr": "s:7Amplify25AnalyticsCategoryBehaviorP", + "mangledName": "$s7Amplify25AnalyticsCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnalyticsUserProfile", + "printedName": "AnalyticsUserProfile", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV4nameSSSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4nameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV4nameSSSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4nameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV4nameSSSgvs", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4nameSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV5emailSSSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV5emailSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV5emailSSSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV5emailSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV5emailSSSgvs", + "mangledName": "$s7Amplify20AnalyticsUserProfileV5emailSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "plan", + "printedName": "plan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV4planSSSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4planSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV4planSSSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4planSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV4planSSSgvs", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4planSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile.Location?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Location", + "printedName": "Amplify.AnalyticsUserProfile.Location", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile.Location?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Location", + "printedName": "Amplify.AnalyticsUserProfile.Location", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile.Location?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Location", + "printedName": "Amplify.AnalyticsUserProfile.Location", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvs", + "mangledName": "$s7Amplify20AnalyticsUserProfileV8locationAA0cD8LocationVSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "properties", + "printedName": "properties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvs", + "mangledName": "$s7Amplify20AnalyticsUserProfileV10propertiesSDySSAA0B13PropertyValue_pGSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:email:plan:location:properties:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsUserProfile", + "printedName": "Amplify.AnalyticsUserProfile", + "usr": "s:7Amplify20AnalyticsUserProfileV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsUserProfile.Location?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Location", + "printedName": "Amplify.AnalyticsUserProfile.Location", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20AnalyticsUserProfileV4name5email4plan8location10propertiesACSSSg_A2iA0cD8LocationVSgSDySSAA0B13PropertyValue_pGSgtcfc", + "mangledName": "$s7Amplify20AnalyticsUserProfileV4name5email4plan8location10propertiesACSSSg_A2iA0cD8LocationVSgSDySSAA0B13PropertyValue_pGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "Location", + "printedName": "Location", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify20AnalyticsUserProfileV8Locationa", + "mangledName": "$s7Amplify20AnalyticsUserProfileV8Locationa", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "customProperties", + "printedName": "customProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AnalyticsUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify20AnalyticsUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AnalyticsUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify20AnalyticsUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20AnalyticsUserProfileV", + "mangledName": "$s7Amplify20AnalyticsUserProfileV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "UserProfile", + "printedName": "UserProfile", + "usr": "s:7Amplify11UserProfileP", + "mangledName": "$s7Amplify11UserProfileP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "declKind": "Protocol", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AnalyticsError", + "printedName": "AnalyticsError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AnalyticsError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AnalyticsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AnalyticsError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsError", + "printedName": "Amplify.AnalyticsError", + "usr": "s:7Amplify14AnalyticsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AnalyticsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AnalyticsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsError", + "printedName": "Amplify.AnalyticsError", + "usr": "s:7Amplify14AnalyticsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AnalyticsErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify14AnalyticsErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AnalyticsError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> Amplify.AnalyticsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> Amplify.AnalyticsError", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsError", + "printedName": "Amplify.AnalyticsError", + "usr": "s:7Amplify14AnalyticsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AnalyticsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AnalyticsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsError", + "printedName": "Amplify.AnalyticsError", + "usr": "s:7Amplify14AnalyticsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AnalyticsErrorO7unknownyACSS_s0C0_pSgtcACmF", + "mangledName": "$s7Amplify14AnalyticsErrorO7unknownyACSS_s0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14AnalyticsErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify14AnalyticsErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14AnalyticsErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify14AnalyticsErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14AnalyticsErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify14AnalyticsErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14AnalyticsErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify14AnalyticsErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14AnalyticsErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify14AnalyticsErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14AnalyticsErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify14AnalyticsErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsError", + "printedName": "Amplify.AnalyticsError", + "usr": "s:7Amplify14AnalyticsErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify14AnalyticsErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify14AnalyticsErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14AnalyticsErrorO", + "mangledName": "$s7Amplify14AnalyticsErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnalyticsEvent", + "printedName": "AnalyticsEvent", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14AnalyticsEventP4nameSSvp", + "mangledName": "$s7Amplify14AnalyticsEventP4nameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14AnalyticsEventP4nameSSvg", + "mangledName": "$s7Amplify14AnalyticsEventP4nameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "properties", + "printedName": "properties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14AnalyticsEventP10propertiesSDySSAA0B13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify14AnalyticsEventP10propertiesSDySSAA0B13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14AnalyticsEventP10propertiesSDySSAA0B13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify14AnalyticsEventP10propertiesSDySSAA0B13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify14AnalyticsEventP", + "mangledName": "$s7Amplify14AnalyticsEventP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "BasicAnalyticsEvent", + "printedName": "BasicAnalyticsEvent", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19BasicAnalyticsEventV4nameSSvp", + "mangledName": "$s7Amplify19BasicAnalyticsEventV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19BasicAnalyticsEventV4nameSSvg", + "mangledName": "$s7Amplify19BasicAnalyticsEventV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19BasicAnalyticsEventV4nameSSvs", + "mangledName": "$s7Amplify19BasicAnalyticsEventV4nameSSvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "properties", + "printedName": "properties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvs", + "mangledName": "$s7Amplify19BasicAnalyticsEventV10propertiesSDySSAA0C13PropertyValue_pGSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:properties:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BasicAnalyticsEvent", + "printedName": "Amplify.BasicAnalyticsEvent", + "usr": "s:7Amplify19BasicAnalyticsEventV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsProperties?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnalyticsProperties", + "printedName": "Amplify.AnalyticsProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AnalyticsPropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnalyticsPropertyValue", + "printedName": "Amplify.AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP" + } + ], + "usr": "s:SD" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify19BasicAnalyticsEventV4name10propertiesACSS_SDySSAA0C13PropertyValue_pGSgtcfc", + "mangledName": "$s7Amplify19BasicAnalyticsEventV4name10propertiesACSS_SDySSAA0C13PropertyValue_pGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify19BasicAnalyticsEventV", + "mangledName": "$s7Amplify19BasicAnalyticsEventV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AnalyticsEvent", + "printedName": "AnalyticsEvent", + "usr": "s:7Amplify14AnalyticsEventP", + "mangledName": "$s7Amplify14AnalyticsEventP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthCategory", + "printedName": "AuthCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AuthCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify12AuthCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AuthCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify12AuthCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthCategoryPlugin", + "printedName": "Amplify.AuthCategoryPlugin", + "usr": "s:7Amplify18AuthCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify12AuthCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategoryPlugin", + "printedName": "Amplify.AuthCategoryPlugin", + "usr": "s:7Amplify18AuthCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify12AuthCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify12AuthCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signUp", + "printedName": "signUp(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpResult", + "printedName": "Amplify.AuthSignUpResult", + "usr": "s:7Amplify16AuthSignUpResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignUpRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC6signUp8username8password7optionsAA0b4SignE6ResultVSS_SSSgAA0biE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC6signUp8username8password7optionsAA0b4SignE6ResultVSS_SSSgAA0biE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmSignUp", + "printedName": "confirmSignUp(for:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpResult", + "printedName": "Amplify.AuthSignUpResult", + "usr": "s:7Amplify16AuthSignUpResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC13confirmSignUp3for16confirmationCode7optionsAA0beF6ResultVSS_SSAA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC13confirmSignUp3for16confirmationCode7optionsAA0beF6ResultVSS_SSAA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resendSignUpCode", + "printedName": "resendSignUpCode(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC16resendSignUpCode3for7optionsAA0bG15DeliveryDetailsVSS_AA0b6ResendefG7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC16resendSignUpCode3for7optionsAA0bG15DeliveryDetailsVSS_AA0b6ResendefG7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signIn", + "printedName": "signIn(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC6signIn8username8password7optionsAA0b4SignE6ResultVSSSg_AjA0biE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC6signIn8username8password7optionsAA0b4SignE6ResultVSSSg_AjA0biE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signInWithWebUI", + "printedName": "signInWithWebUI(presentationAnchor:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthWebUISignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC15signInWithWebUI18presentationAnchor7optionsAA0b4SignE6ResultVSo8NSWindowCSg_AA0bg6UISignE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC15signInWithWebUI18presentationAnchor7optionsAA0b4SignE6ResultVSo8NSWindowCSg_AA0bg6UISignE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signInWithWebUI", + "printedName": "signInWithWebUI(for:presentationAnchor:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthWebUISignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC15signInWithWebUI3for18presentationAnchor7optionsAA0b4SignE6ResultVAA0B8ProviderO_So8NSWindowCSgAA0bg6UISignE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC15signInWithWebUI3for18presentationAnchor7optionsAA0b4SignE6ResultVAA0B8ProviderO_So8NSWindowCSgAA0bg6UISignE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmSignIn", + "printedName": "confirmSignIn(challengeResponse:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmSignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC13confirmSignIn17challengeResponse7optionsAA0beF6ResultVSS_AA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC13confirmSignIn17challengeResponse7optionsAA0beF6ResultVSS_AA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signOut", + "printedName": "signOut(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignOutResult", + "printedName": "Amplify.AuthSignOutResult", + "usr": "s:7Amplify17AuthSignOutResultP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignOutRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC7signOut7optionsAA0b4SignE6Result_pAA0bgE7RequestV7OptionsVSg_tYaF", + "mangledName": "$s7Amplify12AuthCategoryC7signOut7optionsAA0b4SignE6Result_pAA0bgE7RequestV7OptionsVSg_tYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteUser", + "printedName": "deleteUser()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC10deleteUseryyYaKF", + "mangledName": "$s7Amplify12AuthCategoryC10deleteUseryyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAuthSession", + "printedName": "fetchAuthSession(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSession", + "printedName": "Amplify.AuthSession", + "usr": "s:7Amplify11AuthSessionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchSessionRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC05fetchB7Session7optionsAA0bE0_pAA0b5FetchE7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify12AuthCategoryC05fetchB7Session7optionsAA0bE0_pAA0b5FetchE7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetPassword", + "printedName": "resetPassword(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordResult", + "printedName": "Amplify.AuthResetPasswordResult", + "usr": "s:7Amplify23AuthResetPasswordResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthResetPasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC13resetPassword3for7optionsAA0b5ResetE6ResultVSS_AA0bhE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC13resetPassword3for7optionsAA0b5ResetE6ResultVSS_AA0bhE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmResetPassword", + "printedName": "confirmResetPassword(for:with:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC20confirmResetPassword3for4with16confirmationCode7optionsySS_S2SAA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC20confirmResetPassword3for4with16confirmationCode7optionsySS_S2SAA0b7ConfirmeF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUpTOTP", + "printedName": "setUpTOTP()", + "children": [ + { + "kind": "TypeNominal", + "name": "TOTPSetupDetails", + "printedName": "Amplify.TOTPSetupDetails", + "usr": "s:7Amplify16TOTPSetupDetailsV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC9setUpTOTPAA16TOTPSetupDetailsVyYaKF", + "mangledName": "$s7Amplify12AuthCategoryC9setUpTOTPAA16TOTPSetupDetailsVyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifyTOTPSetup", + "printedName": "verifyTOTPSetup(code:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC15verifyTOTPSetup4code7optionsySS_AA06VerifyE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC15verifyTOTPSetup4code7optionsySS_AA06VerifyE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchDevices", + "printedName": "fetchDevices(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthDevice]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchDevicesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC12fetchDevices7optionsSayAA0B6Device_pGAA0b5FetchE7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify12AuthCategoryC12fetchDevices7optionsSayAA0B6Device_pGAA0b5FetchE7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forgetDevice", + "printedName": "forgetDevice(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthForgetDeviceRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC12forgetDevice_7optionsyAA0bE0_pSg_AA0b6ForgetE7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC12forgetDevice_7optionsyAA0bE0_pSg_AA0b6ForgetE7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rememberDevice", + "printedName": "rememberDevice(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRememberDeviceRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC14rememberDevice7optionsyAA0b8RememberE7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify12AuthCategoryC14rememberDevice7optionsyAA0b8RememberE7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentUser", + "printedName": "getCurrentUser()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUser", + "printedName": "Amplify.AuthUser", + "usr": "s:7Amplify8AuthUserP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC14getCurrentUserAA0bF0_pyYaKF", + "mangledName": "$s7Amplify12AuthCategoryC14getCurrentUserAA0bF0_pyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchUserAttributes", + "printedName": "fetchUserAttributes(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC19fetchUserAttributes7optionsSayAA0bE9AttributeVGAA0b5FetcheF7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify12AuthCategoryC19fetchUserAttributes7optionsSayAA0bE9AttributeVGAA0b5FetcheF7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(userAttribute:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeResult", + "printedName": "Amplify.AuthUpdateAttributeResult", + "usr": "s:7Amplify25AuthUpdateAttributeResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC6update13userAttribute7optionsAA0b6UpdateF6ResultVAA0b4UserF0V_AA0bhjF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC6update13userAttribute7optionsAA0b6UpdateF6ResultVAA0b4UserF0V_AA0bhjF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(userAttributes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Amplify.AuthUserAttributeKey : Amplify.AuthUpdateAttributeResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeResult", + "printedName": "Amplify.AuthUpdateAttributeResult", + "usr": "s:7Amplify25AuthUpdateAttributeResultV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC6update14userAttributes7optionsSDyAA0B16UserAttributeKeyOAA0b6UpdateI6ResultVGSayAA0bhI0VG_AA0bkhF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC6update14userAttributes7optionsSDyAA0B16UserAttributeKeyOAA0b6UpdateI6ResultVGSayAA0bhI0VG_AA0bkhF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resendConfirmationCode", + "printedName": "resendConfirmationCode(forUserAttributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC22resendConfirmationCode19forUserAttributeKey7optionsAA0bF15DeliveryDetailsVAA0bhiJ0O_AA0bi6ResendeF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC22resendConfirmationCode19forUserAttributeKey7optionsAA0bF15DeliveryDetailsVAA0bhiJ0O_AA0bi6ResendeF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Final", + "Available" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendVerificationCode", + "printedName": "sendVerificationCode(forUserAttributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC20sendVerificationCode19forUserAttributeKey7optionsAA0bF15DeliveryDetailsVAA0bhiJ0O_AA0b4SendhieF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC20sendVerificationCode19forUserAttributeKey7optionsAA0bF15DeliveryDetailsVAA0bhiJ0O_AA0b4SendhieF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirm", + "printedName": "confirm(userAttribute:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC7confirm13userAttribute16confirmationCode7optionsyAA0b4UserF3KeyO_SSAA0b7ConfirmjF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC7confirm13userAttribute16confirmationCode7optionsyAA0b4UserF3KeyO_SSAA0b7ConfirmjF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(oldPassword:to:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthChangePasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC6update11oldPassword2to7optionsySS_SSAA0b6ChangeF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify12AuthCategoryC6update11oldPassword2to7optionsySS_SSAA0b6ChangeF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AuthCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify12AuthCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AuthCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify12AuthCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AuthCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify12AuthCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AuthCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify12AuthCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthCategoryC5resetyyYaF", + "mangledName": "$s7Amplify12AuthCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify12AuthCategoryC", + "mangledName": "$s7Amplify12AuthCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryBehavior", + "printedName": "AuthCategoryBehavior", + "usr": "s:7Amplify20AuthCategoryBehaviorP", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryDeviceBehavior", + "printedName": "AuthCategoryDeviceBehavior", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryUserBehavior", + "printedName": "AuthCategoryUserBehavior", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify24AuthUIPresentationAnchora", + "mangledName": "$s7Amplify24AuthUIPresentationAnchora", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthCategoryBehavior", + "printedName": "AuthCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "signUp", + "printedName": "signUp(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpResult", + "printedName": "Amplify.AuthSignUpResult", + "usr": "s:7Amplify16AuthSignUpResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignUpRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP6signUp8username8password7optionsAA0b4SignF6ResultVSS_SSSgAA0bjF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP6signUp8username8password7optionsAA0b4SignF6ResultVSS_SSSgAA0bjF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmSignUp", + "printedName": "confirmSignUp(for:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpResult", + "printedName": "Amplify.AuthSignUpResult", + "usr": "s:7Amplify16AuthSignUpResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP13confirmSignUp3for16confirmationCode7optionsAA0bfG6ResultVSS_SSAA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP13confirmSignUp3for16confirmationCode7optionsAA0bfG6ResultVSS_SSAA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resendSignUpCode", + "printedName": "resendSignUpCode(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP16resendSignUpCode3for7optionsAA0bH15DeliveryDetailsVSS_AA0b6ResendfgH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP16resendSignUpCode3for7optionsAA0bH15DeliveryDetailsVSS_AA0b6ResendfgH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signIn", + "printedName": "signIn(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP6signIn8username8password7optionsAA0b4SignF6ResultVSSSg_AjA0bjF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP6signIn8username8password7optionsAA0b4SignF6ResultVSSSg_AjA0bjF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signInWithWebUI", + "printedName": "signInWithWebUI(presentationAnchor:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthWebUISignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP15signInWithWebUI18presentationAnchor7optionsAA0b4SignF6ResultVSo8NSWindowCSg_AA0bh6UISignF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP15signInWithWebUI18presentationAnchor7optionsAA0b4SignF6ResultVSo8NSWindowCSg_AA0bh6UISignF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signInWithWebUI", + "printedName": "signInWithWebUI(for:presentationAnchor:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthWebUISignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP15signInWithWebUI3for18presentationAnchor7optionsAA0b4SignF6ResultVAA0B8ProviderO_So8NSWindowCSgAA0bh6UISignF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP15signInWithWebUI3for18presentationAnchor7optionsAA0b4SignF6ResultVAA0B8ProviderO_So8NSWindowCSgAA0bh6UISignF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmSignIn", + "printedName": "confirmSignIn(challengeResponse:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmSignInRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP13confirmSignIn17challengeResponse7optionsAA0bfG6ResultVSS_AA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP13confirmSignIn17challengeResponse7optionsAA0bfG6ResultVSS_AA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signOut", + "printedName": "signOut(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignOutResult", + "printedName": "Amplify.AuthSignOutResult", + "usr": "s:7Amplify17AuthSignOutResultP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSignOutRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP7signOut7optionsAA0b4SignF6Result_pAA0bhF7RequestV7OptionsVSg_tYaF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP7signOut7optionsAA0b4SignF6Result_pAA0bhF7RequestV7OptionsVSg_tYaF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteUser", + "printedName": "deleteUser()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP10deleteUseryyYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP10deleteUseryyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAuthSession", + "printedName": "fetchAuthSession(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSession", + "printedName": "Amplify.AuthSession", + "usr": "s:7Amplify11AuthSessionP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchSessionRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP05fetchB7Session7optionsAA0bF0_pAA0b5FetchF7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP05fetchB7Session7optionsAA0bF0_pAA0b5FetchF7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetPassword", + "printedName": "resetPassword(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordResult", + "printedName": "Amplify.AuthResetPasswordResult", + "usr": "s:7Amplify23AuthResetPasswordResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthResetPasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP13resetPassword3for7optionsAA0b5ResetF6ResultVSS_AA0biF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP13resetPassword3for7optionsAA0b5ResetF6ResultVSS_AA0biF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirmResetPassword", + "printedName": "confirmResetPassword(for:with:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP20confirmResetPassword3for4with16confirmationCode7optionsySS_S2SAA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP20confirmResetPassword3for4with16confirmationCode7optionsySS_S2SAA0b7ConfirmfG7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUpTOTP", + "printedName": "setUpTOTP()", + "children": [ + { + "kind": "TypeNominal", + "name": "TOTPSetupDetails", + "printedName": "Amplify.TOTPSetupDetails", + "usr": "s:7Amplify16TOTPSetupDetailsV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP9setUpTOTPAA16TOTPSetupDetailsVyYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP9setUpTOTPAA16TOTPSetupDetailsVyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifyTOTPSetup", + "printedName": "verifyTOTPSetup(code:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthCategoryBehaviorP15verifyTOTPSetup4code7optionsySS_AA06VerifyF7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP15verifyTOTPSetup4code7optionsySS_AA06VerifyF7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify20AuthCategoryBehaviorP", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthCategoryDeviceBehavior", + "printedName": "AuthCategoryDeviceBehavior", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryUserBehavior", + "printedName": "AuthCategoryUserBehavior", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthCategoryConfiguration", + "printedName": "AuthCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvs", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategoryConfiguration", + "printedName": "Amplify.AuthCategoryConfiguration", + "usr": "s:7Amplify25AuthCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25AuthCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategoryConfiguration", + "printedName": "Amplify.AuthCategoryConfiguration", + "usr": "s:7Amplify25AuthCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthCategoryConfigurationV", + "mangledName": "$s7Amplify25AuthCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthCategoryDeviceBehavior", + "printedName": "AuthCategoryDeviceBehavior", + "children": [ + { + "kind": "Function", + "name": "fetchDevices", + "printedName": "fetchDevices(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthDevice]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchDevicesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP12fetchDevices7optionsSayAA0bD0_pGAA0b5FetchG7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP12fetchDevices7optionsSayAA0bD0_pGAA0b5FetchG7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forgetDevice", + "printedName": "forgetDevice(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthForgetDeviceRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP06forgetD0_7optionsyAA0bD0_pSg_AA0b6ForgetD7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP06forgetD0_7optionsyAA0bD0_pSg_AA0b6ForgetD7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rememberDevice", + "printedName": "rememberDevice(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRememberDeviceRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP08rememberD07optionsyAA0b8RememberD7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP08rememberD07optionsyAA0b8RememberD7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AuthCategoryPlugin", + "printedName": "AuthCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18AuthCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify18AuthCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify18AuthCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify18AuthCategoryPluginP", + "mangledName": "$s7Amplify18AuthCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AuthCategoryBehavior", + "printedName": "AuthCategoryBehavior", + "usr": "s:7Amplify20AuthCategoryBehaviorP", + "mangledName": "$s7Amplify20AuthCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryDeviceBehavior", + "printedName": "AuthCategoryDeviceBehavior", + "usr": "s:7Amplify26AuthCategoryDeviceBehaviorP", + "mangledName": "$s7Amplify26AuthCategoryDeviceBehaviorP" + }, + { + "kind": "Conformance", + "name": "AuthCategoryUserBehavior", + "printedName": "AuthCategoryUserBehavior", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthCategoryUserBehavior", + "printedName": "AuthCategoryUserBehavior", + "children": [ + { + "kind": "Function", + "name": "getCurrentUser", + "printedName": "getCurrentUser()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUser", + "printedName": "Amplify.AuthUser", + "usr": "s:7Amplify8AuthUserP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP010getCurrentD0AA0bD0_pyYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP010getCurrentD0AA0bD0_pyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchUserAttributes", + "printedName": "fetchUserAttributes(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP05fetchD10Attributes7optionsSayAA0bD9AttributeVGAA0b5FetchdG7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP05fetchD10Attributes7optionsSayAA0bD9AttributeVGAA0b5FetchdG7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(userAttribute:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeResult", + "printedName": "Amplify.AuthUpdateAttributeResult", + "usr": "s:7Amplify25AuthUpdateAttributeResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP6update13userAttribute7optionsAA0b6UpdateH6ResultVAA0bdH0V_AA0bjdH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP6update13userAttribute7optionsAA0b6UpdateH6ResultVAA0bdH0V_AA0bjdH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(userAttributes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Amplify.AuthUserAttributeKey : Amplify.AuthUpdateAttributeResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeResult", + "printedName": "Amplify.AuthUpdateAttributeResult", + "usr": "s:7Amplify25AuthUpdateAttributeResultV" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP6update14userAttributes7optionsSDyAA0bD12AttributeKeyOAA0b6UpdateJ6ResultVGSayAA0bdJ0VG_AA0bldH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP6update14userAttributes7optionsSDyAA0bD12AttributeKeyOAA0b6UpdateJ6ResultVGSayAA0bdJ0VG_AA0bldH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resendConfirmationCode", + "printedName": "resendConfirmationCode(forUserAttributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP22resendConfirmationCode03forD12AttributeKey7optionsAA0bH15DeliveryDetailsVAA0bdjK0O_AA0bj6ResendgH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP22resendConfirmationCode03forD12AttributeKey7optionsAA0bH15DeliveryDetailsVAA0bdjK0O_AA0bj6ResendgH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendVerificationCode", + "printedName": "sendVerificationCode(forUserAttributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP20sendVerificationCode03forD12AttributeKey7optionsAA0bH15DeliveryDetailsVAA0bdjK0O_AA0b4SenddjgH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP20sendVerificationCode03forD12AttributeKey7optionsAA0bH15DeliveryDetailsVAA0bdjK0O_AA0b4SenddjgH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "confirm", + "printedName": "confirm(userAttribute:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP7confirm13userAttribute16confirmationCode7optionsyAA0bdH3KeyO_SSAA0b7ConfirmdH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP7confirm13userAttribute16confirmationCode7optionsyAA0bdH3KeyO_SSAA0b7ConfirmdH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "update", + "printedName": "update(oldPassword:to:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthChangePasswordRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP6update11oldPassword2to7optionsySS_SSAA0b6ChangeH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP6update11oldPassword2to7optionsySS_SSAA0b6ChangeH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify24AuthCategoryUserBehaviorP", + "mangledName": "$s7Amplify24AuthCategoryUserBehaviorP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AuthError", + "printedName": "AuthError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO7serviceyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO7serviceyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO7unknownyACSS_s0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO7unknownyACSS_s0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "validation", + "printedName": "validation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Amplify.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO10validationyACSS_S2Ss0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO10validationyACSS_S2Ss0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "notAuthorized", + "printedName": "notAuthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO13notAuthorizedyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO13notAuthorizedyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidState", + "printedName": "invalidState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO12invalidStateyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO12invalidStateyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "signedOut", + "printedName": "signedOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO9signedOutyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO9signedOutyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "sessionExpired", + "printedName": "sessionExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.AuthError", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9AuthErrorO14sessionExpiredyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9AuthErrorO14sessionExpiredyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9AuthErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify9AuthErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9AuthErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify9AuthErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify9AuthErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify9AuthErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9AuthErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify9AuthErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify9AuthErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify9AuthErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9AuthErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify9AuthErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9AuthErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify9AuthErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + }, + { + "kind": "TypeNominal", + "name": "AuthError", + "printedName": "Amplify.AuthError", + "usr": "s:7Amplify9AuthErrorO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9AuthErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify9AuthErrorO2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify9AuthErrorO", + "mangledName": "$s7Amplify9AuthErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AdditionalInfo", + "printedName": "AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify14AdditionalInfoa", + "mangledName": "$s7Amplify14AdditionalInfoa", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthCodeDeliveryDetails", + "printedName": "AuthCodeDeliveryDetails", + "children": [ + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV11destinationAA0D11DestinationOvp", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV11destinationAA0D11DestinationOvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV11destinationAA0D11DestinationOvg", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV11destinationAA0D11DestinationOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributeKey", + "printedName": "attributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUserAttributeKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV12attributeKeyAA0b13UserAttributeG0OSgvp", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV12attributeKeyAA0b13UserAttributeG0OSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUserAttributeKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV12attributeKeyAA0b13UserAttributeG0OSgvg", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV12attributeKeyAA0b13UserAttributeG0OSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(destination:attributeKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUserAttributeKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV11destination12attributeKeyAcA0D11DestinationO_AA0b13UserAttributeH0OSgtcfc", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV11destination12attributeKeyAcA0D11DestinationO_AA0b13UserAttributeH0OSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV23__derived_struct_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV23__derived_struct_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV", + "mangledName": "$s7Amplify23AuthCodeDeliveryDetailsV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthDevice", + "printedName": "AuthDevice", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10AuthDeviceP2idSSvp", + "mangledName": "$s7Amplify10AuthDeviceP2idSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10AuthDeviceP2idSSvg", + "mangledName": "$s7Amplify10AuthDeviceP2idSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10AuthDeviceP4nameSSvp", + "mangledName": "$s7Amplify10AuthDeviceP4nameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10AuthDeviceP4nameSSvg", + "mangledName": "$s7Amplify10AuthDeviceP4nameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify10AuthDeviceP", + "mangledName": "$s7Amplify10AuthDeviceP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthProvider", + "printedName": "AuthProvider", + "children": [ + { + "kind": "TypeAlias", + "name": "ProviderName", + "printedName": "ProviderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify12AuthProviderO0C4Namea", + "mangledName": "$s7Amplify12AuthProviderO0C4Namea", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "amazon", + "printedName": "amazon", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO6amazonyA2CmF", + "mangledName": "$s7Amplify12AuthProviderO6amazonyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "apple", + "printedName": "apple", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO5appleyA2CmF", + "mangledName": "$s7Amplify12AuthProviderO5appleyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO8facebookyA2CmF", + "mangledName": "$s7Amplify12AuthProviderO8facebookyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "google", + "printedName": "google", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO6googleyA2CmF", + "mangledName": "$s7Amplify12AuthProviderO6googleyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "twitter", + "printedName": "twitter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO7twitteryA2CmF", + "mangledName": "$s7Amplify12AuthProviderO7twitteryA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "oidc", + "printedName": "oidc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> (Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.ProviderName)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ProviderName", + "printedName": "Amplify.AuthProvider.ProviderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO4oidcyACSScACmF", + "mangledName": "$s7Amplify12AuthProviderO4oidcyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "saml", + "printedName": "saml", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> (Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.ProviderName)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ProviderName", + "printedName": "Amplify.AuthProvider.ProviderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO4samlyACSScACmF", + "mangledName": "$s7Amplify12AuthProviderO4samlyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.Type) -> (Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthProvider.ProviderName) -> Amplify.AuthProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.ProviderName)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ProviderName", + "printedName": "Amplify.AuthProvider.ProviderName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthProviderO6customyACSScACmF", + "mangledName": "$s7Amplify12AuthProviderO6customyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthProviderO6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify12AuthProviderO6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12AuthProviderO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify12AuthProviderO4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + }, + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthProviderO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify12AuthProviderO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify12AuthProviderO", + "mangledName": "$s7Amplify12AuthProviderO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSession", + "printedName": "AuthSession", + "children": [ + { + "kind": "Var", + "name": "isSignedIn", + "printedName": "isSignedIn", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11AuthSessionP10isSignedInSbvp", + "mangledName": "$s7Amplify11AuthSessionP10isSignedInSbvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11AuthSessionP10isSignedInSbvg", + "mangledName": "$s7Amplify11AuthSessionP10isSignedInSbvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify11AuthSessionP", + "mangledName": "$s7Amplify11AuthSessionP", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "AllowedMFATypes", + "printedName": "AllowedMFATypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify15AllowedMFATypesa", + "mangledName": "$s7Amplify15AllowedMFATypesa", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthSignInStep", + "printedName": "AuthSignInStep", + "children": [ + { + "kind": "Var", + "name": "confirmSignInWithSMSMFACode", + "printedName": "confirmSignInWithSMSMFACode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO07confirmcD14WithSMSMFACodeyAcA0B19CodeDeliveryDetailsV_SDyS2SGSgtcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO07confirmcD14WithSMSMFACodeyAcA0B19CodeDeliveryDetailsV_SDyS2SGSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "confirmSignInWithCustomChallenge", + "printedName": "confirmSignInWithCustomChallenge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO07confirmcD19WithCustomChallengeyACSDyS2SGSgcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO07confirmcD19WithCustomChallengeyACSDyS2SGSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "confirmSignInWithNewPassword", + "printedName": "confirmSignInWithNewPassword", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO07confirmcD15WithNewPasswordyACSDyS2SGSgcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO07confirmcD15WithNewPasswordyACSDyS2SGSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "confirmSignInWithTOTPCode", + "printedName": "confirmSignInWithTOTPCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO07confirmcD12WithTOTPCodeyA2CmF", + "mangledName": "$s7Amplify14AuthSignInStepO07confirmcD12WithTOTPCodeyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "continueSignInWithTOTPSetup", + "printedName": "continueSignInWithTOTPSetup", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.TOTPSetupDetails) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.TOTPSetupDetails) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.TOTPSetupDetails)", + "children": [ + { + "kind": "TypeNominal", + "name": "TOTPSetupDetails", + "printedName": "Amplify.TOTPSetupDetails", + "usr": "s:7Amplify16TOTPSetupDetailsV" + } + ], + "usr": "s:7Amplify16TOTPSetupDetailsV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO08continuecD13WithTOTPSetupyAcA0H7DetailsVcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO08continuecD13WithTOTPSetupyAcA0H7DetailsVcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "continueSignInWithMFASelection", + "printedName": "continueSignInWithMFASelection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AllowedMFATypes) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AllowedMFATypes) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AllowedMFATypes)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AllowedMFATypes", + "printedName": "Amplify.AllowedMFATypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + } + ], + "usr": "s:Sh" + } + ] + } + ], + "usr": "s:Sh" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO08continuecD16WithMFASelectionyACShyAA7MFATypeOGcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO08continuecD16WithMFASelectionyACShyAA7MFATypeOGcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "resetPassword", + "printedName": "resetPassword", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO13resetPasswordyACSDyS2SGSgcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO13resetPasswordyACSDyS2SGSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "confirmSignUp", + "printedName": "confirmSignUp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> (Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AdditionalInfo?) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO07confirmC2UpyACSDyS2SGSgcACmF", + "mangledName": "$s7Amplify14AuthSignInStepO07confirmC2UpyACSDyS2SGSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "done", + "printedName": "done", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignInStep.Type) -> Amplify.AuthSignInStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignInStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignInStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignInStepO4doneyA2CmF", + "mangledName": "$s7Amplify14AuthSignInStepO4doneyA2CmF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14AuthSignInStepO", + "mangledName": "$s7Amplify14AuthSignInStepO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeAlias", + "name": "UserId", + "printedName": "UserId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify6UserIda", + "mangledName": "$s7Amplify6UserIda", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthSignUpStep", + "printedName": "AuthSignUpStep", + "children": [ + { + "kind": "Var", + "name": "confirmUser", + "printedName": "confirmUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignUpStep.Type) -> (Amplify.AuthCodeDeliveryDetails?, Amplify.AdditionalInfo?, Amplify.UserId?) -> Amplify.AuthSignUpStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthCodeDeliveryDetails?, Amplify.AdditionalInfo?, Amplify.UserId?) -> Amplify.AuthSignUpStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.AuthCodeDeliveryDetails?, Amplify.AdditionalInfo?, Amplify.UserId?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthCodeDeliveryDetails?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserId?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "UserId", + "printedName": "Amplify.UserId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignUpStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignUpStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignUpStepO11confirmUseryAcA0B19CodeDeliveryDetailsVSg_SDyS2SGSgSSSgtcACmF", + "mangledName": "$s7Amplify14AuthSignUpStepO11confirmUseryAcA0B19CodeDeliveryDetailsVSg_SDyS2SGSgSSSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "done", + "printedName": "done", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthSignUpStep.Type) -> Amplify.AuthSignUpStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthSignUpStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthSignUpStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14AuthSignUpStepO4doneyA2CmF", + "mangledName": "$s7Amplify14AuthSignUpStepO4doneyA2CmF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14AuthSignUpStepO", + "mangledName": "$s7Amplify14AuthSignUpStepO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "AuthUpdateAttributeStep", + "printedName": "AuthUpdateAttributeStep", + "children": [ + { + "kind": "Var", + "name": "confirmAttributeWithCode", + "printedName": "confirmAttributeWithCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUpdateAttributeStep.Type) -> (Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthUpdateAttributeStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthUpdateAttributeStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUpdateAttributeStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUpdateAttributeStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23AuthUpdateAttributeStepO07confirmD8WithCodeyAcA0bH15DeliveryDetailsV_SDyS2SGSgtcACmF", + "mangledName": "$s7Amplify23AuthUpdateAttributeStepO07confirmD8WithCodeyAcA0bH15DeliveryDetailsV_SDyS2SGSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "done", + "printedName": "done", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUpdateAttributeStep.Type) -> Amplify.AuthUpdateAttributeStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUpdateAttributeStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUpdateAttributeStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23AuthUpdateAttributeStepO4doneyA2CmF", + "mangledName": "$s7Amplify23AuthUpdateAttributeStepO4doneyA2CmF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify23AuthUpdateAttributeStepO", + "mangledName": "$s7Amplify23AuthUpdateAttributeStepO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "AuthUser", + "printedName": "AuthUser", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthUserP8usernameSSvp", + "mangledName": "$s7Amplify8AuthUserP8usernameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthUserP8usernameSSvg", + "mangledName": "$s7Amplify8AuthUserP8usernameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userId", + "printedName": "userId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthUserP6userIdSSvp", + "mangledName": "$s7Amplify8AuthUserP6userIdSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthUserP6userIdSSvg", + "mangledName": "$s7Amplify8AuthUserP6userIdSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify8AuthUserP", + "mangledName": "$s7Amplify8AuthUserP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthUserAttribute", + "printedName": "AuthUserAttribute", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthUserAttributeV3keyAA0bcD3KeyOvp", + "mangledName": "$s7Amplify17AuthUserAttributeV3keyAA0bcD3KeyOvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthUserAttributeV3keyAA0bcD3KeyOvg", + "mangledName": "$s7Amplify17AuthUserAttributeV3keyAA0bcD3KeyOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthUserAttributeV5valueSSvp", + "mangledName": "$s7Amplify17AuthUserAttributeV5valueSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthUserAttributeV5valueSSvg", + "mangledName": "$s7Amplify17AuthUserAttributeV5valueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17AuthUserAttributeV_5valueAcA0bcD3KeyO_SStcfc", + "mangledName": "$s7Amplify17AuthUserAttributeV_5valueAcA0bcD3KeyO_SStcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17AuthUserAttributeV", + "mangledName": "$s7Amplify17AuthUserAttributeV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthUserAttributeKey", + "printedName": "AuthUserAttributeKey", + "children": [ + { + "kind": "Var", + "name": "address", + "printedName": "address", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO7addressyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO7addressyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "birthDate", + "printedName": "birthDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO9birthDateyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO9birthDateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO5emailyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO5emailyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "emailVerified", + "printedName": "emailVerified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO13emailVerifiedyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO13emailVerifiedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO10familyNameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO10familyNameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO6genderyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO6genderyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO9givenNameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO9givenNameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "locale", + "printedName": "locale", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO6localeyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO6localeyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO10middleNameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO10middleNameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO4nameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO4nameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "nickname", + "printedName": "nickname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO8nicknameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO8nicknameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "phoneNumber", + "printedName": "phoneNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO11phoneNumberyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO11phoneNumberyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "phoneNumberVerified", + "printedName": "phoneNumberVerified", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO19phoneNumberVerifiedyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO19phoneNumberVerifiedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO7pictureyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO7pictureyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "preferredUsername", + "printedName": "preferredUsername", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO17preferredUsernameyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO17preferredUsernameyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO7profileyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO7profileyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO3subyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO3subyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO9updatedAtyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO9updatedAtyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "website", + "printedName": "website", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO7websiteyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO7websiteyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "zoneInfo", + "printedName": "zoneInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO8zoneInfoyA2CmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO8zoneInfoyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> (Swift.String) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO6customyACSScACmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO6customyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthUserAttributeKey.Type) -> (Swift.String) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.AuthUserAttributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthUserAttributeKey.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthUserAttributeKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20AuthUserAttributeKeyO7unknownyACSScACmF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO7unknownyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthUserAttributeKeyO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20AuthUserAttributeKeyO9hashValueSivp", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20AuthUserAttributeKeyO9hashValueSivg", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AuthUserAttributeKeyO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify20AuthUserAttributeKeyO", + "mangledName": "$s7Amplify20AuthUserAttributeKeyO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeAlias", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11Destinationa", + "mangledName": "$s7Amplify11Destinationa", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DeliveryDestination", + "printedName": "DeliveryDestination", + "children": [ + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DeliveryDestination.Type) -> (Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Destination?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Destination?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Destination", + "printedName": "Amplify.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DeliveryDestination.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DeliveryDestination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19DeliveryDestinationO5emailyACSSSgcACmF", + "mangledName": "$s7Amplify19DeliveryDestinationO5emailyACSSSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "phone", + "printedName": "phone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DeliveryDestination.Type) -> (Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Destination?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Destination?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Destination", + "printedName": "Amplify.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DeliveryDestination.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DeliveryDestination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19DeliveryDestinationO5phoneyACSSSgcACmF", + "mangledName": "$s7Amplify19DeliveryDestinationO5phoneyACSSSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "sms", + "printedName": "sms", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DeliveryDestination.Type) -> (Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Destination?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Destination?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Destination", + "printedName": "Amplify.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DeliveryDestination.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DeliveryDestination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19DeliveryDestinationO3smsyACSSSgcACmF", + "mangledName": "$s7Amplify19DeliveryDestinationO3smsyACSSSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DeliveryDestination.Type) -> (Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Destination?) -> Amplify.DeliveryDestination", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Destination?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Destination?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Destination", + "printedName": "Amplify.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DeliveryDestination.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DeliveryDestination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19DeliveryDestinationO7unknownyACSSSgcACmF", + "mangledName": "$s7Amplify19DeliveryDestinationO7unknownyACSSSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + }, + { + "kind": "TypeNominal", + "name": "DeliveryDestination", + "printedName": "Amplify.DeliveryDestination", + "usr": "s:7Amplify19DeliveryDestinationO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19DeliveryDestinationO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify19DeliveryDestinationO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify19DeliveryDestinationO", + "mangledName": "$s7Amplify19DeliveryDestinationO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MFAType", + "printedName": "MFAType", + "children": [ + { + "kind": "Var", + "name": "sms", + "printedName": "sms", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MFAType.Type) -> Amplify.MFAType", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MFAType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MFAType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify7MFATypeO3smsyA2CmF", + "mangledName": "$s7Amplify7MFATypeO3smsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "totp", + "printedName": "totp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MFAType.Type) -> Amplify.MFAType", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MFAType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MFAType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify7MFATypeO4totpyA2CmF", + "mangledName": "$s7Amplify7MFATypeO4totpyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MFAType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MFAType", + "printedName": "Amplify.MFAType", + "usr": "s:7Amplify7MFATypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify7MFATypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify7MFATypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify7MFATypeO8RawValuea", + "mangledName": "$s7Amplify7MFATypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify7MFATypeO8rawValueSSvp", + "mangledName": "$s7Amplify7MFATypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify7MFATypeO8rawValueSSvg", + "mangledName": "$s7Amplify7MFATypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify7MFATypeO", + "mangledName": "$s7Amplify7MFATypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TOTPSetupDetails", + "printedName": "TOTPSetupDetails", + "children": [ + { + "kind": "Var", + "name": "sharedSecret", + "printedName": "sharedSecret", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16TOTPSetupDetailsV12sharedSecretSSvp", + "mangledName": "$s7Amplify16TOTPSetupDetailsV12sharedSecretSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16TOTPSetupDetailsV12sharedSecretSSvg", + "mangledName": "$s7Amplify16TOTPSetupDetailsV12sharedSecretSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16TOTPSetupDetailsV8usernameSSvp", + "mangledName": "$s7Amplify16TOTPSetupDetailsV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16TOTPSetupDetailsV8usernameSSvg", + "mangledName": "$s7Amplify16TOTPSetupDetailsV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sharedSecret:username:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TOTPSetupDetails", + "printedName": "Amplify.TOTPSetupDetails", + "usr": "s:7Amplify16TOTPSetupDetailsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16TOTPSetupDetailsV12sharedSecret8usernameACSS_SStcfc", + "mangledName": "$s7Amplify16TOTPSetupDetailsV12sharedSecret8usernameACSS_SStcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getSetupURI", + "printedName": "getSetupURI(appName:accountName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16TOTPSetupDetailsV11getSetupURI7appName07accountH010Foundation3URLVSS_SSSgtKF", + "mangledName": "$s7Amplify16TOTPSetupDetailsV11getSetupURI7appName07accountH010Foundation3URLVSS_SSSgtKF", + "moduleName": "Amplify", + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16TOTPSetupDetailsV", + "mangledName": "$s7Amplify16TOTPSetupDetailsV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthAttributeResendConfirmationCodeRequest", + "printedName": "AuthAttributeResendConfirmationCodeRequest", + "children": [ + { + "kind": "Var", + "name": "attributeKey", + "printedName": "attributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKeyAA0b4UsercI0Ovp", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKeyAA0b4UsercI0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKeyAA0b4UsercI0Ovg", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKeyAA0b4UsercI0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthAttributeResendConfirmationCodeRequest", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKey7optionsAcA0b4UsercI0O_AC7OptionsVtcfc", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV12attributeKey7optionsAcA0b4UsercI0O_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0ypSgvp", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0ypSgvg", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0AEypSg_tcfc", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV06pluginH0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV", + "mangledName": "$s7Amplify42AuthAttributeResendConfirmationCodeRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthAttributeResendConfirmationCodeRequest.Options", + "usr": "s:7Amplify42AuthAttributeResendConfirmationCodeRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSendUserAttributeVerificationCodeRequest", + "printedName": "AuthSendUserAttributeVerificationCodeRequest", + "children": [ + { + "kind": "Var", + "name": "attributeKey", + "printedName": "attributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKeyAA0bdeJ0Ovp", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKeyAA0bdeJ0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKeyAA0bdeJ0Ovg", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKeyAA0bdeJ0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributeKey:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSendUserAttributeVerificationCodeRequest", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKey7optionsAcA0bdeJ0O_AC7OptionsVtcfc", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV12attributeKey7optionsAcA0bdeJ0O_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0ypSgvp", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0ypSgvg", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0AEypSg_tcfc", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV06pluginI0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV", + "mangledName": "$s7Amplify44AuthSendUserAttributeVerificationCodeRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSendUserAttributeVerificationCodeRequest.Options", + "usr": "s:7Amplify44AuthSendUserAttributeVerificationCodeRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthChangePasswordRequest", + "printedName": "AuthChangePasswordRequest", + "children": [ + { + "kind": "Var", + "name": "oldPassword", + "printedName": "oldPassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthChangePasswordRequestV03oldD0SSvp", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV03oldD0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthChangePasswordRequestV03oldD0SSvg", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV03oldD0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "newPassword", + "printedName": "newPassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthChangePasswordRequestV03newD0SSvp", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV03newD0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthChangePasswordRequestV03newD0SSvg", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV03newD0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(oldPassword:newPassword:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthChangePasswordRequest", + "printedName": "Amplify.AuthChangePasswordRequest", + "usr": "s:7Amplify25AuthChangePasswordRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthChangePasswordRequestV03oldD003newD07optionsACSS_SSAC7OptionsVtcfc", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV03oldD003newD07optionsACSS_SSAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthChangePasswordRequestV", + "mangledName": "$s7Amplify25AuthChangePasswordRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthChangePasswordRequest.Options", + "usr": "s:7Amplify25AuthChangePasswordRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthConfirmResetPasswordRequest", + "printedName": "AuthConfirmResetPasswordRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV8usernameSSvp", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV8usernameSSvg", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "newPassword", + "printedName": "newPassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV03newE0SSvp", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV03newE0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV03newE0SSvg", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV03newE0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "confirmationCode", + "printedName": "confirmationCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV16confirmationCodeSSvp", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV16confirmationCodeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV16confirmationCodeSSvg", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV16confirmationCodeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:newPassword:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthConfirmResetPasswordRequest", + "printedName": "Amplify.AuthConfirmResetPasswordRequest", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV8username03newE016confirmationCode7optionsACSS_S2SAC7OptionsVtcfc", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV8username03newE016confirmationCode7optionsACSS_S2SAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV", + "mangledName": "$s7Amplify31AuthConfirmResetPasswordRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmResetPasswordRequest.Options", + "usr": "s:7Amplify31AuthConfirmResetPasswordRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthConfirmSignInRequest", + "printedName": "AuthConfirmSignInRequest", + "children": [ + { + "kind": "Var", + "name": "challengeResponse", + "printedName": "challengeResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignInRequestV17challengeResponseSSvp", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV17challengeResponseSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV17challengeResponseSSvg", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV17challengeResponseSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(challengeResponse:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthConfirmSignInRequest", + "printedName": "Amplify.AuthConfirmSignInRequest", + "usr": "s:7Amplify24AuthConfirmSignInRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV17challengeResponse7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV17challengeResponse7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthConfirmSignInRequestV", + "mangledName": "$s7Amplify24AuthConfirmSignInRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignInRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignInRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthConfirmSignUpRequest", + "printedName": "AuthConfirmSignUpRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV8usernameSSvp", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV8usernameSSvg", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV4codeSSvp", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV4codeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV4codeSSvg", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV4codeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:code:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthConfirmSignUpRequest", + "printedName": "Amplify.AuthConfirmSignUpRequest", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV8username4code7optionsACSS_SSAC7OptionsVtcfc", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV8username4code7optionsACSS_SSAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV", + "mangledName": "$s7Amplify24AuthConfirmSignUpRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmSignUpRequest.Options", + "usr": "s:7Amplify24AuthConfirmSignUpRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthConfirmUserAttributeRequest", + "printedName": "AuthConfirmUserAttributeRequest", + "children": [ + { + "kind": "Var", + "name": "attributeKey", + "printedName": "attributeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV12attributeKeyAA0bdeH0Ovp", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV12attributeKeyAA0bdeH0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV12attributeKeyAA0bdeH0Ovg", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV12attributeKeyAA0bdeH0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "confirmationCode", + "printedName": "confirmationCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV16confirmationCodeSSvp", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV16confirmationCodeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV16confirmationCodeSSvg", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV16confirmationCodeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(attributeKey:confirmationCode:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthConfirmUserAttributeRequest", + "printedName": "Amplify.AuthConfirmUserAttributeRequest", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttributeKey", + "printedName": "Amplify.AuthUserAttributeKey", + "usr": "s:7Amplify20AuthUserAttributeKeyO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV12attributeKey16confirmationCode7optionsAcA0bdeH0O_SSAC7OptionsVtcfc", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV12attributeKey16confirmationCode7optionsAcA0bdeH0O_SSAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV", + "mangledName": "$s7Amplify31AuthConfirmUserAttributeRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthConfirmUserAttributeRequest.Options", + "usr": "s:7Amplify31AuthConfirmUserAttributeRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthFetchDevicesRequest", + "printedName": "AuthFetchDevicesRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthFetchDevicesRequest", + "printedName": "Amplify.AuthFetchDevicesRequest", + "usr": "s:7Amplify23AuthFetchDevicesRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthFetchDevicesRequestV", + "mangledName": "$s7Amplify23AuthFetchDevicesRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchDevicesRequest.Options", + "usr": "s:7Amplify23AuthFetchDevicesRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthFetchSessionRequest", + "printedName": "AuthFetchSessionRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthFetchSessionRequest", + "printedName": "Amplify.AuthFetchSessionRequest", + "usr": "s:7Amplify23AuthFetchSessionRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "forceRefresh", + "printedName": "forceRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshSbvp", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshSbvg", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(forceRefresh:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefresh06pluginF0AESb_ypSgtcfc", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefresh06pluginF0AESb_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "forceRefresh", + "printedName": "forceRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshAEyFZ", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV12forceRefreshAEyFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthFetchSessionRequestV", + "mangledName": "$s7Amplify23AuthFetchSessionRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchSessionRequest.Options", + "usr": "s:7Amplify23AuthFetchSessionRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthFetchUserAttributesRequest", + "printedName": "AuthFetchUserAttributesRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthFetchUserAttributesRequest", + "printedName": "Amplify.AuthFetchUserAttributesRequest", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV", + "mangledName": "$s7Amplify30AuthFetchUserAttributesRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthFetchUserAttributesRequest.Options", + "usr": "s:7Amplify30AuthFetchUserAttributesRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthForgetDeviceRequest", + "printedName": "AuthForgetDeviceRequest", + "children": [ + { + "kind": "Var", + "name": "device", + "printedName": "device", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthForgetDeviceRequestV6deviceAA0bD0_pSgvp", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV6deviceAA0bD0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV6deviceAA0bD0_pSgvg", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV6deviceAA0bD0_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(device:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthForgetDeviceRequest", + "printedName": "Amplify.AuthForgetDeviceRequest", + "usr": "s:7Amplify23AuthForgetDeviceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthDevice", + "printedName": "Amplify.AuthDevice", + "usr": "s:7Amplify10AuthDeviceP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV6device7optionsAcA0bD0_pSg_AC7OptionsVtcfc", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV6device7optionsAcA0bD0_pSg_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthForgetDeviceRequestV", + "mangledName": "$s7Amplify23AuthForgetDeviceRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthForgetDeviceRequest.Options", + "usr": "s:7Amplify23AuthForgetDeviceRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthRememberDeviceRequest", + "printedName": "AuthRememberDeviceRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRememberDeviceRequest", + "printedName": "Amplify.AuthRememberDeviceRequest", + "usr": "s:7Amplify25AuthRememberDeviceRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthRememberDeviceRequestV", + "mangledName": "$s7Amplify25AuthRememberDeviceRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthRememberDeviceRequest.Options", + "usr": "s:7Amplify25AuthRememberDeviceRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthResendSignUpCodeRequest", + "printedName": "AuthResendSignUpCodeRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV8usernameSSvp", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV8usernameSSvg", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResendSignUpCodeRequest", + "printedName": "Amplify.AuthResendSignUpCodeRequest", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV8username7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV8username7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0ypSgvp", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0ypSgvg", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0AEypSg_tcfc", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7OptionsV06pluginH0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV", + "mangledName": "$s7Amplify27AuthResendSignUpCodeRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResendSignUpCodeRequest.Options", + "usr": "s:7Amplify27AuthResendSignUpCodeRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthResetPasswordRequest", + "printedName": "AuthResetPasswordRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthResetPasswordRequestV8usernameSSvp", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthResetPasswordRequestV8usernameSSvg", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordRequest", + "printedName": "Amplify.AuthResetPasswordRequest", + "usr": "s:7Amplify24AuthResetPasswordRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthResetPasswordRequestV8username7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV8username7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24AuthResetPasswordRequestV", + "mangledName": "$s7Amplify24AuthResetPasswordRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthResetPasswordRequest.Options", + "usr": "s:7Amplify24AuthResetPasswordRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSignInRequest", + "printedName": "AuthSignInRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignInRequestV8usernameSSSgvp", + "mangledName": "$s7Amplify17AuthSignInRequestV8usernameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignInRequestV8usernameSSSgvg", + "mangledName": "$s7Amplify17AuthSignInRequestV8usernameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignInRequestV8passwordSSSgvp", + "mangledName": "$s7Amplify17AuthSignInRequestV8passwordSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignInRequestV8passwordSSSgvg", + "mangledName": "$s7Amplify17AuthSignInRequestV8passwordSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignInRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify17AuthSignInRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignInRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify17AuthSignInRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignInRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify17AuthSignInRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInRequest", + "printedName": "Amplify.AuthSignInRequest", + "usr": "s:7Amplify17AuthSignInRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17AuthSignInRequestV8username8password7optionsACSSSg_AgC7OptionsVtcfc", + "mangledName": "$s7Amplify17AuthSignInRequestV8username8password7optionsACSSSg_AgC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify17AuthSignInRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify17AuthSignInRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify17AuthSignInRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV", + "mangledName": "$s7Amplify17AuthSignInRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17AuthSignInRequestV", + "mangledName": "$s7Amplify17AuthSignInRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignInRequest.Options", + "usr": "s:7Amplify17AuthSignInRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSignOutRequest", + "printedName": "AuthSignOutRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify18AuthSignOutRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignOutRequest", + "printedName": "Amplify.AuthSignOutRequest", + "usr": "s:7Amplify18AuthSignOutRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18AuthSignOutRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify18AuthSignOutRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "globalSignOut", + "printedName": "globalSignOut", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV06globalcD0Sbvp", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV06globalcD0Sbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV06globalcD0Sbvg", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV06globalcD0Sbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "presentationAnchorForWebUI", + "printedName": "presentationAnchorForWebUI", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV26presentationAnchorForWebUISo8NSWindowCSgvp", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV26presentationAnchorForWebUISo8NSWindowCSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV26presentationAnchorForWebUISo8NSWindowCSgvg", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV26presentationAnchorForWebUISo8NSWindowCSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(globalSignOut:presentationAnchor:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV06globalcD018presentationAnchor06pluginF0AESb_So8NSWindowCSgypSgtcfc", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV06globalcD018presentationAnchor06pluginF0AESb_So8NSWindowCSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + }, + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV18presentationAnchoryAESo8NSWindowCFZ", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV18presentationAnchoryAESo8NSWindowCFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV", + "mangledName": "$s7Amplify18AuthSignOutRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify18AuthSignOutRequestV", + "mangledName": "$s7Amplify18AuthSignOutRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignOutRequest.Options", + "usr": "s:7Amplify18AuthSignOutRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSignUpRequest", + "printedName": "AuthSignUpRequest", + "children": [ + { + "kind": "Var", + "name": "username", + "printedName": "username", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignUpRequestV8usernameSSvp", + "mangledName": "$s7Amplify17AuthSignUpRequestV8usernameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV8usernameSSvg", + "mangledName": "$s7Amplify17AuthSignUpRequestV8usernameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignUpRequestV8passwordSSSgvp", + "mangledName": "$s7Amplify17AuthSignUpRequestV8passwordSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV8passwordSSSgvg", + "mangledName": "$s7Amplify17AuthSignUpRequestV8passwordSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify17AuthSignUpRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(username:password:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpRequest", + "printedName": "Amplify.AuthSignUpRequest", + "usr": "s:7Amplify17AuthSignUpRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17AuthSignUpRequestV8username8password7optionsACSS_SSSgAC7OptionsVtcfc", + "mangledName": "$s7Amplify17AuthSignUpRequestV8username8password7optionsACSS_SSSgAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "userAttributes", + "printedName": "userAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AuthUserAttribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV14userAttributesSayAA0B13UserAttributeVGSgvp", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV14userAttributesSayAA0B13UserAttributeVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AuthUserAttribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV14userAttributesSayAA0B13UserAttributeVGSgvg", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV14userAttributesSayAA0B13UserAttributeVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userAttributes:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AuthUserAttribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV14userAttributes06pluginF0AESayAA0B13UserAttributeVGSg_ypSgtcfc", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV14userAttributes06pluginF0AESayAA0B13UserAttributeVGSg_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV", + "mangledName": "$s7Amplify17AuthSignUpRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17AuthSignUpRequestV", + "mangledName": "$s7Amplify17AuthSignUpRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthSignUpRequest.Options", + "usr": "s:7Amplify17AuthSignUpRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthUpdateUserAttributeRequest", + "printedName": "AuthUpdateUserAttributeRequest", + "children": [ + { + "kind": "Var", + "name": "userAttribute", + "printedName": "userAttribute", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV04userE0AA0bdE0Vvp", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV04userE0AA0bdE0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV04userE0AA0bdE0Vvg", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV04userE0AA0bdE0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userAttribute:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateUserAttributeRequest", + "printedName": "Amplify.AuthUpdateUserAttributeRequest", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV" + }, + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV04userE07optionsAcA0bdE0V_AC7OptionsVtcfc", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV04userE07optionsAcA0bdE0V_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV", + "mangledName": "$s7Amplify30AuthUpdateUserAttributeRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributeRequest.Options", + "usr": "s:7Amplify30AuthUpdateUserAttributeRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthUpdateUserAttributesRequest", + "printedName": "AuthUpdateUserAttributesRequest", + "children": [ + { + "kind": "Var", + "name": "userAttributes", + "printedName": "userAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV04userE0SayAA0bD9AttributeVGvp", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV04userE0SayAA0bD9AttributeVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV04userE0SayAA0bD9AttributeVGvg", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV04userE0SayAA0bD9AttributeVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userAttributes:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateUserAttributesRequest", + "printedName": "Amplify.AuthUpdateUserAttributesRequest", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthUserAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUserAttribute", + "printedName": "Amplify.AuthUserAttribute", + "usr": "s:7Amplify17AuthUserAttributeV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV04userE07optionsACSayAA0bD9AttributeVG_AC7OptionsVtcfc", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV04userE07optionsACSayAA0bD9AttributeVG_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0AEypSg_tcfc", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7OptionsV06pluginG0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV", + "mangledName": "$s7Amplify31AuthUpdateUserAttributesRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthUpdateUserAttributesRequest.Options", + "usr": "s:7Amplify31AuthUpdateUserAttributesRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthWebUISignInRequest", + "printedName": "AuthWebUISignInRequest", + "children": [ + { + "kind": "Var", + "name": "authProvider", + "printedName": "authProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22AuthWebUISignInRequestV12authProviderAA0bH0OSgvp", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV12authProviderAA0bH0OSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV12authProviderAA0bH0OSgvg", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV12authProviderAA0bH0OSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "presentationAnchor", + "printedName": "presentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22AuthWebUISignInRequestV18presentationAnchorSo8NSWindowCSgvp", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV18presentationAnchorSo8NSWindowCSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV18presentationAnchorSo8NSWindowCSgvg", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV18presentationAnchorSo8NSWindowCSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(presentationAnchor:authProvider:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthWebUISignInRequest", + "printedName": "Amplify.AuthWebUISignInRequest", + "usr": "s:7Amplify22AuthWebUISignInRequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthUIPresentationAnchor?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthUIPresentationAnchor", + "printedName": "Amplify.AuthUIPresentationAnchor", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ASPresentationAnchor", + "printedName": "AuthenticationServices.ASPresentationAnchor", + "children": [ + { + "kind": "TypeNominal", + "name": "NSWindow", + "printedName": "AppKit.NSWindow", + "usr": "c:objc(cs)NSWindow" + } + ] + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthProvider", + "printedName": "Amplify.AuthProvider", + "usr": "s:7Amplify12AuthProviderO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22AuthWebUISignInRequestV18presentationAnchor12authProvider7optionsACSo8NSWindowCSg_AA0bJ0OSgAC7OptionsVtcfc", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV18presentationAnchor12authProvider7optionsACSo8NSWindowCSg_AA0bJ0OSgAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "scopes", + "printedName": "scopes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV6scopesSaySSGSgvp", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV6scopesSaySSGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV6scopesSaySSGSgvg", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV6scopesSaySSGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(scopes:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV6scopes06pluginG0AESaySSGSg_ypSgtcfc", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV6scopes06pluginG0AESaySSGSg_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify22AuthWebUISignInRequestV", + "mangledName": "$s7Amplify22AuthWebUISignInRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.AuthWebUISignInRequest.Options", + "usr": "s:7Amplify22AuthWebUISignInRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "VerifyTOTPSetupRequest", + "printedName": "VerifyTOTPSetupRequest", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV4codeSSvp", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV4codeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV4codeSSvg", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV4codeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV4codeSSvs", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV4codeSSvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvs", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7optionsAC7OptionsVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(code:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "VerifyTOTPSetupRequest", + "printedName": "Amplify.VerifyTOTPSetupRequest", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV4code7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV4code7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0ypSgvp", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0ypSgvg", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0AEypSg_tcfc", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7OptionsV06pluginE0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV", + "mangledName": "$s7Amplify22VerifyTOTPSetupRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.VerifyTOTPSetupRequest.Options", + "usr": "s:7Amplify22VerifyTOTPSetupRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthResetPasswordResult", + "printedName": "AuthResetPasswordResult", + "children": [ + { + "kind": "Var", + "name": "isPasswordReset", + "printedName": "isPasswordReset", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthResetPasswordResultV02isdC0Sbvp", + "mangledName": "$s7Amplify23AuthResetPasswordResultV02isdC0Sbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthResetPasswordResultV02isdC0Sbvg", + "mangledName": "$s7Amplify23AuthResetPasswordResultV02isdC0Sbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextStep", + "printedName": "nextStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AuthResetPasswordResultV8nextStepAA0bcdG0Ovp", + "mangledName": "$s7Amplify23AuthResetPasswordResultV8nextStepAA0bcdG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AuthResetPasswordResultV8nextStepAA0bcdG0Ovg", + "mangledName": "$s7Amplify23AuthResetPasswordResultV8nextStepAA0bcdG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isPasswordReset:nextStep:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordResult", + "printedName": "Amplify.AuthResetPasswordResult", + "usr": "s:7Amplify23AuthResetPasswordResultV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AuthResetPasswordResultV02isdC08nextStepACSb_AA0bcdH0Otcfc", + "mangledName": "$s7Amplify23AuthResetPasswordResultV02isdC08nextStepACSb_AA0bcdH0Otcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthResetPasswordResult", + "printedName": "Amplify.AuthResetPasswordResult", + "usr": "s:7Amplify23AuthResetPasswordResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthResetPasswordResult", + "printedName": "Amplify.AuthResetPasswordResult", + "usr": "s:7Amplify23AuthResetPasswordResultV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AuthResetPasswordResultV23__derived_struct_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify23AuthResetPasswordResultV23__derived_struct_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23AuthResetPasswordResultV", + "mangledName": "$s7Amplify23AuthResetPasswordResultV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthResetPasswordStep", + "printedName": "AuthResetPasswordStep", + "children": [ + { + "kind": "Var", + "name": "confirmResetPasswordWithCode", + "printedName": "confirmResetPasswordWithCode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthResetPasswordStep.Type) -> (Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthResetPasswordStep", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?) -> Amplify.AuthResetPasswordStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.AuthCodeDeliveryDetails, Amplify.AdditionalInfo?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCodeDeliveryDetails", + "printedName": "Amplify.AuthCodeDeliveryDetails", + "usr": "s:7Amplify23AuthCodeDeliveryDetailsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AdditionalInfo?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AdditionalInfo", + "printedName": "Amplify.AdditionalInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ] + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthResetPasswordStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthResetPasswordStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify21AuthResetPasswordStepO07confirmcD8WithCodeyAcA0bH15DeliveryDetailsV_SDyS2SGSgtcACmF", + "mangledName": "$s7Amplify21AuthResetPasswordStepO07confirmcD8WithCodeyAcA0bH15DeliveryDetailsV_SDyS2SGSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "done", + "printedName": "done", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthResetPasswordStep.Type) -> Amplify.AuthResetPasswordStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthResetPasswordStep.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthResetPasswordStep.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify21AuthResetPasswordStepO4doneyA2CmF", + "mangledName": "$s7Amplify21AuthResetPasswordStepO4doneyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + }, + { + "kind": "TypeNominal", + "name": "AuthResetPasswordStep", + "printedName": "Amplify.AuthResetPasswordStep", + "usr": "s:7Amplify21AuthResetPasswordStepO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21AuthResetPasswordStepO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify21AuthResetPasswordStepO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21AuthResetPasswordStepO", + "mangledName": "$s7Amplify21AuthResetPasswordStepO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthSignInResult", + "printedName": "AuthSignInResult", + "children": [ + { + "kind": "Var", + "name": "isSignedIn", + "printedName": "isSignedIn", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthSignInResultV08isSignedD0Sbvp", + "mangledName": "$s7Amplify16AuthSignInResultV08isSignedD0Sbvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignInResultV08isSignedD0Sbvg", + "mangledName": "$s7Amplify16AuthSignInResultV08isSignedD0Sbvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextStep", + "printedName": "nextStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovp", + "mangledName": "$s7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovg", + "mangledName": "$s7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovs", + "mangledName": "$s7Amplify16AuthSignInResultV8nextStepAA0bcdG0Ovs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nextStep:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignInResult", + "printedName": "Amplify.AuthSignInResult", + "usr": "s:7Amplify16AuthSignInResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthSignInStep", + "printedName": "Amplify.AuthSignInStep", + "usr": "s:7Amplify14AuthSignInStepO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16AuthSignInResultV8nextStepAcA0bcdG0O_tcfc", + "mangledName": "$s7Amplify16AuthSignInResultV8nextStepAcA0bcdG0O_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16AuthSignInResultV", + "mangledName": "$s7Amplify16AuthSignInResultV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthSignOutResult", + "printedName": "AuthSignOutResult", + "declKind": "Protocol", + "usr": "s:7Amplify17AuthSignOutResultP", + "mangledName": "$s7Amplify17AuthSignOutResultP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthSignUpResult", + "printedName": "AuthSignUpResult", + "children": [ + { + "kind": "Var", + "name": "isSignUpComplete", + "printedName": "isSignUpComplete", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthSignUpResultV02iscD8CompleteSbvp", + "mangledName": "$s7Amplify16AuthSignUpResultV02iscD8CompleteSbvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignUpResultV02iscD8CompleteSbvg", + "mangledName": "$s7Amplify16AuthSignUpResultV02iscD8CompleteSbvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextStep", + "printedName": "nextStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthSignUpResultV8nextStepAA0bcdG0Ovp", + "mangledName": "$s7Amplify16AuthSignUpResultV8nextStepAA0bcdG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignUpResultV8nextStepAA0bcdG0Ovg", + "mangledName": "$s7Amplify16AuthSignUpResultV8nextStepAA0bcdG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthSignUpResultV6userIDSSSgvp", + "mangledName": "$s7Amplify16AuthSignUpResultV6userIDSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthSignUpResultV6userIDSSSgvg", + "mangledName": "$s7Amplify16AuthSignUpResultV6userIDSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthSignUpResult", + "printedName": "Amplify.AuthSignUpResult", + "usr": "s:7Amplify16AuthSignUpResultV" + }, + { + "kind": "TypeNominal", + "name": "AuthSignUpStep", + "printedName": "Amplify.AuthSignUpStep", + "usr": "s:7Amplify14AuthSignUpStepO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16AuthSignUpResultV_6userIDAcA0bcD4StepO_SSSgtcfc", + "mangledName": "$s7Amplify16AuthSignUpResultV_6userIDAcA0bcD4StepO_SSSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16AuthSignUpResultV", + "mangledName": "$s7Amplify16AuthSignUpResultV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthUpdateAttributeResult", + "printedName": "AuthUpdateAttributeResult", + "children": [ + { + "kind": "Var", + "name": "isUpdated", + "printedName": "isUpdated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthUpdateAttributeResultV9isUpdatedSbvp", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV9isUpdatedSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthUpdateAttributeResultV9isUpdatedSbvg", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV9isUpdatedSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextStep", + "printedName": "nextStep", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25AuthUpdateAttributeResultV8nextStepAA0bcdG0Ovp", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV8nextStepAA0bcdG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25AuthUpdateAttributeResultV8nextStepAA0bcdG0Ovg", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV8nextStepAA0bcdG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isUpdated:nextStep:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeResult", + "printedName": "Amplify.AuthUpdateAttributeResult", + "usr": "s:7Amplify25AuthUpdateAttributeResultV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthUpdateAttributeStep", + "printedName": "Amplify.AuthUpdateAttributeStep", + "usr": "s:7Amplify23AuthUpdateAttributeStepO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify25AuthUpdateAttributeResultV9isUpdated8nextStepACSb_AA0bcdI0Otcfc", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV9isUpdated8nextStepACSb_AA0bcdI0Otcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify25AuthUpdateAttributeResultV", + "mangledName": "$s7Amplify25AuthUpdateAttributeResultV", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "DataStoreResult", + "printedName": "DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify15DataStoreResulta", + "mangledName": "$s7Amplify15DataStoreResulta", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "DataStoreCallback", + "printedName": "DataStoreCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Result" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify17DataStoreCallbacka", + "mangledName": "$s7Amplify17DataStoreCallbacka", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "DataStoreCategory", + "printedName": "DataStoreCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17DataStoreCategoryC12categoryTypeAA0dF0Ovp", + "mangledName": "$s7Amplify17DataStoreCategoryC12categoryTypeAA0dF0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17DataStoreCategoryC12categoryTypeAA0dF0Ovg", + "mangledName": "$s7Amplify17DataStoreCategoryC12categoryTypeAA0dF0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataStoreCategoryPlugin", + "printedName": "Amplify.DataStoreCategoryPlugin", + "usr": "s:7Amplify23DataStoreCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC3add6pluginyAA0bcD6Plugin_p_tKF", + "mangledName": "$s7Amplify17DataStoreCategoryC3add6pluginyAA0bcD6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategoryPlugin", + "printedName": "Amplify.DataStoreCategoryPlugin", + "usr": "s:7Amplify23DataStoreCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC9getPlugin3forAA0bcdF0_pSS_tKF", + "mangledName": "$s7Amplify17DataStoreCategoryC9getPlugin3forAA0bcdF0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify17DataStoreCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "save", + "printedName": "save(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC4save_5wherexx_AA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC4save_5wherexx_AA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5query_4byIdxSgxm_SStYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC5query_4byIdxSgxm_SStYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5query_12byIdentifierxSgxm_SStYaKAA5ModelRzAA0H12IdentifiableRzAA0hG6FormatO7DefaultO0gJ0AaHPRtzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC5query_12byIdentifierxSgxm_SStYaKAA5ModelRzAA0H12IdentifiableRzAA0hG6FormatO7DefaultO0gJ0AaHPRtzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5query_12byIdentifierxSgxm_AA05ModelG0Vyx0G6FormatAA0H12IdentifiablePQzGtYaKAA0H0RzAaJRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC5query_12byIdentifierxSgxm_AA05ModelG0Vyx0G6FormatAA0H12IdentifiablePQzGtYaKAA0H0RzAaJRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:where:sort:paginate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5query_5where4sort8paginateSayxGxm_AA14QueryPredicate_pSgAA0I9SortInputVSgAA0i10PaginationL0VSgtYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC5query_5where4sort8paginateSayxGxm_AA14QueryPredicate_pSgAA0I9SortInputVSgAA0i10PaginationL0VSgtYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC6delete_5whereyx_AA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC6delete_5whereyx_AA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withId:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC6delete_6withId5whereyxm_SSAA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC6delete_6withId5whereyxm_SSAA14QueryPredicate_pSgtYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC6delete_14withIdentifier5whereyxm_SSAA14QueryPredicate_pSgtYaKAA5ModelRzAA0K12IdentifiableRzAA0kG6FormatO7DefaultO0gM0AaJPRtzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC6delete_14withIdentifier5whereyxm_SSAA14QueryPredicate_pSgtYaKAA5ModelRzAA0K12IdentifiableRzAA0kG6FormatO7DefaultO0gM0AaJPRtzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC6delete_14withIdentifier5whereyxm_AA05ModelG0Vyx0G6FormatAA0I12IdentifiablePQzGAA14QueryPredicate_pSgtYaKAA0I0RzAaJRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC6delete_14withIdentifier5whereyxm_AA05ModelG0Vyx0G6FormatAA0I12IdentifiablePQzGAA14QueryPredicate_pSgtYaKAA0I0RzAaJRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC6delete_5whereyxm_AA14QueryPredicate_ptYaKAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC6delete_5whereyxm_AA14QueryPredicate_ptYaKAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5startyyYaKF", + "mangledName": "$s7Amplify17DataStoreCategoryC5startyyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC4stopyyYaKF", + "mangledName": "$s7Amplify17DataStoreCategoryC4stopyyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5clearyyYaKF", + "mangledName": "$s7Amplify17DataStoreCategoryC5clearyyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17DataStoreCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify17DataStoreCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17DataStoreCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify17DataStoreCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17DataStoreCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify17DataStoreCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17DataStoreCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify17DataStoreCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC5resetyyYaF", + "mangledName": "$s7Amplify17DataStoreCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observe", + "printedName": "observe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC7observeyAA0A21AsyncThrowingSequenceCyAA13MutationEventVGxmAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC7observeyAA0A21AsyncThrowingSequenceCyAA13MutationEventVGxmAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeQuery", + "printedName": "observeQuery(for:where:sort:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence>", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreQuerySnapshot", + "printedName": "Amplify.DataStoreQuerySnapshot", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify22DataStoreQuerySnapshotV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17DataStoreCategoryC12observeQuery3for5where4sortAA0A21AsyncThrowingSequenceCyAA0bcF8SnapshotVyxGGxm_AA0F9Predicate_pSgAA0F9SortInputVSgtAA5ModelRzlF", + "mangledName": "$s7Amplify17DataStoreCategoryC12observeQuery3for5where4sortAA0A21AsyncThrowingSequenceCyAA0bcF8SnapshotVyxGGxm_AA0F9Predicate_pSgAA0F9SortInputVSgtAA5ModelRzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify17DataStoreCategoryC", + "mangledName": "$s7Amplify17DataStoreCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "DataStoreBaseBehavior", + "printedName": "DataStoreBaseBehavior", + "usr": "s:7Amplify21DataStoreBaseBehaviorP", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "DataStoreSubscribeBehavior", + "printedName": "DataStoreSubscribeBehavior", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "DataStoreCategoryBehavior", + "printedName": "DataStoreCategoryBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Amplify.DataStoreBaseBehavior & Amplify.DataStoreSubscribeBehavior" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify25DataStoreCategoryBehaviora", + "mangledName": "$s7Amplify25DataStoreCategoryBehaviora", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DataStoreBaseBehavior", + "printedName": "DataStoreBaseBehavior", + "children": [ + { + "kind": "Function", + "name": "save", + "printedName": "save(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP4save_5whereqd__qd___AA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP4save_5whereqd__qd___AA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5query_4byIdqd__Sgqd__m_SStYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5query_4byIdqd__Sgqd__m_SStYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5query_12byIdentifierqd__Sgqd__m_SStYaKAA5ModelRd__AA0I12IdentifiableRd__AA0iH6FormatO7DefaultO0hK0AaHPRtd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5query_12byIdentifierqd__Sgqd__m_SStYaKAA5ModelRd__AA0I12IdentifiableRd__AA0iH6FormatO7DefaultO0hK0AaHPRtd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:byIdentifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "M?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5query_12byIdentifierqd__Sgqd__m_AA05ModelH0Vyqd__0H6FormatAA0I12IdentifiablePQyd__GtYaKAA0I0Rd__AaJRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5query_12byIdentifierqd__Sgqd__m_AA05ModelH0Vyqd__0H6FormatAA0I12IdentifiablePQyd__GtYaKAA0I0Rd__AaJRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "query", + "printedName": "query(_:where:sort:paginate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPaginationInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5query_5where4sort8paginateSayqd__Gqd__m_AA14QueryPredicate_pSgAA0J9SortInputVSgAA0j10PaginationM0VSgtYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5query_5where4sort8paginateSayqd__Gqd__m_AA14QueryPredicate_pSgAA0J9SortInputVSgAA0j10PaginationM0VSgtYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP6delete_5whereyqd___AA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP6delete_5whereyqd___AA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withId:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP6delete_6withId5whereyqd__m_SSAA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP6delete_6withId5whereyqd__m_SSAA14QueryPredicate_pSgtYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP6delete_14withIdentifier5whereyqd__m_SSAA14QueryPredicate_pSgtYaKAA5ModelRd__AA0L12IdentifiableRd__AA0lH6FormatO7DefaultO0hN0AaJPRtd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP6delete_14withIdentifier5whereyqd__m_SSAA14QueryPredicate_pSgtYaKAA5ModelRd__AA0L12IdentifiableRd__AA0lH6FormatO7DefaultO0hN0AaJPRtd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:withIdentifier:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "M.IdentifierFormat" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP6delete_14withIdentifier5whereyqd__m_AA05ModelH0Vyqd__0H6FormatAA0J12IdentifiablePQyd__GAA14QueryPredicate_pSgtYaKAA0J0Rd__AaJRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP6delete_14withIdentifier5whereyqd__m_AA05ModelH0Vyqd__0H6FormatAA0J12IdentifiablePQyd__GAA14QueryPredicate_pSgtYaKAA0J0Rd__AaJRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "delete", + "printedName": "delete(_:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP6delete_5whereyqd__m_AA14QueryPredicate_ptYaKAA5ModelRd__lF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP6delete_5whereyqd__m_AA14QueryPredicate_ptYaKAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5startyyYaKF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5startyyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP4stopyyYaKF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP4stopyyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clear", + "printedName": "clear()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21DataStoreBaseBehaviorP5clearyyYaKF", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP5clearyyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21DataStoreBaseBehaviorP", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DataStoreSubscribeBehavior", + "printedName": "DataStoreSubscribeBehavior", + "children": [ + { + "kind": "Function", + "name": "observe", + "printedName": "observe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP7observeyAA0A21AsyncThrowingSequenceCyAA13MutationEventVGqd__mAA5ModelRd__lF", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP7observeyAA0A21AsyncThrowingSequenceCyAA13MutationEventVGqd__mAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeQuery", + "printedName": "observeQuery(for:where:sort:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence>", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreQuerySnapshot", + "printedName": "Amplify.DataStoreQuerySnapshot", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify22DataStoreQuerySnapshotV" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicate?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QuerySortInput?", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP12observeQuery3for5where4sortAA0A21AsyncThrowingSequenceCyAA0bcG8SnapshotVyqd__GGqd__m_AA0G9Predicate_pSgAA0G9SortInputVSgtAA5ModelRd__lF", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP12observeQuery3for5where4sortAA0A21AsyncThrowingSequenceCyAA0bcG8SnapshotVyqd__GGqd__m_AA0G9Predicate_pSgAA0G9SortInputVSgtAA5ModelRd__lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DataStoreCategoryConfiguration", + "printedName": "DataStoreCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategoryConfiguration", + "printedName": "Amplify.DataStoreCategoryConfiguration", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategoryConfiguration", + "printedName": "Amplify.DataStoreCategoryConfiguration", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV", + "mangledName": "$s7Amplify30DataStoreCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreCategoryPlugin", + "printedName": "DataStoreCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23DataStoreCategoryPluginPAAE12categoryTypeAA0dG0Ovp", + "mangledName": "$s7Amplify23DataStoreCategoryPluginPAAE12categoryTypeAA0dG0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23DataStoreCategoryPluginPAAE12categoryTypeAA0dG0Ovg", + "mangledName": "$s7Amplify23DataStoreCategoryPluginPAAE12categoryTypeAA0dG0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23DataStoreCategoryPluginP", + "mangledName": "$s7Amplify23DataStoreCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "DataStoreSubscribeBehavior", + "printedName": "DataStoreSubscribeBehavior", + "usr": "s:7Amplify26DataStoreSubscribeBehaviorP", + "mangledName": "$s7Amplify26DataStoreSubscribeBehaviorP" + }, + { + "kind": "Conformance", + "name": "DataStoreBaseBehavior", + "printedName": "DataStoreBaseBehavior", + "usr": "s:7Amplify21DataStoreBaseBehaviorP", + "mangledName": "$s7Amplify21DataStoreBaseBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreSyncConflict", + "printedName": "DataStoreSyncConflict", + "children": [ + { + "kind": "Var", + "name": "localModel", + "printedName": "localModel", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21DataStoreSyncConflictV10localModelAA0G0_pvp", + "mangledName": "$s7Amplify21DataStoreSyncConflictV10localModelAA0G0_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21DataStoreSyncConflictV10localModelAA0G0_pvg", + "mangledName": "$s7Amplify21DataStoreSyncConflictV10localModelAA0G0_pvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "remoteModel", + "printedName": "remoteModel", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21DataStoreSyncConflictV11remoteModelAA0G0_pvp", + "mangledName": "$s7Amplify21DataStoreSyncConflictV11remoteModelAA0G0_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21DataStoreSyncConflictV11remoteModelAA0G0_pvg", + "mangledName": "$s7Amplify21DataStoreSyncConflictV11remoteModelAA0G0_pvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errors", + "printedName": "errors", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.GraphQLError]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21DataStoreSyncConflictV6errorsSayAA12GraphQLErrorVGSgvp", + "mangledName": "$s7Amplify21DataStoreSyncConflictV6errorsSayAA12GraphQLErrorVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.GraphQLError]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLError]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLError", + "printedName": "Amplify.GraphQLError", + "usr": "s:7Amplify12GraphQLErrorV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21DataStoreSyncConflictV6errorsSayAA12GraphQLErrorVGSgvg", + "mangledName": "$s7Amplify21DataStoreSyncConflictV6errorsSayAA12GraphQLErrorVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mutationType", + "printedName": "mutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21DataStoreSyncConflictV12mutationTypeAA015GraphQLMutationG0Ovp", + "mangledName": "$s7Amplify21DataStoreSyncConflictV12mutationTypeAA015GraphQLMutationG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21DataStoreSyncConflictV12mutationTypeAA015GraphQLMutationG0Ovg", + "mangledName": "$s7Amplify21DataStoreSyncConflictV12mutationTypeAA015GraphQLMutationG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify21DataStoreSyncConflictV", + "mangledName": "$s7Amplify21DataStoreSyncConflictV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DataStoreError", + "printedName": "DataStoreError", + "children": [ + { + "kind": "Var", + "name": "api", + "printedName": "api", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.AmplifyError, Amplify.MutationEvent?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError, Amplify.MutationEvent?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.AmplifyError, Amplify.MutationEvent?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MutationEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO3apiyAcA0aD0_p_AA13MutationEventVSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO3apiyAcA0aD0_p_AA13MutationEventVSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO13configurationyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO13configurationyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "conflict", + "printedName": "conflict", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.DataStoreSyncConflict) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreSyncConflict) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreSyncConflict)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreSyncConflict", + "printedName": "Amplify.DataStoreSyncConflict", + "usr": "s:7Amplify21DataStoreSyncConflictV" + } + ], + "usr": "s:7Amplify21DataStoreSyncConflictV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO8conflictyAcA0bC12SyncConflictVcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO8conflictyAcA0bC12SyncConflictVcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidCondition", + "printedName": "invalidCondition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO16invalidConditionyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO16invalidConditionyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "decodingError", + "printedName": "decodingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO08decodingD0yACSS_SStcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO08decodingD0yACSS_SStcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "internalOperation", + "printedName": "internalOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO17internalOperationyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO17internalOperationyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidDatabase", + "printedName": "invalidDatabase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Swift.String, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(path: Swift.String, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO15invalidDatabaseyACSS_s0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO15invalidDatabaseyACSS_s0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidModelName", + "printedName": "invalidModelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Swift.String) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO16invalidModelNameyACSScACmF", + "mangledName": "$s7Amplify14DataStoreErrorO16invalidModelNameyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidOperation", + "printedName": "invalidOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(causedBy: Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO16invalidOperationyACs0D0_pSg_tcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO16invalidOperationyACs0D0_pSg_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "nonUniqueResult", + "printedName": "nonUniqueResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Swift.String, Swift.Int) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(model: Swift.String, count: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO15nonUniqueResultyACSS_SitcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO15nonUniqueResultyACSS_SitcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "sync", + "printedName": "sync", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO4syncyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO4syncyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DataStoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.DataStoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DataStoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DataStoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14DataStoreErrorO7unknownyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify14DataStoreErrorO7unknownyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14DataStoreErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify14DataStoreErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14DataStoreErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify14DataStoreErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify14DataStoreErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify14DataStoreErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14DataStoreErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify14DataStoreErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14DataStoreErrorO010underlyingD0s0D0_pSgvp", + "mangledName": "$s7Amplify14DataStoreErrorO010underlyingD0s0D0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14DataStoreErrorO010underlyingD0s0D0_pSgvg", + "mangledName": "$s7Amplify14DataStoreErrorO010underlyingD0s0D0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify14DataStoreErrorO16errorDescription18recoverySuggestion0E0ACSS_SSs0D0_ptcfc", + "mangledName": "$s7Amplify14DataStoreErrorO16errorDescription18recoverySuggestion0E0ACSS_SSs0D0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "invalidDateFormat", + "printedName": "invalidDateFormat(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14DataStoreErrorO17invalidDateFormatyACSSFZ", + "mangledName": "$s7Amplify14DataStoreErrorO17invalidDateFormatyACSSFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14DataStoreErrorO", + "mangledName": "$s7Amplify14DataStoreErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataStoreStatement", + "printedName": "DataStoreStatement", + "children": [ + { + "kind": "AssociatedType", + "name": "Variables", + "printedName": "Variables", + "declKind": "AssociatedType", + "usr": "s:7Amplify18DataStoreStatementP9VariablesQa", + "mangledName": "$s7Amplify18DataStoreStatementP9VariablesQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "modelType", + "printedName": "modelType", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify18DataStoreStatementP9modelTypeAA5Model_pXpvp", + "mangledName": "$s7Amplify18DataStoreStatementP9modelTypeAA5Model_pXpvp", + "moduleName": "Amplify", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18DataStoreStatementP9modelTypeAA5Model_pXpvg", + "mangledName": "$s7Amplify18DataStoreStatementP9modelTypeAA5Model_pXpvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelSchema", + "printedName": "modelSchema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18DataStoreStatementP11modelSchemaAA05ModelF0Vvp", + "mangledName": "$s7Amplify18DataStoreStatementP11modelSchemaAA05ModelF0Vvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18DataStoreStatementP11modelSchemaAA05ModelF0Vvg", + "mangledName": "$s7Amplify18DataStoreStatementP11modelSchemaAA05ModelF0Vvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18DataStoreStatementP11stringValueSSvp", + "mangledName": "$s7Amplify18DataStoreStatementP11stringValueSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18DataStoreStatementP11stringValueSSvg", + "mangledName": "$s7Amplify18DataStoreStatementP11stringValueSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "variables", + "printedName": "variables", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Variables" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18DataStoreStatementP9variables9VariablesQzvp", + "mangledName": "$s7Amplify18DataStoreStatementP9variables9VariablesQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Variables" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18DataStoreStatementP9variables9VariablesQzvg", + "mangledName": "$s7Amplify18DataStoreStatementP9variables9VariablesQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify18DataStoreStatementP", + "mangledName": "$s7Amplify18DataStoreStatementP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GraphQLMutationType", + "printedName": "GraphQLMutationType", + "children": [ + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLMutationType.Type) -> Amplify.GraphQLMutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLMutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLMutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19GraphQLMutationTypeO6createyA2CmF", + "mangledName": "$s7Amplify19GraphQLMutationTypeO6createyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "update", + "printedName": "update", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLMutationType.Type) -> Amplify.GraphQLMutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLMutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLMutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19GraphQLMutationTypeO6updateyA2CmF", + "mangledName": "$s7Amplify19GraphQLMutationTypeO6updateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLMutationType.Type) -> Amplify.GraphQLMutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLMutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLMutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19GraphQLMutationTypeO6deleteyA2CmF", + "mangledName": "$s7Amplify19GraphQLMutationTypeO6deleteyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLMutationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify19GraphQLMutationTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify19GraphQLMutationTypeO8RawValuea", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19GraphQLMutationTypeO8rawValueSSvp", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19GraphQLMutationTypeO8rawValueSSvg", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLMutationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify19GraphQLMutationTypeO8AllCasesa", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8AllCasesa", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLMutationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19GraphQLMutationTypeO8allCasesSayACGvpZ", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8allCasesSayACGvpZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLMutationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19GraphQLMutationTypeO8allCasesSayACGvgZ", + "mangledName": "$s7Amplify19GraphQLMutationTypeO8allCasesSayACGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify19GraphQLMutationTypeO", + "mangledName": "$s7Amplify19GraphQLMutationTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLMutationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLQueryType", + "printedName": "GraphQLQueryType", + "children": [ + { + "kind": "Var", + "name": "get", + "printedName": "get", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLQueryType.Type) -> Amplify.GraphQLQueryType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLQueryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLQueryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16GraphQLQueryTypeO3getyA2CmF", + "mangledName": "$s7Amplify16GraphQLQueryTypeO3getyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "list", + "printedName": "list", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLQueryType.Type) -> Amplify.GraphQLQueryType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLQueryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLQueryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16GraphQLQueryTypeO4listyA2CmF", + "mangledName": "$s7Amplify16GraphQLQueryTypeO4listyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "sync", + "printedName": "sync", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLQueryType.Type) -> Amplify.GraphQLQueryType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLQueryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLQueryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16GraphQLQueryTypeO4syncyA2CmF", + "mangledName": "$s7Amplify16GraphQLQueryTypeO4syncyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLQueryType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLQueryType", + "printedName": "Amplify.GraphQLQueryType", + "usr": "s:7Amplify16GraphQLQueryTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16GraphQLQueryTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify16GraphQLQueryTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16GraphQLQueryTypeO8RawValuea", + "mangledName": "$s7Amplify16GraphQLQueryTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16GraphQLQueryTypeO8rawValueSSvp", + "mangledName": "$s7Amplify16GraphQLQueryTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16GraphQLQueryTypeO8rawValueSSvg", + "mangledName": "$s7Amplify16GraphQLQueryTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify16GraphQLQueryTypeO", + "mangledName": "$s7Amplify16GraphQLQueryTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphQLSubscriptionType", + "printedName": "GraphQLSubscriptionType", + "children": [ + { + "kind": "Var", + "name": "onCreate", + "printedName": "onCreate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLSubscriptionType.Type) -> Amplify.GraphQLSubscriptionType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLSubscriptionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8onCreateyA2CmF", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8onCreateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "onDelete", + "printedName": "onDelete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLSubscriptionType.Type) -> Amplify.GraphQLSubscriptionType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLSubscriptionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8onDeleteyA2CmF", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8onDeleteyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "onUpdate", + "printedName": "onUpdate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.GraphQLSubscriptionType.Type) -> Amplify.GraphQLSubscriptionType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.GraphQLSubscriptionType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.GraphQLSubscriptionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8onUpdateyA2CmF", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8onUpdateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GraphQLSubscriptionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8RawValuea", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8rawValueSSvp", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8rawValueSSvg", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLSubscriptionType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8AllCasesa", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8AllCasesa", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLSubscriptionType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8allCasesSayACGvpZ", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8allCasesSayACGvpZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLSubscriptionType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO8allCasesSayACGvgZ", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO8allCasesSayACGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO", + "mangledName": "$s7Amplify23GraphQLSubscriptionTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.GraphQLSubscriptionType]", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLSubscriptionType", + "printedName": "Amplify.GraphQLSubscriptionType", + "usr": "s:7Amplify23GraphQLSubscriptionTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyModelRegistration", + "printedName": "AmplifyModelRegistration", + "children": [ + { + "kind": "Function", + "name": "registerModels", + "printedName": "registerModels(registry:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelRegistry.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelRegistry", + "printedName": "Amplify.ModelRegistry", + "usr": "s:7Amplify13ModelRegistryV" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A17ModelRegistrationP14registerModels8registryyAA0B8RegistryVm_tF", + "mangledName": "$s7Amplify0A17ModelRegistrationP14registerModels8registryyAA0B8RegistryVm_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A17ModelRegistrationP7versionSSvp", + "mangledName": "$s7Amplify0A17ModelRegistrationP7versionSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A17ModelRegistrationP7versionSSvg", + "mangledName": "$s7Amplify0A17ModelRegistrationP7versionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A17ModelRegistrationP", + "mangledName": "$s7Amplify0A17ModelRegistrationP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Embeddable", + "printedName": "Embeddable", + "children": [ + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10EmbeddableP6schemaAA11ModelSchemaVvpZ", + "mangledName": "$s7Amplify10EmbeddableP6schemaAA11ModelSchemaVvpZ", + "moduleName": "Amplify", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10EmbeddableP6schemaAA11ModelSchemaVvgZ", + "mangledName": "$s7Amplify10EmbeddableP6schemaAA11ModelSchemaVvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "defineSchema", + "printedName": "defineSchema(name:attributes:define:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.ModelAttribute...", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout Amplify.ModelSchemaDefinition) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelSchemaDefinition)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchemaDefinition", + "printedName": "Amplify.ModelSchemaDefinition", + "usr": "s:7Amplify21ModelSchemaDefinitionV" + } + ], + "usr": "s:7Amplify21ModelSchemaDefinitionV" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify10EmbeddablePAAE12defineSchema4name10attributes0C0AA05ModelD0VSSSg_AA0G9AttributeOdyAA0gD10DefinitionVzXEtFZ", + "mangledName": "$s7Amplify10EmbeddablePAAE12defineSchema4name10attributes0C0AA05ModelD0VSSSg_AA0G9AttributeOdyAA0gD10DefinitionVzXEtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify10EmbeddableP", + "mangledName": "$s7Amplify10EmbeddableP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelDateFormatting", + "printedName": "ModelDateFormatting", + "children": [ + { + "kind": "Var", + "name": "decodingStrategy", + "printedName": "decodingStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "DateDecodingStrategy", + "printedName": "Foundation.JSONDecoder.DateDecodingStrategy", + "usr": "s:10Foundation11JSONDecoderC20DateDecodingStrategyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19ModelDateFormattingV16decodingStrategy10Foundation11JSONDecoderC0c8DecodingF0OvpZ", + "mangledName": "$s7Amplify19ModelDateFormattingV16decodingStrategy10Foundation11JSONDecoderC0c8DecodingF0OvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateDecodingStrategy", + "printedName": "Foundation.JSONDecoder.DateDecodingStrategy", + "usr": "s:10Foundation11JSONDecoderC20DateDecodingStrategyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19ModelDateFormattingV16decodingStrategy10Foundation11JSONDecoderC0c8DecodingF0OvgZ", + "mangledName": "$s7Amplify19ModelDateFormattingV16decodingStrategy10Foundation11JSONDecoderC0c8DecodingF0OvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "encodingStrategy", + "printedName": "encodingStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "DateEncodingStrategy", + "printedName": "Foundation.JSONEncoder.DateEncodingStrategy", + "usr": "s:10Foundation11JSONEncoderC20DateEncodingStrategyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19ModelDateFormattingV16encodingStrategy10Foundation11JSONEncoderC0c8EncodingF0OvpZ", + "mangledName": "$s7Amplify19ModelDateFormattingV16encodingStrategy10Foundation11JSONEncoderC0c8EncodingF0OvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateEncodingStrategy", + "printedName": "Foundation.JSONEncoder.DateEncodingStrategy", + "usr": "s:10Foundation11JSONEncoderC20DateEncodingStrategyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19ModelDateFormattingV16encodingStrategy10Foundation11JSONEncoderC0c8EncodingF0OvgZ", + "mangledName": "$s7Amplify19ModelDateFormattingV16encodingStrategy10Foundation11JSONEncoderC0c8EncodingF0OvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify19ModelDateFormattingV", + "mangledName": "$s7Amplify19ModelDateFormattingV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "EnumPersistable", + "printedName": "EnumPersistable", + "children": [ + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15EnumPersistableP8rawValueSSvp", + "mangledName": "$s7Amplify15EnumPersistableP8rawValueSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15EnumPersistableP8rawValueSSvg", + "mangledName": "$s7Amplify15EnumPersistableP8rawValueSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify15EnumPersistableP8rawValuexSgSS_tcfc", + "mangledName": "$s7Amplify15EnumPersistableP8rawValuexSgSS_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify15EnumPersistableP", + "mangledName": "$s7Amplify15EnumPersistableP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelListDecoderRegistry", + "printedName": "ModelListDecoderRegistry", + "children": [ + { + "kind": "Var", + "name": "listDecoders", + "printedName": "listDecoders", + "children": [ + { + "kind": "TypeNominal", + "name": "AtomicValue", + "printedName": "Amplify.AtomicValue<[Amplify.ModelListDecoder.Type]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelListDecoder.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.ModelListDecoder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListDecoder", + "printedName": "Amplify.ModelListDecoder", + "usr": "s:7Amplify16ModelListDecoderP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:7Amplify11AtomicValueC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvpZ", + "mangledName": "$s7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AtomicValue", + "printedName": "Amplify.AtomicValue<[Amplify.ModelListDecoder.Type]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelListDecoder.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.ModelListDecoder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListDecoder", + "printedName": "Amplify.ModelListDecoder", + "usr": "s:7Amplify16ModelListDecoderP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:7Amplify11AtomicValueC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvgZ", + "mangledName": "$s7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AtomicValue", + "printedName": "Amplify.AtomicValue<[Amplify.ModelListDecoder.Type]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelListDecoder.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.ModelListDecoder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListDecoder", + "printedName": "Amplify.ModelListDecoder", + "usr": "s:7Amplify16ModelListDecoderP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:7Amplify11AtomicValueC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvsZ", + "mangledName": "$s7Amplify24ModelListDecoderRegistryV12listDecodersAA11AtomicValueCySayAA0bcD0_pXpGGvsZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "registerDecoder", + "printedName": "registerDecoder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.ModelListDecoder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListDecoder", + "printedName": "Amplify.ModelListDecoder", + "usr": "s:7Amplify16ModelListDecoderP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ModelListDecoderRegistryV08registerD0yyAA0bcD0_pXpFZ", + "mangledName": "$s7Amplify24ModelListDecoderRegistryV08registerD0yyAA0bcD0_pXpFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24ModelListDecoderRegistryV", + "mangledName": "$s7Amplify24ModelListDecoderRegistryV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelListDecoder", + "printedName": "ModelListDecoder", + "children": [ + { + "kind": "Function", + "name": "decode", + "printedName": "decode(modelType:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnyModelListProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelListProvider", + "printedName": "Amplify.AnyModelListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify20AnyModelListProviderV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ModelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelListDecoderP6decode9modelType7decoderAA03AnybC8ProviderVyqd__GSgqd__m_s0D0_ptAA0B0Rd__lFZ", + "mangledName": "$s7Amplify16ModelListDecoderP6decode9modelType7decoderAA03AnybC8ProviderVyqd__GSgqd__m_s0D0_ptAA0B0Rd__lFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify16ModelListDecoderP", + "mangledName": "$s7Amplify16ModelListDecoderP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelListMarker", + "printedName": "ModelListMarker", + "declKind": "Protocol", + "usr": "s:7Amplify15ModelListMarkerP", + "mangledName": "$s7Amplify15ModelListMarkerP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelListProviderState", + "printedName": "ModelListProviderState", + "children": [ + { + "kind": "Var", + "name": "notLoaded", + "printedName": "notLoaded", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.ModelListProviderState.Type) -> ([Swift.String], [Swift.String]) -> Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String], [Swift.String]) -> Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(associatedIdentifiers: [Swift.String], associatedFields: [Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelListProviderState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelListProviderState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22ModelListProviderStateO9notLoadedyACyxGSaySSG_AFtcAEmAA0B0RzlF", + "mangledName": "$s7Amplify22ModelListProviderStateO9notLoadedyACyxGSaySSG_AFtcAEmAA0B0RzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "loaded", + "printedName": "loaded", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.ModelListProviderState.Type) -> ([Element]) -> Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Element]) -> Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Element])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelListProviderState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelListProviderState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22ModelListProviderStateO6loadedyACyxGSayxGcAEmAA0B0RzlF", + "mangledName": "$s7Amplify22ModelListProviderStateO6loadedyACyxGSayxGcAEmAA0B0RzlF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify22ModelListProviderStateO", + "mangledName": "$s7Amplify22ModelListProviderStateO", + "moduleName": "Amplify", + "genericSig": "", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelListProvider", + "printedName": "ModelListProvider", + "children": [ + { + "kind": "AssociatedType", + "name": "Element", + "printedName": "Element", + "declKind": "AssociatedType", + "usr": "s:7Amplify17ModelListProviderP7ElementQa", + "mangledName": "$s7Amplify17ModelListProviderP7ElementQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderP8getStateAA0bcdF0Oy7ElementQzGyF", + "mangledName": "$s7Amplify17ModelListProviderP8getStateAA0bcdF0Oy7ElementQzGyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Self.Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderP4loadSay7ElementQzGyYaKF", + "mangledName": "$s7Amplify17ModelListProviderP4loadSay7ElementQzGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasNextPage", + "printedName": "hasNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderP11hasNextPageSbyF", + "mangledName": "$s7Amplify17ModelListProviderP11hasNextPageSbyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderP11getNextPageAA0C0Cy7ElementQzGyYaKF", + "mangledName": "$s7Amplify17ModelListProviderP11getNextPageAA0C0Cy7ElementQzGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderP6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify17ModelListProviderP6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eraseToAnyModelListProvider", + "printedName": "eraseToAnyModelListProvider()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelListProvider", + "printedName": "Amplify.AnyModelListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:7Amplify20AnyModelListProviderV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify17ModelListProviderPAAE010eraseToAnybcD0AA0gbcD0Vy7ElementQzGyF", + "mangledName": "$s7Amplify17ModelListProviderPAAE010eraseToAnybcD0AA0gbcD0Vy7ElementQzGyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17ModelListProviderP", + "mangledName": "$s7Amplify17ModelListProviderP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AnyModelListProvider", + "printedName": "AnyModelListProvider", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(provider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelListProvider", + "printedName": "Amplify.AnyModelListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify20AnyModelListProviderV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Provider" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20AnyModelListProviderV8providerACyxGqd___tc7ElementQyd__RszAA0cdE0Rd__lufc", + "mangledName": "$s7Amplify20AnyModelListProviderV8providerACyxGqd___tc7ElementQyd__RszAA0cdE0Rd__lufc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AnyModelListProviderV8getStateAA0cdeG0OyxGyF", + "mangledName": "$s7Amplify20AnyModelListProviderV8getStateAA0cdeG0OyxGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AnyModelListProviderV4loadSayxGyYaKF", + "mangledName": "$s7Amplify20AnyModelListProviderV4loadSayxGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasNextPage", + "printedName": "hasNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AnyModelListProviderV11hasNextPageSbyF", + "mangledName": "$s7Amplify20AnyModelListProviderV11hasNextPageSbyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AnyModelListProviderV11getNextPageAA0D0CyxGyYaKF", + "mangledName": "$s7Amplify20AnyModelListProviderV11getNextPageAA0D0CyxGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20AnyModelListProviderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify20AnyModelListProviderV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify20AnyModelListProviderV7Elementa", + "mangledName": "$s7Amplify20AnyModelListProviderV7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20AnyModelListProviderV", + "mangledName": "$s7Amplify20AnyModelListProviderV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelListProvider", + "printedName": "ModelListProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:7Amplify17ModelListProviderP", + "mangledName": "$s7Amplify17ModelListProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_LazyReferenceValue", + "printedName": "_LazyReferenceValue", + "children": [ + { + "kind": "Var", + "name": "_state", + "printedName": "_state", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19_LazyReferenceValueP6_stateAA01_bcD5StateOvp", + "mangledName": "$s7Amplify19_LazyReferenceValueP6_stateAA01_bcD5StateOvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19_LazyReferenceValueP6_stateAA01_bcD5StateOvg", + "mangledName": "$s7Amplify19_LazyReferenceValueP6_stateAA01_bcD5StateOvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19_LazyReferenceValueP", + "mangledName": "$s7Amplify19_LazyReferenceValueP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "_LazyReferenceValueState", + "printedName": "_LazyReferenceValueState", + "children": [ + { + "kind": "Var", + "name": "notLoaded", + "printedName": "notLoaded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify._LazyReferenceValueState.Type) -> ([Amplify.LazyReferenceIdentifier]?) -> Amplify._LazyReferenceValueState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.LazyReferenceIdentifier]?) -> Amplify._LazyReferenceValueState", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(identifiers: [Amplify.LazyReferenceIdentifier]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.LazyReferenceIdentifier]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.LazyReferenceIdentifier]", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify._LazyReferenceValueState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify._LazyReferenceValueState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify24_LazyReferenceValueStateO9notLoadedyACSayAA0bC10IdentifierVGSg_tcACmF", + "mangledName": "$s7Amplify24_LazyReferenceValueStateO9notLoadedyACSayAA0bC10IdentifierVGSg_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "loaded", + "printedName": "loaded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify._LazyReferenceValueState.Type) -> (Amplify.Model?) -> Amplify._LazyReferenceValueState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Model?) -> Amplify._LazyReferenceValueState", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(model: Amplify.Model?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Model?", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify._LazyReferenceValueState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify._LazyReferenceValueState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify24_LazyReferenceValueStateO6loadedyAcA5Model_pSg_tcACmF", + "mangledName": "$s7Amplify24_LazyReferenceValueStateO6loadedyAcA5Model_pSg_tcACmF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify24_LazyReferenceValueStateO", + "mangledName": "$s7Amplify24_LazyReferenceValueStateO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelProviderState", + "printedName": "ModelProviderState", + "children": [ + { + "kind": "Var", + "name": "notLoaded", + "printedName": "notLoaded", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.ModelProviderState.Type) -> ([Amplify.LazyReferenceIdentifier]?) -> Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.LazyReferenceIdentifier]?) -> Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(identifiers: [Amplify.LazyReferenceIdentifier]?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.LazyReferenceIdentifier]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.LazyReferenceIdentifier]", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelProviderState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelProviderState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ModelProviderStateO9notLoadedyACyxGSayAA23LazyReferenceIdentifierVGSg_tcAEmAA0B0RzlF", + "mangledName": "$s7Amplify18ModelProviderStateO9notLoadedyACyxGSayAA23LazyReferenceIdentifierVGSg_tcAEmAA0B0RzlF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "loaded", + "printedName": "loaded", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.ModelProviderState.Type) -> (Element?) -> Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Element?) -> Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(model: Element?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelProviderState.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelProviderState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ModelProviderStateO6loadedyACyxGxSg_tcAEmAA0B0RzlF", + "mangledName": "$s7Amplify18ModelProviderStateO6loadedyACyxGxSg_tcAEmAA0B0RzlF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify18ModelProviderStateO", + "mangledName": "$s7Amplify18ModelProviderStateO", + "moduleName": "Amplify", + "genericSig": "", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelProvider", + "printedName": "ModelProvider", + "children": [ + { + "kind": "AssociatedType", + "name": "Element", + "printedName": "Element", + "declKind": "AssociatedType", + "usr": "s:7Amplify13ModelProviderP7ElementQa", + "mangledName": "$s7Amplify13ModelProviderP7ElementQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self.Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelProviderP4load7ElementQzSgyYaKF", + "mangledName": "$s7Amplify13ModelProviderP4load7ElementQzSgyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelProviderP8getStateAA0bcE0Oy7ElementQzGyF", + "mangledName": "$s7Amplify13ModelProviderP8getStateAA0bcE0Oy7ElementQzGyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelProviderP6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify13ModelProviderP6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eraseToAnyModelProvider", + "printedName": "eraseToAnyModelProvider()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelProvider", + "printedName": "Amplify.AnyModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ], + "usr": "s:7Amplify16AnyModelProviderV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelProviderPAAE010eraseToAnybC0AA0fbC0Vy7ElementQzGyF", + "mangledName": "$s7Amplify13ModelProviderPAAE010eraseToAnybC0AA0fbC0Vy7ElementQzGyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify13ModelProviderP", + "mangledName": "$s7Amplify13ModelProviderP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AnyModelProvider", + "printedName": "AnyModelProvider", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(provider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelProvider", + "printedName": "Amplify.AnyModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify16AnyModelProviderV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Provider" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16AnyModelProviderV8providerACyxGqd___tc7ElementQyd__RszAA0cD0Rd__lufc", + "mangledName": "$s7Amplify16AnyModelProviderV8providerACyxGqd___tc7ElementQyd__RszAA0cD0Rd__lufc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AnyModelProviderV4loadxSgyYaKF", + "mangledName": "$s7Amplify16AnyModelProviderV4loadxSgyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AnyModelProviderV8getStateAA0cdF0OyxGyF", + "mangledName": "$s7Amplify16AnyModelProviderV8getStateAA0cdF0OyxGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AnyModelProviderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify16AnyModelProviderV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16AnyModelProviderV7Elementa", + "mangledName": "$s7Amplify16AnyModelProviderV7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16AnyModelProviderV", + "mangledName": "$s7Amplify16AnyModelProviderV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelProvider", + "printedName": "ModelProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:7Amplify13ModelProviderP", + "mangledName": "$s7Amplify13ModelProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelProviderRegistry", + "printedName": "ModelProviderRegistry", + "children": [ + { + "kind": "Function", + "name": "registerDecoder", + "printedName": "registerDecoder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.ModelProviderDecoder.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderDecoder", + "printedName": "Amplify.ModelProviderDecoder", + "usr": "s:7Amplify20ModelProviderDecoderP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21ModelProviderRegistryV15registerDecoderyyAA0bcF0_pXpFZ", + "mangledName": "$s7Amplify21ModelProviderRegistryV15registerDecoderyyAA0bcF0_pXpFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "DecoderSource", + "printedName": "DecoderSource", + "children": [ + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelProviderRegistryV13DecoderSourceV9dataStoreSSvpZ", + "mangledName": "$s7Amplify21ModelProviderRegistryV13DecoderSourceV9dataStoreSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelProviderRegistryV13DecoderSourceV9dataStoreSSvgZ", + "mangledName": "$s7Amplify21ModelProviderRegistryV13DecoderSourceV9dataStoreSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appSync", + "printedName": "appSync", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelProviderRegistryV13DecoderSourceV7appSyncSSvpZ", + "mangledName": "$s7Amplify21ModelProviderRegistryV13DecoderSourceV7appSyncSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelProviderRegistryV13DecoderSourceV7appSyncSSvgZ", + "mangledName": "$s7Amplify21ModelProviderRegistryV13DecoderSourceV7appSyncSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify21ModelProviderRegistryV13DecoderSourceV", + "mangledName": "$s7Amplify21ModelProviderRegistryV13DecoderSourceV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify21ModelProviderRegistryV", + "mangledName": "$s7Amplify21ModelProviderRegistryV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelProviderDecoder", + "printedName": "ModelProviderDecoder", + "children": [ + { + "kind": "Function", + "name": "decode", + "printedName": "decode(modelType:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnyModelProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyModelProvider", + "printedName": "Amplify.AnyModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify16AnyModelProviderV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ModelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelProviderDecoderP6decode9modelType7decoderAA03AnybC0Vyqd__GSgqd__m_s0D0_ptAA0B0Rd__lFZ", + "mangledName": "$s7Amplify20ModelProviderDecoderP6decode9modelType7decoderAA03AnybC0Vyqd__GSgqd__m_s0D0_ptAA0B0Rd__lFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify20ModelProviderDecoderP", + "mangledName": "$s7Amplify20ModelProviderDecoderP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelRegistry", + "printedName": "ModelRegistry", + "children": [ + { + "kind": "Var", + "name": "models", + "printedName": "models", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Model.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13ModelRegistryV6modelsSayAA0B0_pXpGvpZ", + "mangledName": "$s7Amplify13ModelRegistryV6modelsSayAA0B0_pXpGvpZ", + "moduleName": "Amplify", + "static": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Model.Type]", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13ModelRegistryV6modelsSayAA0B0_pXpGvgZ", + "mangledName": "$s7Amplify13ModelRegistryV6modelsSayAA0B0_pXpGvgZ", + "moduleName": "Amplify", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelSchemas", + "printedName": "modelSchemas", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelSchema]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13ModelRegistryV12modelSchemasSayAA0B6SchemaVGvpZ", + "mangledName": "$s7Amplify13ModelRegistryV12modelSchemasSayAA0B6SchemaVGvpZ", + "moduleName": "Amplify", + "static": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelSchema]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13ModelRegistryV12modelSchemasSayAA0B6SchemaVGvgZ", + "mangledName": "$s7Amplify13ModelRegistryV12modelSchemasSayAA0B6SchemaVGvgZ", + "moduleName": "Amplify", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(modelType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV8register9modelTypeyAA0B0_pXp_tFZ", + "mangledName": "$s7Amplify13ModelRegistryV8register9modelTypeyAA0B0_pXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "register", + "printedName": "register(modelType:modelSchema:jsonDecoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Foundation.JSONDecoder?) throws -> Amplify.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Foundation.JSONDecoder?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.JSONDecoder?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecoder", + "printedName": "Foundation.JSONDecoder", + "usr": "s:10Foundation11JSONDecoderC" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV8register9modelType0E6Schema11jsonDecoderyAA0B0_pXp_AA0bG0VAaH_pSS_10Foundation11JSONDecoderCSgtKctFZ", + "mangledName": "$s7Amplify13ModelRegistryV8register9modelType0E6Schema11jsonDecoderyAA0B0_pXp_AA0bG0VAaH_pSS_10Foundation11JSONDecoderCSgtKctFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "modelType", + "printedName": "modelType(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Model.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV9modelType4fromAA0B0_pXpSgSS_tFZ", + "mangledName": "$s7Amplify13ModelRegistryV9modelType4fromAA0B0_pXpSgSS_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "modelSchema", + "printedName": "modelSchema(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV11modelSchema4fromAA0bE0VSgAA0B0_pXp_tFZ", + "mangledName": "$s7Amplify13ModelRegistryV11modelSchema4fromAA0bE0VSgAA0B0_pXp_tFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "modelSchema", + "printedName": "modelSchema(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV11modelSchema4fromAA0bE0VSgSS_tFZ", + "mangledName": "$s7Amplify13ModelRegistryV11modelSchema4fromAA0bE0VSgSS_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decode", + "printedName": "decode(modelName:from:jsonDecoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.JSONDecoder?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecoder", + "printedName": "Foundation.JSONDecoder", + "usr": "s:10Foundation11JSONDecoderC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13ModelRegistryV6decode9modelName4from11jsonDecoderAA0B0_pSS_SS10Foundation11JSONDecoderCSgtKFZ", + "mangledName": "$s7Amplify13ModelRegistryV6decode9modelName4from11jsonDecoderAA0B0_pSS_SS10Foundation11JSONDecoderCSgtKFZ", + "moduleName": "Amplify", + "static": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hasSyncableModels", + "printedName": "hasSyncableModels", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13ModelRegistryV17hasSyncableModelsSbvpZ", + "mangledName": "$s7Amplify13ModelRegistryV17hasSyncableModelsSbvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13ModelRegistryV17hasSyncableModelsSbvgZ", + "mangledName": "$s7Amplify13ModelRegistryV17hasSyncableModelsSbvgZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify13ModelRegistryV", + "mangledName": "$s7Amplify13ModelRegistryV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Persistable", + "printedName": "Persistable", + "declKind": "Protocol", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthStrategy", + "printedName": "AuthStrategy", + "children": [ + { + "kind": "Var", + "name": "owner", + "printedName": "owner", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthStrategy.Type) -> Amplify.AuthStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthStrategy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthStrategy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthStrategyO5owneryA2CmF", + "mangledName": "$s7Amplify12AuthStrategyO5owneryA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "groups", + "printedName": "groups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthStrategy.Type) -> Amplify.AuthStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthStrategy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthStrategy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthStrategyO6groupsyA2CmF", + "mangledName": "$s7Amplify12AuthStrategyO6groupsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "private", + "printedName": "private", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthStrategy.Type) -> Amplify.AuthStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthStrategy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthStrategy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthStrategyO7privateyA2CmF", + "mangledName": "$s7Amplify12AuthStrategyO7privateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "public", + "printedName": "public", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthStrategy.Type) -> Amplify.AuthStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthStrategy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthStrategy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthStrategyO6publicyA2CmF", + "mangledName": "$s7Amplify12AuthStrategyO6publicyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthStrategy.Type) -> Amplify.AuthStrategy", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthStrategy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthStrategy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12AuthStrategyO6customyA2CmF", + "mangledName": "$s7Amplify12AuthStrategyO6customyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthStrategyO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify12AuthStrategyO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AuthStrategyO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify12AuthStrategyO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AuthStrategyO9hashValueSivp", + "mangledName": "$s7Amplify12AuthStrategyO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AuthStrategyO9hashValueSivg", + "mangledName": "$s7Amplify12AuthStrategyO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify12AuthStrategyO", + "mangledName": "$s7Amplify12AuthStrategyO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelOperation", + "printedName": "ModelOperation", + "children": [ + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelOperation.Type) -> Amplify.ModelOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelOperation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelOperation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelOperationO6createyA2CmF", + "mangledName": "$s7Amplify14ModelOperationO6createyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "update", + "printedName": "update", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelOperation.Type) -> Amplify.ModelOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelOperation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelOperation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelOperationO6updateyA2CmF", + "mangledName": "$s7Amplify14ModelOperationO6updateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelOperation.Type) -> Amplify.ModelOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelOperation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelOperation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelOperationO6deleteyA2CmF", + "mangledName": "$s7Amplify14ModelOperationO6deleteyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "read", + "printedName": "read", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelOperation.Type) -> Amplify.ModelOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelOperation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelOperation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelOperationO4readyA2CmF", + "mangledName": "$s7Amplify14ModelOperationO4readyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelOperationO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify14ModelOperationO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelOperationO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify14ModelOperationO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14ModelOperationO9hashValueSivp", + "mangledName": "$s7Amplify14ModelOperationO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14ModelOperationO9hashValueSivg", + "mangledName": "$s7Amplify14ModelOperationO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14ModelOperationO", + "mangledName": "$s7Amplify14ModelOperationO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthRuleProvider", + "printedName": "AuthRuleProvider", + "children": [ + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthRuleProvider.Type) -> Amplify.AuthRuleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthRuleProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthRuleProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16AuthRuleProviderO6apiKeyyA2CmF", + "mangledName": "$s7Amplify16AuthRuleProviderO6apiKeyyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "oidc", + "printedName": "oidc", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthRuleProvider.Type) -> Amplify.AuthRuleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthRuleProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthRuleProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16AuthRuleProviderO4oidcyA2CmF", + "mangledName": "$s7Amplify16AuthRuleProviderO4oidcyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "iam", + "printedName": "iam", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthRuleProvider.Type) -> Amplify.AuthRuleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthRuleProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthRuleProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16AuthRuleProviderO3iamyA2CmF", + "mangledName": "$s7Amplify16AuthRuleProviderO3iamyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "userPools", + "printedName": "userPools", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthRuleProvider.Type) -> Amplify.AuthRuleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthRuleProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthRuleProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16AuthRuleProviderO9userPoolsyA2CmF", + "mangledName": "$s7Amplify16AuthRuleProviderO9userPoolsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "function", + "printedName": "function", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AuthRuleProvider.Type) -> Amplify.AuthRuleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AuthRuleProvider.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AuthRuleProvider.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16AuthRuleProviderO8functionyA2CmF", + "mangledName": "$s7Amplify16AuthRuleProviderO8functionyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + }, + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AuthRuleProviderO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify16AuthRuleProviderO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AuthRuleProviderO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify16AuthRuleProviderO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AuthRuleProviderO9hashValueSivp", + "mangledName": "$s7Amplify16AuthRuleProviderO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AuthRuleProviderO9hashValueSivg", + "mangledName": "$s7Amplify16AuthRuleProviderO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify16AuthRuleProviderO", + "mangledName": "$s7Amplify16AuthRuleProviderO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AuthRules", + "printedName": "AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9AuthRulesa", + "mangledName": "$s7Amplify9AuthRulesa", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AuthRule", + "printedName": "AuthRule", + "children": [ + { + "kind": "Var", + "name": "allow", + "printedName": "allow", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV5allowAA0B8StrategyOvp", + "mangledName": "$s7Amplify8AuthRuleV5allowAA0B8StrategyOvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV5allowAA0B8StrategyOvg", + "mangledName": "$s7Amplify8AuthRuleV5allowAA0B8StrategyOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerField", + "printedName": "ownerField", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV10ownerFieldSSSgvp", + "mangledName": "$s7Amplify8AuthRuleV10ownerFieldSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV10ownerFieldSSSgvg", + "mangledName": "$s7Amplify8AuthRuleV10ownerFieldSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identityClaim", + "printedName": "identityClaim", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV13identityClaimSSSgvp", + "mangledName": "$s7Amplify8AuthRuleV13identityClaimSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV13identityClaimSSSgvg", + "mangledName": "$s7Amplify8AuthRuleV13identityClaimSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "groupClaim", + "printedName": "groupClaim", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV10groupClaimSSSgvp", + "mangledName": "$s7Amplify8AuthRuleV10groupClaimSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV10groupClaimSSSgvg", + "mangledName": "$s7Amplify8AuthRuleV10groupClaimSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "groups", + "printedName": "groups", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV6groupsSaySSGvp", + "mangledName": "$s7Amplify8AuthRuleV6groupsSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV6groupsSaySSGvg", + "mangledName": "$s7Amplify8AuthRuleV6groupsSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "groupsField", + "printedName": "groupsField", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV11groupsFieldSSSgvp", + "mangledName": "$s7Amplify8AuthRuleV11groupsFieldSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV11groupsFieldSSSgvg", + "mangledName": "$s7Amplify8AuthRuleV11groupsFieldSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operations", + "printedName": "operations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV10operationsSayAA14ModelOperationOGvp", + "mangledName": "$s7Amplify8AuthRuleV10operationsSayAA14ModelOperationOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV10operationsSayAA14ModelOperationOGvg", + "mangledName": "$s7Amplify8AuthRuleV10operationsSayAA14ModelOperationOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "provider", + "printedName": "provider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRuleProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV8providerAA0bC8ProviderOSgvp", + "mangledName": "$s7Amplify8AuthRuleV8providerAA0bC8ProviderOSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRuleProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV8providerAA0bC8ProviderOSgvg", + "mangledName": "$s7Amplify8AuthRuleV8providerAA0bC8ProviderOSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(allow:ownerField:identityClaim:groupClaim:groups:groupsField:provider:operations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + }, + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRuleProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8AuthRuleV5allow10ownerField13identityClaim05groupH06groups0jF08provider10operationsAcA0B8StrategyO_SSSgA2NSaySSGAnA0bC8ProviderOSgSayAA14ModelOperationOGtcfc", + "mangledName": "$s7Amplify8AuthRuleV5allow10ownerField13identityClaim05groupH06groups0jF08provider10operationsAcA0B8StrategyO_SSSgA2NSaySSGAnA0bC8ProviderOSgSayAA14ModelOperationOGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8AuthRuleV4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify8AuthRuleV4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + }, + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8AuthRuleV23__derived_struct_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify8AuthRuleV23__derived_struct_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8AuthRuleV9hashValueSivp", + "mangledName": "$s7Amplify8AuthRuleV9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8AuthRuleV9hashValueSivg", + "mangledName": "$s7Amplify8AuthRuleV9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8AuthRuleV", + "mangledName": "$s7Amplify8AuthRuleV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelAssociation", + "printedName": "ModelAssociation", + "children": [ + { + "kind": "Var", + "name": "hasMany", + "printedName": "hasMany", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAssociation.Type) -> (Swift.String?, [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(associatedFieldName: Swift.String?, associatedFieldNames: [Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAssociation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAssociation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16ModelAssociationO7hasManyyACSSSg_SaySSGtcACmF", + "mangledName": "$s7Amplify16ModelAssociationO7hasManyyACSSSg_SaySSGtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "hasOne", + "printedName": "hasOne", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAssociation.Type) -> (Swift.String?, [Swift.String], [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, [Swift.String], [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(associatedFieldName: Swift.String?, associatedFieldNames: [Swift.String], targetNames: [Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAssociation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAssociation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16ModelAssociationO6hasOneyACSSSg_SaySSGAFtcACmF", + "mangledName": "$s7Amplify16ModelAssociationO6hasOneyACSSSg_SaySSGAFtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "belongsTo", + "printedName": "belongsTo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAssociation.Type) -> (Swift.String?, [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?, [Swift.String]) -> Amplify.ModelAssociation", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(associatedFieldName: Swift.String?, targetNames: [Swift.String])", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAssociation.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAssociation.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16ModelAssociationO9belongsToyACSSSg_SaySSGtcACmF", + "mangledName": "$s7Amplify16ModelAssociationO9belongsToyACSSSg_SaySSGtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "belongsTo", + "printedName": "belongsTo", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16ModelAssociationO9belongsToACvpZ", + "mangledName": "$s7Amplify16ModelAssociationO9belongsToACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16ModelAssociationO9belongsToACvgZ", + "mangledName": "$s7Amplify16ModelAssociationO9belongsToACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "belongsTo", + "printedName": "belongsTo(targetName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO9belongsTo10targetNameACSSSg_tFZ", + "mangledName": "$s7Amplify16ModelAssociationO9belongsTo10targetNameACSSSg_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasMany", + "printedName": "hasMany(associatedWith:associatedFields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.CodingKey]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO7hasMany14associatedWith0F6FieldsACs9CodingKey_pSg_SaysAG_pGtFZ", + "mangledName": "$s7Amplify16ModelAssociationO7hasMany14associatedWith0F6FieldsACs9CodingKey_pSg_SaysAG_pGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasOne", + "printedName": "hasOne(associatedWith:targetName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO6hasOne14associatedWith10targetNameACs9CodingKey_pSg_SSSgtFZ", + "mangledName": "$s7Amplify16ModelAssociationO6hasOne14associatedWith10targetNameACs9CodingKey_pSg_SSSgtFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasOne", + "printedName": "hasOne(associatedWith:associatedFields:targetNames:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.CodingKey]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO6hasOne14associatedWith0F6Fields11targetNamesACs9CodingKey_pSg_SaysAH_pGSaySSGtFZ", + "mangledName": "$s7Amplify16ModelAssociationO6hasOne14associatedWith0F6Fields11targetNamesACs9CodingKey_pSg_SaysAH_pGSaySSGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "belongsTo", + "printedName": "belongsTo(associatedWith:targetName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO9belongsTo14associatedWith10targetNameACs9CodingKey_pSg_SSSgtFZ", + "mangledName": "$s7Amplify16ModelAssociationO9belongsTo14associatedWith10targetNameACs9CodingKey_pSg_SSSgtFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "belongsTo", + "printedName": "belongsTo(associatedWith:targetNames:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16ModelAssociationO9belongsTo14associatedWith11targetNamesACs9CodingKey_pSg_SaySSGtFZ", + "mangledName": "$s7Amplify16ModelAssociationO9belongsTo14associatedWith11targetNamesACs9CodingKey_pSg_SaySSGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify16ModelAssociationO", + "mangledName": "$s7Amplify16ModelAssociationO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelPrimaryKey", + "printedName": "ModelPrimaryKey", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvp", + "mangledName": "$s7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvg", + "mangledName": "$s7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvs", + "mangledName": "$s7Amplify15ModelPrimaryKeyV6fieldsSayAA0B5FieldVGvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCompositeKey", + "printedName": "isCompositeKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15ModelPrimaryKeyV011isCompositeD0Sbvp", + "mangledName": "$s7Amplify15ModelPrimaryKeyV011isCompositeD0Sbvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelPrimaryKeyV011isCompositeD0Sbvg", + "mangledName": "$s7Amplify15ModelPrimaryKeyV011isCompositeD0Sbvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "contains", + "printedName": "contains(named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelPrimaryKeyV8contains5namedSbSS_tF", + "mangledName": "$s7Amplify15ModelPrimaryKeyV8contains5namedSbSS_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "indexOfField", + "printedName": "indexOfField(named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelPrimaryKeyV12indexOfField5namedSiSgSS_tF", + "mangledName": "$s7Amplify15ModelPrimaryKeyV12indexOfField5namedSiSgSS_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify15ModelPrimaryKeyV", + "mangledName": "$s7Amplify15ModelPrimaryKeyV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelFieldType", + "printedName": "ModelFieldType", + "children": [ + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO6stringyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO6stringyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO3intyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO3intyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "double", + "printedName": "double", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO6doubleyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO6doubleyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "date", + "printedName": "date", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO4dateyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO4dateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "dateTime", + "printedName": "dateTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO8dateTimeyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO8dateTimeyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "time", + "printedName": "time", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO4timeyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO4timeyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO9timestampyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO9timestampyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO4boolyA2CmF", + "mangledName": "$s7Amplify14ModelFieldTypeO4boolyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "enum", + "printedName": "enum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> (Amplify.EnumPersistable.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.EnumPersistable.Type) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: Amplify.EnumPersistable.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.EnumPersistable.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO4enumyAcA15EnumPersistable_pXp_tcACmF", + "mangledName": "$s7Amplify14ModelFieldTypeO4enumyAcA15EnumPersistable_pXp_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "embedded", + "printedName": "embedded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> (Swift.Codable.Type, Amplify.ModelSchema?) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Codable.Type, Amplify.ModelSchema?) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(type: Swift.Codable.Type, schema: Amplify.ModelSchema?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Swift.Codable.Type", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Codable", + "printedName": "Swift.Codable", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Swift.Decodable & Swift.Encodable" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO8embeddedyACSe_SEpXp_AA0B6SchemaVSgtcACmF", + "mangledName": "$s7Amplify14ModelFieldTypeO8embeddedyACSe_SEpXp_AA0B6SchemaVSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "embeddedCollection", + "printedName": "embeddedCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> (Swift.Codable.Type, Amplify.ModelSchema?) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Codable.Type, Amplify.ModelSchema?) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(of: Swift.Codable.Type, schema: Amplify.ModelSchema?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Swift.Codable.Type", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Codable", + "printedName": "Swift.Codable", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Swift.Decodable & Swift.Encodable" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO18embeddedCollectionyACSe_SEpXp_AA0B6SchemaVSgtcACmF", + "mangledName": "$s7Amplify14ModelFieldTypeO18embeddedCollectionyACSe_SEpXp_AA0B6SchemaVSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> (Amplify.ModelName) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelName) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Amplify.ModelName)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO5modelyACSS_tcACmF", + "mangledName": "$s7Amplify14ModelFieldTypeO5modelyACSS_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "collection", + "printedName": "collection", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldType.Type) -> (Amplify.ModelName) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelName) -> Amplify.ModelFieldType", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(of: Amplify.ModelName)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelFieldTypeO10collectionyACSS_tcACmF", + "mangledName": "$s7Amplify14ModelFieldTypeO10collectionyACSS_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "model", + "printedName": "model(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO5model4typeAcA0B0_pXp_tFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO5model4typeAcA0B0_pXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "collection", + "printedName": "collection(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO10collection2ofAcA0B0_pXp_tFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO10collection2ofAcA0B0_pXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "embedded", + "printedName": "embedded(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Swift.Codable.Type", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Codable", + "printedName": "Swift.Codable", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Swift.Decodable & Swift.Encodable" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO8embedded4typeACSe_SEpXp_tFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO8embedded4typeACSe_SEpXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "embeddedCollection", + "printedName": "embeddedCollection(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Swift.Codable.Type", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Codable", + "printedName": "Swift.Codable", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Swift.Decodable & Swift.Encodable" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO18embeddedCollection2ofACSe_SEpXp_tFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO18embeddedCollection2ofACSe_SEpXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isArray", + "printedName": "isArray", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14ModelFieldTypeO7isArraySbvp", + "mangledName": "$s7Amplify14ModelFieldTypeO7isArraySbvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14ModelFieldTypeO7isArraySbvg", + "mangledName": "$s7Amplify14ModelFieldTypeO7isArraySbvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "customType", + "printedName": "customType(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Swift.Codable.Type", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Codable", + "printedName": "Swift.Codable", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Swift.Decodable & Swift.Encodable" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO06customD0yACSe_SEpXpFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO06customD0yACSe_SEpXpFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "from", + "printedName": "from(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Any.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelFieldTypeO4from4typeACypXp_tFZ", + "mangledName": "$s7Amplify14ModelFieldTypeO4from4typeACypXp_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14ModelFieldTypeO", + "mangledName": "$s7Amplify14ModelFieldTypeO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelFieldNullability", + "printedName": "ModelFieldNullability", + "children": [ + { + "kind": "Var", + "name": "optional", + "printedName": "optional", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldNullability.Type) -> Amplify.ModelFieldNullability", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldNullability.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldNullability.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify21ModelFieldNullabilityO8optionalyA2CmF", + "mangledName": "$s7Amplify21ModelFieldNullabilityO8optionalyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "required", + "printedName": "required", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldNullability.Type) -> Amplify.ModelFieldNullability", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldNullability.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldNullability.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify21ModelFieldNullabilityO8requiredyA2CmF", + "mangledName": "$s7Amplify21ModelFieldNullabilityO8requiredyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21ModelFieldNullabilityO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify21ModelFieldNullabilityO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21ModelFieldNullabilityO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify21ModelFieldNullabilityO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelFieldNullabilityO9hashValueSivp", + "mangledName": "$s7Amplify21ModelFieldNullabilityO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelFieldNullabilityO9hashValueSivg", + "mangledName": "$s7Amplify21ModelFieldNullabilityO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21ModelFieldNullabilityO", + "mangledName": "$s7Amplify21ModelFieldNullabilityO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelSchemaDefinition", + "printedName": "ModelSchemaDefinition", + "children": [ + { + "kind": "Var", + "name": "pluralName", + "printedName": "pluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvp", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Available", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvg", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvs", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV10pluralNameSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "listPluralName", + "printedName": "listPluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvp", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvg", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvs", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14listPluralNameSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "syncPluralName", + "printedName": "syncPluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvp", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvg", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvs", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV14syncPluralNameSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "authRules", + "printedName": "authRules", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvp", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvg", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvs", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV9authRulesSayAA8AuthRuleVGvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fields", + "printedName": "fields(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.ModelFieldDefinition...", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21ModelSchemaDefinitionV6fieldsyyAA0b5FieldD0Od_tF", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV6fieldsyyAA0b5FieldD0Od_tF", + "moduleName": "Amplify", + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "attributes", + "printedName": "attributes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.ModelAttribute...", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21ModelSchemaDefinitionV10attributesyyAA0B9AttributeOd_tF", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV10attributesyyAA0B9AttributeOd_tF", + "moduleName": "Amplify", + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify21ModelSchemaDefinitionV", + "mangledName": "$s7Amplify21ModelSchemaDefinitionV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelFieldDefinition", + "printedName": "ModelFieldDefinition", + "children": [ + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldDefinition.Type) -> (Swift.String, Amplify.ModelFieldType, Amplify.ModelFieldNullability, Swift.Bool, Amplify.ModelAssociation?, [Amplify.ModelFieldAttribute], Amplify.AuthRules) -> Amplify.ModelFieldDefinition", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Amplify.ModelFieldType, Amplify.ModelFieldNullability, Swift.Bool, Amplify.ModelAssociation?, [Amplify.ModelFieldAttribute], Amplify.AuthRules) -> Amplify.ModelFieldDefinition", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, type: Amplify.ModelFieldType, nullability: Amplify.ModelFieldNullability, isReadOnly: Swift.Bool, association: Amplify.ModelAssociation?, attributes: [Amplify.ModelFieldAttribute], authRules: Amplify.AuthRules)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelAssociation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldDefinition.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldDefinition.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20ModelFieldDefinitionO5fieldyACSS_AA0bC4TypeOAA0bC11NullabilityOSbAA0B11AssociationOSgSayAA0bC9AttributeOGSayAA8AuthRuleVGtcACmF", + "mangledName": "$s7Amplify20ModelFieldDefinitionO5fieldyACSS_AA0bC4TypeOAA0bC11NullabilityOSbAA0B11AssociationOSgSayAA0bC9AttributeOGSayAA8AuthRuleVGtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "field", + "printedName": "field(_:is:isReadOnly:ofType:attributes:association:authRules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "hasDefaultArg": true, + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelAssociation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO5field_2is0F8ReadOnly6ofType10attributes11association9authRulesACs9CodingKey_p_AA0bC11NullabilityOSbAA0bcJ0OSayAA0bC9AttributeOGAA0B11AssociationOSgSayAA8AuthRuleVGtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO5field_2is0F8ReadOnly6ofType10attributes11association9authRulesACs9CodingKey_p_AA0bC11NullabilityOSbAA0bcJ0OSayAA0bC9AttributeOGAA0B11AssociationOSgSayAA8AuthRuleVGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "id", + "printedName": "id(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO2idyACs9CodingKey_pFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO2idyACs9CodingKey_pFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "id", + "printedName": "id(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO2idyACSSFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO2idyACSSFZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasMany", + "printedName": "hasMany(_:is:isReadOnly:ofType:associatedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO7hasMany_2is0G8ReadOnly6ofType14associatedWithACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAI_ptFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO7hasMany_2is0G8ReadOnly6ofType14associatedWithACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAI_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasMany", + "printedName": "hasMany(_:is:isReadOnly:ofType:associatedFields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.CodingKey]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO7hasMany_2is0G8ReadOnly6ofType16associatedFieldsACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpSaysAI_pGtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO7hasMany_2is0G8ReadOnly6ofType16associatedFieldsACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpSaysAI_pGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasOne", + "printedName": "hasOne(_:is:isReadOnly:ofType:associatedWith:targetName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType14associatedWith10targetNameACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSSSgtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType14associatedWith10targetNameACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSSSgtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasOne", + "printedName": "hasOne(_:is:isReadOnly:ofType:associatedWith:targetNames:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType14associatedWith11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSaySSGtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType14associatedWith11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSaySSGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasOne", + "printedName": "hasOne(_:is:isReadOnly:ofType:associatedFields:targetNames:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.CodingKey]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType16associatedFields11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpSaysAJ_pGSaySSGtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO6hasOne_2is0G8ReadOnly6ofType16associatedFields11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpSaysAJ_pGSaySSGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "belongsTo", + "printedName": "belongsTo(_:is:isReadOnly:ofType:associatedWith:targetName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO9belongsTo_2is0G8ReadOnly6ofType14associatedWith10targetNameACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSgSSSgtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO9belongsTo_2is0G8ReadOnly6ofType14associatedWith10targetNameACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSgSSSgtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "belongsTo", + "printedName": "belongsTo(_:is:isReadOnly:ofType:associatedWith:targetNames:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldDefinition", + "printedName": "Amplify.ModelFieldDefinition", + "usr": "s:7Amplify20ModelFieldDefinitionO" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldNullability", + "printedName": "Amplify.ModelFieldNullability", + "hasDefaultArg": true, + "usr": "s:7Amplify21ModelFieldNullabilityO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.CodingKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20ModelFieldDefinitionO9belongsTo_2is0G8ReadOnly6ofType14associatedWith11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSgSaySSGtFZ", + "mangledName": "$s7Amplify20ModelFieldDefinitionO9belongsTo_2is0G8ReadOnly6ofType14associatedWith11targetNamesACs9CodingKey_p_AA0bC11NullabilityOSbAA0B0_pXpsAJ_pSgSaySSGtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "modelField", + "printedName": "modelField", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20ModelFieldDefinitionO05modelC0AA0bC0Vvp", + "mangledName": "$s7Amplify20ModelFieldDefinitionO05modelC0AA0bC0Vvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20ModelFieldDefinitionO05modelC0AA0bC0Vvg", + "mangledName": "$s7Amplify20ModelFieldDefinitionO05modelC0AA0bC0Vvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify20ModelFieldDefinitionO", + "mangledName": "$s7Amplify20ModelFieldDefinitionO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeAlias", + "name": "ModelFieldName", + "printedName": "ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify14ModelFieldNamea", + "mangledName": "$s7Amplify14ModelFieldNamea", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelAttribute", + "printedName": "ModelAttribute", + "children": [ + { + "kind": "Var", + "name": "index", + "printedName": "index", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAttribute.Type) -> ([Amplify.ModelFieldName], Swift.String?) -> Amplify.ModelAttribute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.ModelFieldName], Swift.String?) -> Amplify.ModelAttribute", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(fields: [Amplify.ModelFieldName], name: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldName]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAttribute.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAttribute.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelAttributeO5indexyACSaySSG_SSSgtcACmF", + "mangledName": "$s7Amplify14ModelAttributeO5indexyACSaySSG_SSSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "isSystem", + "printedName": "isSystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAttribute.Type) -> Amplify.ModelAttribute", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAttribute.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAttribute.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelAttributeO8isSystemyA2CmF", + "mangledName": "$s7Amplify14ModelAttributeO8isSystemyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "primaryKey", + "printedName": "primaryKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelAttribute.Type) -> ([Amplify.ModelFieldName]) -> Amplify.ModelAttribute", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.ModelFieldName]) -> Amplify.ModelAttribute", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(fields: [Amplify.ModelFieldName])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldName]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelAttribute.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelAttribute.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify14ModelAttributeO10primaryKeyyACSaySSG_tcACmF", + "mangledName": "$s7Amplify14ModelAttributeO10primaryKeyyACSaySSG_tcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.CodingKey]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelAttributeO10primaryKey6fieldsACSays06CodingE0_pG_tFZ", + "mangledName": "$s7Amplify14ModelAttributeO10primaryKey6fieldsACSays06CodingE0_pG_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + }, + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14ModelAttributeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify14ModelAttributeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify14ModelAttributeO", + "mangledName": "$s7Amplify14ModelAttributeO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelFieldAttribute", + "printedName": "ModelFieldAttribute", + "children": [ + { + "kind": "Var", + "name": "primaryKey", + "printedName": "primaryKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ModelFieldAttribute.Type) -> Amplify.ModelFieldAttribute", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelFieldAttribute.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ModelFieldAttribute.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify19ModelFieldAttributeO10primaryKeyyA2CmF", + "mangledName": "$s7Amplify19ModelFieldAttributeO10primaryKeyyA2CmF", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelFieldAttributeO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify19ModelFieldAttributeO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelFieldAttributeO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify19ModelFieldAttributeO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19ModelFieldAttributeO9hashValueSivp", + "mangledName": "$s7Amplify19ModelFieldAttributeO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19ModelFieldAttributeO9hashValueSivg", + "mangledName": "$s7Amplify19ModelFieldAttributeO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify19ModelFieldAttributeO", + "mangledName": "$s7Amplify19ModelFieldAttributeO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelField", + "printedName": "ModelField", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV4nameSSvp", + "mangledName": "$s7Amplify10ModelFieldV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV4nameSSvg", + "mangledName": "$s7Amplify10ModelFieldV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV4typeAA0bC4TypeOvp", + "mangledName": "$s7Amplify10ModelFieldV4typeAA0bC4TypeOvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV4typeAA0bC4TypeOvg", + "mangledName": "$s7Amplify10ModelFieldV4typeAA0bC4TypeOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isRequired", + "printedName": "isRequired", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV10isRequiredSbvp", + "mangledName": "$s7Amplify10ModelFieldV10isRequiredSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV10isRequiredSbvg", + "mangledName": "$s7Amplify10ModelFieldV10isRequiredSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReadOnly", + "printedName": "isReadOnly", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV10isReadOnlySbvp", + "mangledName": "$s7Amplify10ModelFieldV10isReadOnlySbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV10isReadOnlySbvg", + "mangledName": "$s7Amplify10ModelFieldV10isReadOnlySbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isArray", + "printedName": "isArray", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV7isArraySbvp", + "mangledName": "$s7Amplify10ModelFieldV7isArraySbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV7isArraySbvg", + "mangledName": "$s7Amplify10ModelFieldV7isArraySbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV10attributesSayAA0bC9AttributeOGvp", + "mangledName": "$s7Amplify10ModelFieldV10attributesSayAA0bC9AttributeOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV10attributesSayAA0bC9AttributeOGvg", + "mangledName": "$s7Amplify10ModelFieldV10attributesSayAA0bC9AttributeOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "association", + "printedName": "association", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelAssociation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV11associationAA0B11AssociationOSgvp", + "mangledName": "$s7Amplify10ModelFieldV11associationAA0B11AssociationOSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelAssociation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV11associationAA0B11AssociationOSgvg", + "mangledName": "$s7Amplify10ModelFieldV11associationAA0B11AssociationOSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authRules", + "printedName": "authRules", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV9authRulesSayAA8AuthRuleVGvp", + "mangledName": "$s7Amplify10ModelFieldV9authRulesSayAA8AuthRuleVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV9authRulesSayAA8AuthRuleVGvg", + "mangledName": "$s7Amplify10ModelFieldV9authRulesSayAA8AuthRuleVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isPrimaryKey", + "printedName": "isPrimaryKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV12isPrimaryKeySbvp", + "mangledName": "$s7Amplify10ModelFieldV12isPrimaryKeySbvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV12isPrimaryKeySbvg", + "mangledName": "$s7Amplify10ModelFieldV12isPrimaryKeySbvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:type:isRequired:isReadOnly:isArray:attributes:association:authRules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelFieldAttribute", + "printedName": "Amplify.ModelFieldAttribute", + "usr": "s:7Amplify19ModelFieldAttributeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelAssociation?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAssociation", + "printedName": "Amplify.ModelAssociation", + "usr": "s:7Amplify16ModelAssociationO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify10ModelFieldV4name4type10isRequired0F8ReadOnly0F5Array10attributes11association9authRulesACSS_AA0bC4TypeOS3bSayAA0bC9AttributeOGAA0B11AssociationOSgSayAA8AuthRuleVGtcfc", + "mangledName": "$s7Amplify10ModelFieldV4name4type10isRequired0F8ReadOnly0F5Array10attributes11association9authRulesACSS_AA0bC4TypeOS3bSayAA0bC9AttributeOGAA0B11AssociationOSgSayAA8AuthRuleVGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "hasAssociation", + "printedName": "hasAssociation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV14hasAssociationSbvp", + "mangledName": "$s7Amplify10ModelFieldV14hasAssociationSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV14hasAssociationSbvg", + "mangledName": "$s7Amplify10ModelFieldV14hasAssociationSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "associatedModel", + "printedName": "associatedModel", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Model.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV010associatedB0AA0B0_pXpSgvp", + "mangledName": "$s7Amplify10ModelFieldV010associatedB0AA0B0_pXpSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Model.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV010associatedB0AA0B0_pXpSgvg", + "mangledName": "$s7Amplify10ModelFieldV010associatedB0AA0B0_pXpSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "associatedModelName", + "printedName": "associatedModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelName?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV010associatedB4NameSSSgvp", + "mangledName": "$s7Amplify10ModelFieldV010associatedB4NameSSSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelName?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV010associatedB4NameSSSgvg", + "mangledName": "$s7Amplify10ModelFieldV010associatedB4NameSSSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requiredAssociatedModel", + "printedName": "requiredAssociatedModel", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV018requiredAssociatedB0AA0B0_pXpvp", + "mangledName": "$s7Amplify10ModelFieldV018requiredAssociatedB0AA0B0_pXpvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV018requiredAssociatedB0AA0B0_pXpvg", + "mangledName": "$s7Amplify10ModelFieldV018requiredAssociatedB0AA0B0_pXpvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requiredAssociatedModelName", + "printedName": "requiredAssociatedModelName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV018requiredAssociatedB4NameSSvp", + "mangledName": "$s7Amplify10ModelFieldV018requiredAssociatedB4NameSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV018requiredAssociatedB4NameSSvg", + "mangledName": "$s7Amplify10ModelFieldV018requiredAssociatedB4NameSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAssociationOwner", + "printedName": "isAssociationOwner", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV18isAssociationOwnerSbvp", + "mangledName": "$s7Amplify10ModelFieldV18isAssociationOwnerSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV18isAssociationOwnerSbvg", + "mangledName": "$s7Amplify10ModelFieldV18isAssociationOwnerSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_isBelongsToOrHasOne", + "printedName": "_isBelongsToOrHasOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV20_isBelongsToOrHasOneSbvp", + "mangledName": "$s7Amplify10ModelFieldV20_isBelongsToOrHasOneSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV20_isBelongsToOrHasOneSbvg", + "mangledName": "$s7Amplify10ModelFieldV20_isBelongsToOrHasOneSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "associatedField", + "printedName": "associatedField", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV010associatedC0ACSgvp", + "mangledName": "$s7Amplify10ModelFieldV010associatedC0ACSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV010associatedC0ACSgvg", + "mangledName": "$s7Amplify10ModelFieldV010associatedC0ACSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "associatedFieldNames", + "printedName": "associatedFieldNames", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV010associatedC5NamesSaySSGvp", + "mangledName": "$s7Amplify10ModelFieldV010associatedC5NamesSaySSGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV010associatedC5NamesSaySSGvg", + "mangledName": "$s7Amplify10ModelFieldV010associatedC5NamesSaySSGvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isOneToOne", + "printedName": "isOneToOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV07isOneToE0Sbvp", + "mangledName": "$s7Amplify10ModelFieldV07isOneToE0Sbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV07isOneToE0Sbvg", + "mangledName": "$s7Amplify10ModelFieldV07isOneToE0Sbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isOneToMany", + "printedName": "isOneToMany", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV11isOneToManySbvp", + "mangledName": "$s7Amplify10ModelFieldV11isOneToManySbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV11isOneToManySbvg", + "mangledName": "$s7Amplify10ModelFieldV11isOneToManySbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isManyToOne", + "printedName": "isManyToOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV11isManyToOneSbvp", + "mangledName": "$s7Amplify10ModelFieldV11isManyToOneSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV11isManyToOneSbvg", + "mangledName": "$s7Amplify10ModelFieldV11isManyToOneSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddedType", + "printedName": "embeddedType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Embeddable.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Embeddable.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Embeddable", + "printedName": "Amplify.Embeddable", + "usr": "s:7Amplify10EmbeddableP" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV12embeddedTypeAA10Embeddable_pXpSgvp", + "mangledName": "$s7Amplify10ModelFieldV12embeddedTypeAA10Embeddable_pXpSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Embeddable.Type?", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Embeddable.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Embeddable", + "printedName": "Amplify.Embeddable", + "usr": "s:7Amplify10EmbeddableP" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV12embeddedTypeAA10Embeddable_pXpSgvg", + "mangledName": "$s7Amplify10ModelFieldV12embeddedTypeAA10Embeddable_pXpSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddedTypeSchema", + "printedName": "embeddedTypeSchema", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV18embeddedTypeSchemaAA0bF0VSgvp", + "mangledName": "$s7Amplify10ModelFieldV18embeddedTypeSchemaAA0bF0VSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelSchema?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV18embeddedTypeSchemaAA0bF0VSgvg", + "mangledName": "$s7Amplify10ModelFieldV18embeddedTypeSchemaAA0bF0VSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEmbeddedType", + "printedName": "isEmbeddedType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10ModelFieldV14isEmbeddedTypeSbvp", + "mangledName": "$s7Amplify10ModelFieldV14isEmbeddedTypeSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10ModelFieldV14isEmbeddedTypeSbvg", + "mangledName": "$s7Amplify10ModelFieldV14isEmbeddedTypeSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10ModelFieldV", + "mangledName": "$s7Amplify10ModelFieldV", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "ModelFields", + "printedName": "ModelFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11ModelFieldsa", + "mangledName": "$s7Amplify11ModelFieldsa", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "ModelName", + "printedName": "ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9ModelNamea", + "mangledName": "$s7Amplify9ModelNamea", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelSchema", + "printedName": "ModelSchema", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV4nameSSvp", + "mangledName": "$s7Amplify11ModelSchemaV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV4nameSSvg", + "mangledName": "$s7Amplify11ModelSchemaV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluralName", + "printedName": "pluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV10pluralNameSSSgvp", + "mangledName": "$s7Amplify11ModelSchemaV10pluralNameSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV10pluralNameSSSgvg", + "mangledName": "$s7Amplify11ModelSchemaV10pluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "listPluralName", + "printedName": "listPluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV14listPluralNameSSSgvp", + "mangledName": "$s7Amplify11ModelSchemaV14listPluralNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV14listPluralNameSSSgvg", + "mangledName": "$s7Amplify11ModelSchemaV14listPluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncPluralName", + "printedName": "syncPluralName", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV14syncPluralNameSSSgvp", + "mangledName": "$s7Amplify11ModelSchemaV14syncPluralNameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV14syncPluralNameSSSgvg", + "mangledName": "$s7Amplify11ModelSchemaV14syncPluralNameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authRules", + "printedName": "authRules", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV9authRulesSayAA8AuthRuleVGvp", + "mangledName": "$s7Amplify11ModelSchemaV9authRulesSayAA8AuthRuleVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV9authRulesSayAA8AuthRuleVGvg", + "mangledName": "$s7Amplify11ModelSchemaV9authRulesSayAA8AuthRuleVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFields", + "printedName": "Amplify.ModelFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV6fieldsSDySSAA0B5FieldVGvp", + "mangledName": "$s7Amplify11ModelSchemaV6fieldsSDySSAA0B5FieldVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFields", + "printedName": "Amplify.ModelFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV6fieldsSDySSAA0B5FieldVGvg", + "mangledName": "$s7Amplify11ModelSchemaV6fieldsSDySSAA0B5FieldVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV10attributesSayAA0B9AttributeOGvp", + "mangledName": "$s7Amplify11ModelSchemaV10attributesSayAA0B9AttributeOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV10attributesSayAA0B9AttributeOGvg", + "mangledName": "$s7Amplify11ModelSchemaV10attributesSayAA0B9AttributeOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "indexes", + "printedName": "indexes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV7indexesSayAA0B9AttributeOGvp", + "mangledName": "$s7Amplify11ModelSchemaV7indexesSayAA0B9AttributeOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV7indexesSayAA0B9AttributeOGvg", + "mangledName": "$s7Amplify11ModelSchemaV7indexesSayAA0B9AttributeOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sortedFields", + "printedName": "sortedFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV12sortedFieldsSayAA0B5FieldVGvp", + "mangledName": "$s7Amplify11ModelSchemaV12sortedFieldsSayAA0B5FieldVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV12sortedFieldsSayAA0B5FieldVGvg", + "mangledName": "$s7Amplify11ModelSchemaV12sortedFieldsSayAA0B5FieldVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "primaryKey", + "printedName": "primaryKey", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPrimaryKey", + "printedName": "Amplify.ModelPrimaryKey", + "usr": "s:7Amplify15ModelPrimaryKeyV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV10primaryKeyAA0b7PrimaryE0Vvp", + "mangledName": "$s7Amplify11ModelSchemaV10primaryKeyAA0b7PrimaryE0Vvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPrimaryKey", + "printedName": "Amplify.ModelPrimaryKey", + "usr": "s:7Amplify15ModelPrimaryKeyV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV10primaryKeyAA0b7PrimaryE0Vvg", + "mangledName": "$s7Amplify11ModelSchemaV10primaryKeyAA0b7PrimaryE0Vvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:pluralName:listPluralName:syncPluralName:authRules:attributes:fields:primaryKeyFieldKeys:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "AuthRules", + "printedName": "Amplify.AuthRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AuthRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelAttribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNameAlias", + "name": "ModelFields", + "printedName": "Amplify.ModelFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.ModelField]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldName]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11ModelSchemaV4name10pluralName010listPluralF004synchF09authRules10attributes6fields19primaryKeyFieldKeysACSS_SSSgA2LSayAA8AuthRuleVGSayAA0B9AttributeOGSDySSAA0bP0VGSaySSGtcfc", + "mangledName": "$s7Amplify11ModelSchemaV4name10pluralName010listPluralF004synchF09authRules10attributes6fields19primaryKeyFieldKeysACSS_SSSgA2LSayAA8AuthRuleVGSayAA0B9AttributeOGSDySSAA0bP0VGSaySSGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "field", + "printedName": "field(withName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.ModelField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelField", + "printedName": "Amplify.ModelField", + "usr": "s:7Amplify10ModelFieldV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11ModelSchemaV5field8withNameAA0B5FieldVSgSS_tF", + "mangledName": "$s7Amplify11ModelSchemaV5field8withNameAA0B5FieldVSgSS_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isSyncable", + "printedName": "isSyncable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV10isSyncableSbvp", + "mangledName": "$s7Amplify11ModelSchemaV10isSyncableSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV10isSyncableSbvg", + "mangledName": "$s7Amplify11ModelSchemaV10isSyncableSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSystem", + "printedName": "isSystem", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV8isSystemSbvp", + "mangledName": "$s7Amplify11ModelSchemaV8isSystemSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV8isSystemSbvg", + "mangledName": "$s7Amplify11ModelSchemaV8isSystemSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAuthenticationRules", + "printedName": "hasAuthenticationRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV22hasAuthenticationRulesSbvp", + "mangledName": "$s7Amplify11ModelSchemaV22hasAuthenticationRulesSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV22hasAuthenticationRulesSbvg", + "mangledName": "$s7Amplify11ModelSchemaV22hasAuthenticationRulesSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAssociations", + "printedName": "hasAssociations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV15hasAssociationsSbvp", + "mangledName": "$s7Amplify11ModelSchemaV15hasAssociationsSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV15hasAssociationsSbvg", + "mangledName": "$s7Amplify11ModelSchemaV15hasAssociationsSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "primaryKeyIndexFields", + "printedName": "primaryKeyIndexFields", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.ModelFieldName]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldName]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11ModelSchemaV21primaryKeyIndexFieldsSaySSGSgvp", + "mangledName": "$s7Amplify11ModelSchemaV21primaryKeyIndexFieldsSaySSGSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.ModelFieldName]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelFieldName]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelFieldName", + "printedName": "Amplify.ModelFieldName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11ModelSchemaV21primaryKeyIndexFieldsSaySSGSgvg", + "mangledName": "$s7Amplify11ModelSchemaV21primaryKeyIndexFieldsSaySSGSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11ModelSchemaV", + "mangledName": "$s7Amplify11ModelSchemaV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelValueConverter", + "printedName": "ModelValueConverter", + "children": [ + { + "kind": "AssociatedType", + "name": "SourceType", + "printedName": "SourceType", + "declKind": "AssociatedType", + "usr": "s:7Amplify19ModelValueConverterP10SourceTypeQa", + "mangledName": "$s7Amplify19ModelValueConverterP10SourceTypeQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "TargetType", + "printedName": "TargetType", + "declKind": "AssociatedType", + "usr": "s:7Amplify19ModelValueConverterP10TargetTypeQa", + "mangledName": "$s7Amplify19ModelValueConverterP10TargetTypeQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Function", + "name": "convertToTarget", + "printedName": "convertToTarget(from:fieldType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.TargetType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.SourceType" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelValueConverterP15convertToTarget4from9fieldType0gJ0Qz06SourceJ0Qz_AA0b5FieldJ0OtKFZ", + "mangledName": "$s7Amplify19ModelValueConverterP15convertToTarget4from9fieldType0gJ0Qz06SourceJ0Qz_AA0b5FieldJ0OtKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convertToSource", + "printedName": "convertToSource(from:fieldType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.SourceType" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.TargetType" + }, + { + "kind": "TypeNominal", + "name": "ModelFieldType", + "printedName": "Amplify.ModelFieldType", + "usr": "s:7Amplify14ModelFieldTypeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelValueConverterP15convertToSource4from9fieldType0gJ0Qz06TargetJ0Qz_AA0b5FieldJ0OtKFZ", + "mangledName": "$s7Amplify19ModelValueConverterP15convertToSource4from9fieldType0gJ0Qz06TargetJ0Qz_AA0b5FieldJ0OtKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Encodable", + "printedName": "Swift.Encodable", + "usr": "s:SE" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelValueConverterPAAE6toJSONySSSgSE_pKFZ", + "mangledName": "$s7Amplify19ModelValueConverterPAAE6toJSONySSSgSE_pKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromJSON", + "printedName": "fromJSON(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19ModelValueConverterPAAE8fromJSONyypSgSSKFZ", + "mangledName": "$s7Amplify19ModelValueConverterPAAE8fromJSONyypSgSSKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19ModelValueConverterP", + "mangledName": "$s7Amplify19ModelValueConverterP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "JSONValueHolder", + "printedName": "JSONValueHolder", + "children": [ + { + "kind": "Function", + "name": "jsonValue", + "printedName": "jsonValue(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any??", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15JSONValueHolderP9jsonValue3forypSgSgSS_tF", + "mangledName": "$s7Amplify15JSONValueHolderP9jsonValue3forypSgSgSS_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "jsonValue", + "printedName": "jsonValue(for:modelSchema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any??", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15JSONValueHolderP9jsonValue3for11modelSchemaypSgSgSS_AA05ModelH0VtF", + "mangledName": "$s7Amplify15JSONValueHolderP9jsonValue3for11modelSchemaypSgSgSS_AA05ModelH0VtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify15JSONValueHolderP", + "mangledName": "$s7Amplify15JSONValueHolderP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ArrayLiteralListProvider", + "printedName": "ArrayLiteralListProvider", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(elements:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrayLiteralListProvider", + "printedName": "Amplify.ArrayLiteralListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify24ArrayLiteralListProviderV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24ArrayLiteralListProviderV8elementsACyxGSayxG_tcfc", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV8elementsACyxGSayxG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelListProviderState", + "printedName": "Amplify.ModelListProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify22ModelListProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV8getStateAA05ModeldeG0OyxGyF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV8getStateAA05ModeldeG0OyxGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Element], Amplify.CoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV4loads6ResultOySayxGAA9CoreErrorOGyF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV4loads6ResultOySayxGAA9CoreErrorOGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[Element], Amplify.CoreError>) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Result<[Element], Amplify.CoreError>)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Element], Amplify.CoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV4load10completionyys6ResultOySayxGAA9CoreErrorOGc_tF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV4load10completionyys6ResultOySayxGAA9CoreErrorOGc_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV4loadSayxGyYaKF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV4loadSayxGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasNextPage", + "printedName": "hasNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV11hasNextPageSbyF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV11hasNextPageSbyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result, Amplify.CoreError>) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Result, Amplify.CoreError>)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result, Amplify.CoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify4ListC" + }, + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV11getNextPage10completionyys6ResultOyAA0D0CyxGAA9CoreErrorOGc_tF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV11getNextPage10completionyys6ResultOyAA0D0CyxGAA9CoreErrorOGc_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV11getNextPageAA0D0CyxGyYaKF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV11getNextPageAA0D0CyxGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24ArrayLiteralListProviderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify24ArrayLiteralListProviderV7Elementa", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24ArrayLiteralListProviderV", + "mangledName": "$s7Amplify24ArrayLiteralListProviderV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelListProvider", + "printedName": "ModelListProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:7Amplify17ModelListProviderP", + "mangledName": "$s7Amplify17ModelListProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultModelProvider", + "printedName": "DefaultModelProvider", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(element:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultModelProvider", + "printedName": "Amplify.DefaultModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify20DefaultModelProviderV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20DefaultModelProviderV7elementACyxGxSg_tcfc", + "mangledName": "$s7Amplify20DefaultModelProviderV7elementACyxGxSg_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultModelProvider", + "printedName": "Amplify.DefaultModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify20DefaultModelProviderV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.LazyReferenceIdentifier]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.LazyReferenceIdentifier]", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20DefaultModelProviderV11identifiersACyxGSayAA23LazyReferenceIdentifierVGSg_tcfc", + "mangledName": "$s7Amplify20DefaultModelProviderV11identifiersACyxGSayAA23LazyReferenceIdentifierVGSg_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20DefaultModelProviderV4loadxSgyYaKF", + "mangledName": "$s7Amplify20DefaultModelProviderV4loadxSgyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelProviderState", + "printedName": "Amplify.ModelProviderState", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify18ModelProviderStateO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20DefaultModelProviderV8getStateAA0cdF0OyxGyF", + "mangledName": "$s7Amplify20DefaultModelProviderV8getStateAA0cdF0OyxGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20DefaultModelProviderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify20DefaultModelProviderV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify20DefaultModelProviderV7Elementa", + "mangledName": "$s7Amplify20DefaultModelProviderV7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20DefaultModelProviderV", + "mangledName": "$s7Amplify20DefaultModelProviderV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelProvider", + "printedName": "ModelProvider", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:7Amplify13ModelProviderP", + "mangledName": "$s7Amplify13ModelProviderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LazyReferenceIdentifier", + "printedName": "LazyReferenceIdentifier", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23LazyReferenceIdentifierV4nameSSvp", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23LazyReferenceIdentifierV4nameSSvg", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23LazyReferenceIdentifierV5valueSSvp", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV5valueSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23LazyReferenceIdentifierV5valueSSvg", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV5valueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23LazyReferenceIdentifierV4name5valueACSS_SStcfc", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV4name5valueACSS_SStcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23LazyReferenceIdentifierV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23LazyReferenceIdentifierV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23LazyReferenceIdentifierV", + "mangledName": "$s7Amplify23LazyReferenceIdentifierV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LazyReference", + "printedName": "LazyReference", + "children": [ + { + "kind": "Var", + "name": "_state", + "printedName": "_state", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13LazyReferenceC6_stateAA01_bC10ValueStateOvp", + "mangledName": "$s7Amplify13LazyReferenceC6_stateAA01_bC10ValueStateOvp", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "LazyReference" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LazyReferenceValueState", + "printedName": "Amplify._LazyReferenceValueState", + "usr": "s:7Amplify24_LazyReferenceValueStateO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13LazyReferenceC6_stateAA01_bC10ValueStateOvg", + "mangledName": "$s7Amplify13LazyReferenceC6_stateAA01_bC10ValueStateOvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(modelProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReference", + "printedName": "Amplify.LazyReference", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify13LazyReferenceC" + }, + { + "kind": "TypeNominal", + "name": "AnyModelProvider", + "printedName": "Amplify.AnyModelProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify16AnyModelProviderV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13LazyReferenceC13modelProviderACyxGAA08AnyModelE0VyxG_tcfc", + "mangledName": "$s7Amplify13LazyReferenceC13modelProviderACyxGAA08AnyModelE0VyxG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReference", + "printedName": "Amplify.LazyReference", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify13LazyReferenceC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ModelType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13LazyReferenceCyACyxGxSgcfc", + "mangledName": "$s7Amplify13LazyReferenceCyACyxGxSgcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifiers:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReference", + "printedName": "Amplify.LazyReference", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify13LazyReferenceC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.LazyReferenceIdentifier]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.LazyReferenceIdentifier]", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReferenceIdentifier", + "printedName": "Amplify.LazyReferenceIdentifier", + "usr": "s:7Amplify23LazyReferenceIdentifierV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13LazyReferenceC11identifiersACyxGSayAA0bC10IdentifierVGSg_tcfc", + "mangledName": "$s7Amplify13LazyReferenceC11identifiersACyxGSayAA0bC10IdentifierVGSg_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LazyReference", + "printedName": "Amplify.LazyReference", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify13LazyReferenceC" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13LazyReferenceC4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify13LazyReferenceC4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13LazyReferenceC6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify13LazyReferenceC6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ModelType?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13LazyReferenceC3getxSgyYaKF", + "mangledName": "$s7Amplify13LazyReferenceC3getxSgyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "require", + "printedName": "require()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13LazyReferenceC7requirexyYaKF", + "mangledName": "$s7Amplify13LazyReferenceC7requirexyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify13LazyReferenceC", + "mangledName": "$s7Amplify13LazyReferenceC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "_LazyReferenceValue", + "printedName": "_LazyReferenceValue", + "usr": "s:7Amplify19_LazyReferenceValueP", + "mangledName": "$s7Amplify19_LazyReferenceValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "List", + "printedName": "List", + "children": [ + { + "kind": "TypeAlias", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC5Indexa", + "mangledName": "$s7Amplify4ListC5Indexa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC7Elementa", + "mangledName": "$s7Amplify4ListC7Elementa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "isLoaded", + "printedName": "isLoaded", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC8isLoadedSbvp", + "mangledName": "$s7Amplify4ListC8isLoadedSbvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC8isLoadedSbvg", + "mangledName": "$s7Amplify4ListC8isLoadedSbvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "elements", + "printedName": "elements", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC8elementsSayxGvp", + "mangledName": "$s7Amplify4ListC8elementsSayxGvp", + "moduleName": "Amplify", + "declAttributes": [ + "SetterAccess" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC8elementsSayxGvg", + "mangledName": "$s7Amplify4ListC8elementsSayxGvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(listProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + }, + { + "kind": "TypeNominal", + "name": "AnyModelListProvider", + "printedName": "Amplify.AnyModelListProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify20AnyModelListProviderV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify4ListC12listProviderACyxGAA08AnyModelbD0VyxG_tcfc", + "mangledName": "$s7Amplify4ListC12listProviderACyxGAA08AnyModelbD0VyxG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(elements:)", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify4ListC8elementsACyxGSayxG_tcfc", + "mangledName": "$s7Amplify4ListC8elementsACyxGSayxG_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.List.Element...", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify4ListC12arrayLiteralACyxGxd_tcfc", + "mangledName": "$s7Amplify4ListC12arrayLiteralACyxGxd_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Required" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "startIndex", + "printedName": "startIndex", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC10startIndexSivp", + "mangledName": "$s7Amplify4ListC10startIndexSivp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC10startIndexSivg", + "mangledName": "$s7Amplify4ListC10startIndexSivg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endIndex", + "printedName": "endIndex", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC8endIndexSivp", + "mangledName": "$s7Amplify4ListC8endIndexSivp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC8endIndexSivg", + "mangledName": "$s7Amplify4ListC8endIndexSivg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "index", + "printedName": "index(after:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC5index5afterS2i_tF", + "mangledName": "$s7Amplify4ListC5index5afterS2i_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify4ListCyxSicip", + "mangledName": "$s7Amplify4ListCyxSicip", + "moduleName": "Amplify", + "genericSig": "", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListCyxSicig", + "mangledName": "$s7Amplify4ListCyxSicig", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "makeIterator", + "printedName": "makeIterator()", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Amplify.List.Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC12makeIterators08IndexingD0VySayxGGyF", + "mangledName": "$s7Amplify4ListC12makeIterators08IndexingD0VySayxGGyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "__Consuming" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC5countSivp", + "mangledName": "$s7Amplify4ListC5countSivp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC5countSivg", + "mangledName": "$s7Amplify4ListC5countSivg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalCount", + "printedName": "totalCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4ListC10totalCountSivp", + "mangledName": "$s7Amplify4ListC10totalCountSivp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4ListC10totalCountSivg", + "mangledName": "$s7Amplify4ListC10totalCountSivg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "limit", + "printedName": "limit(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC5limityACyxGXDSiF", + "mangledName": "$s7Amplify4ListC5limityACyxGXDSiF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify4ListC4fromACyxGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify4ListC4fromACyxGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify4ListC6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC19ArrayLiteralElementa", + "mangledName": "$s7Amplify4ListC19ArrayLiteralElementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "usr": "s:SI" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC7Indicesa", + "mangledName": "$s7Amplify4ListC7Indicesa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Amplify.List.Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC8Iteratora", + "mangledName": "$s7Amplify4ListC8Iteratora", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "usr": "s:s5SliceV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC11SubSequencea", + "mangledName": "$s7Amplify4ListC11SubSequencea", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "LazyListPublisher", + "printedName": "LazyListPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher<[Amplify.List.Element], Amplify.DataStoreError>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify4ListC04LazyB9Publishera", + "mangledName": "$s7Amplify4ListC04LazyB9Publishera", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + }, + { + "kind": "Function", + "name": "fetch", + "printedName": "fetch()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC5fetchyyYaKF", + "mangledName": "$s7Amplify4ListC5fetchyyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasNextPage", + "printedName": "hasNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC11hasNextPageSbyF", + "mangledName": "$s7Amplify4ListC11hasNextPageSbyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getNextPage", + "printedName": "getNextPage()", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List.Element>", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4ListC11getNextPageACyxGyYaKF", + "mangledName": "$s7Amplify4ListC11getNextPageACyxGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify4ListC", + "mangledName": "$s7Amplify4ListC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Amplify.List.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Amplify.List.Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Slice", + "printedName": "Swift.Slice>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "usr": "s:s5SliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices>", + "children": [ + { + "kind": "TypeNominal", + "name": "List", + "printedName": "Amplify.List", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify4ListC" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "ModelListMarker", + "printedName": "ModelListMarker", + "usr": "s:7Amplify15ModelListMarkerP", + "mangledName": "$s7Amplify15ModelListMarkerP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Amplify.List.Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.List.Element]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Amplify.List.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Model", + "printedName": "Model", + "children": [ + { + "kind": "TypeAlias", + "name": "Identifier", + "printedName": "Identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify5ModelP10Identifiera", + "mangledName": "$s7Amplify5ModelP10Identifiera", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelP6schemaAA0B6SchemaVvpZ", + "mangledName": "$s7Amplify5ModelP6schemaAA0B6SchemaVvpZ", + "moduleName": "Amplify", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelP6schemaAA0B6SchemaVvgZ", + "mangledName": "$s7Amplify5ModelP6schemaAA0B6SchemaVvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rootPath", + "printedName": "rootPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyContainerPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelP8rootPathAA017PropertyContainerD0_pSgvpZ", + "mangledName": "$s7Amplify5ModelP8rootPathAA017PropertyContainerD0_pSgvpZ", + "moduleName": "Amplify", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyContainerPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelP8rootPathAA017PropertyContainerD0_pSgvgZ", + "mangledName": "$s7Amplify5ModelP8rootPathAA017PropertyContainerD0_pSgvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelP9modelNameSSvpZ", + "mangledName": "$s7Amplify5ModelP9modelNameSSvpZ", + "moduleName": "Amplify", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelP9modelNameSSvgZ", + "mangledName": "$s7Amplify5ModelP9modelNameSSvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelP9modelNameSSvp", + "mangledName": "$s7Amplify5ModelP9modelNameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelP9modelNameSSvg", + "mangledName": "$s7Amplify5ModelP9modelNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "identifier", + "printedName": "identifier(schema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifierProtocol", + "printedName": "Amplify.ModelIdentifierProtocol", + "usr": "s:7Amplify23ModelIdentifierProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelP10identifier6schemaAA0B18IdentifierProtocol_pAA0B6SchemaV_tF", + "mangledName": "$s7Amplify5ModelP10identifier6schemaAA0B18IdentifierProtocol_pAA0B6SchemaV_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelP10identifierSSvp", + "mangledName": "$s7Amplify5ModelP10identifierSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelP10identifierSSvg", + "mangledName": "$s7Amplify5ModelP10identifierSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "from", + "printedName": "from(json:decoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.JSONDecoder?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecoder", + "printedName": "Foundation.JSONDecoder", + "usr": "s:10Foundation11JSONDecoderC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE4from4json7decoderxSS_10Foundation11JSONDecoderCSgtKFZ", + "mangledName": "$s7Amplify5ModelPAAE4from4json7decoderxSS_10Foundation11JSONDecoderCSgtKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "from", + "printedName": "from(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE4from10dictionaryxSDySSypG_tKFZ", + "mangledName": "$s7Amplify5ModelPAAE4from10dictionaryxSDySSypG_tKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "toJSON", + "printedName": "toJSON(encoder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.JSONEncoder?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncoder", + "printedName": "Foundation.JSONEncoder", + "usr": "s:10Foundation11JSONEncoderC" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE6toJSON7encoderSS10Foundation11JSONEncoderCSg_tKF", + "mangledName": "$s7Amplify5ModelPAAE6toJSON7encoderSS10Foundation11JSONEncoderCSg_tKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any??", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify5ModelPAAEyypSgSgSScip", + "mangledName": "$s7Amplify5ModelPAAEyypSgSgSScip", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any??", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAEyypSgSgSScig", + "mangledName": "$s7Amplify5ModelPAAEyypSgSgSScig", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE6schemaAA0B6SchemaVvpZ", + "mangledName": "$s7Amplify5ModelPAAE6schemaAA0B6SchemaVvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE6schemaAA0B6SchemaVvgZ", + "mangledName": "$s7Amplify5ModelPAAE6schemaAA0B6SchemaVvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE6schemaAA0B6SchemaVvp", + "mangledName": "$s7Amplify5ModelPAAE6schemaAA0B6SchemaVvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE6schemaAA0B6SchemaVvg", + "mangledName": "$s7Amplify5ModelPAAE6schemaAA0B6SchemaVvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "defineSchema", + "printedName": "defineSchema(name:attributes:define:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.ModelAttribute...", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelAttribute", + "printedName": "Amplify.ModelAttribute", + "usr": "s:7Amplify14ModelAttributeO" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout Amplify.ModelSchemaDefinition) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ModelSchemaDefinition)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchemaDefinition", + "printedName": "Amplify.ModelSchemaDefinition", + "usr": "s:7Amplify21ModelSchemaDefinitionV" + } + ], + "usr": "s:7Amplify21ModelSchemaDefinitionV" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE12defineSchema4name10attributes0C0AA0bD0VSSSg_AA0B9AttributeOdyAA0bD10DefinitionVzXEtFZ", + "mangledName": "$s7Amplify5ModelPAAE12defineSchema4name10attributes0C0AA0bD0VSSSg_AA0B9AttributeOdyAA0bD10DefinitionVzXEtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rule", + "printedName": "rule(allow:ownerField:identityClaim:groupClaim:groups:groupsField:provider:operations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRule", + "printedName": "Amplify.AuthRule", + "usr": "s:7Amplify8AuthRuleV" + }, + { + "kind": "TypeNominal", + "name": "AuthStrategy", + "printedName": "Amplify.AuthStrategy", + "usr": "s:7Amplify12AuthStrategyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthRuleProvider?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthRuleProvider", + "printedName": "Amplify.AuthRuleProvider", + "usr": "s:7Amplify16AuthRuleProviderO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelOperation]", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE4rule5allow10ownerField13identityClaim05groupH06groups0jF08provider10operationsAA8AuthRuleVAA0M8StrategyO_SSSgA2QSaySSGAqA0mN8ProviderOSgSayAA0B9OperationOGtFZ", + "mangledName": "$s7Amplify5ModelPAAE4rule5allow10ownerField13identityClaim05groupH06groups0jF08provider10operationsAA8AuthRuleVAA0M8StrategyO_SSSgA2QSaySSGAqA0mN8ProviderOSgSayAA0B9OperationOGtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE9modelNameSSvpZ", + "mangledName": "$s7Amplify5ModelPAAE9modelNameSSvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE9modelNameSSvgZ", + "mangledName": "$s7Amplify5ModelPAAE9modelNameSSvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE9modelNameSSvp", + "mangledName": "$s7Amplify5ModelPAAE9modelNameSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE9modelNameSSvg", + "mangledName": "$s7Amplify5ModelPAAE9modelNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE10identifierSSvp", + "mangledName": "$s7Amplify5ModelPAAE10identifierSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE10identifierSSvg", + "mangledName": "$s7Amplify5ModelPAAE10identifierSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "identifier", + "printedName": "identifier(schema:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifierProtocol", + "printedName": "Amplify.ModelIdentifierProtocol", + "usr": "s:7Amplify23ModelIdentifierProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5ModelPAAE10identifier6schemaAA0B18IdentifierProtocol_pAA0B6SchemaV_tF", + "mangledName": "$s7Amplify5ModelPAAE10identifier6schemaAA0B18IdentifierProtocol_pAA0B6SchemaV_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "rootPath", + "printedName": "rootPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyContainerPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify5ModelPAAE8rootPathAA017PropertyContainerD0_pSgvpZ", + "mangledName": "$s7Amplify5ModelPAAE8rootPathAA017PropertyContainerD0_pSgvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyContainerPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyContainerPath", + "printedName": "Amplify.PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify5ModelPAAE8rootPathAA017PropertyContainerD0_pSgvgZ", + "mangledName": "$s7Amplify5ModelPAAE8rootPathAA017PropertyContainerD0_pSgvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyModelIdentifierFormat", + "printedName": "AnyModelIdentifierFormat", + "declKind": "Protocol", + "usr": "s:7Amplify24AnyModelIdentifierFormatP", + "mangledName": "$s7Amplify24AnyModelIdentifierFormatP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelIdentifierFormat", + "printedName": "ModelIdentifierFormat", + "children": [ + { + "kind": "TypeDecl", + "name": "Default", + "printedName": "Default", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO4nameSSvpZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO7DefaultO4nameSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO4nameSSvgZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO7DefaultO4nameSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO", + "mangledName": "$s7Amplify21ModelIdentifierFormatO7DefaultO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AnyModelIdentifierFormat", + "printedName": "AnyModelIdentifierFormat", + "usr": "s:7Amplify24AnyModelIdentifierFormatP", + "mangledName": "$s7Amplify24AnyModelIdentifierFormatP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Custom", + "printedName": "Custom", + "children": [ + { + "kind": "Var", + "name": "separator", + "printedName": "separator", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO9separatorSSvpZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO9separatorSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO9separatorSSvgZ", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO9separatorSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21ModelIdentifierFormatO6CustomO", + "mangledName": "$s7Amplify21ModelIdentifierFormatO6CustomO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AnyModelIdentifierFormat", + "printedName": "AnyModelIdentifierFormat", + "usr": "s:7Amplify24AnyModelIdentifierFormatP", + "mangledName": "$s7Amplify24AnyModelIdentifierFormatP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify21ModelIdentifierFormatO", + "mangledName": "$s7Amplify21ModelIdentifierFormatO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "ModelIdentifiable", + "printedName": "ModelIdentifiable", + "children": [ + { + "kind": "AssociatedType", + "name": "IdentifierFormat", + "printedName": "IdentifierFormat", + "declKind": "AssociatedType", + "usr": "s:7Amplify17ModelIdentifiableP16IdentifierFormatQa", + "mangledName": "$s7Amplify17ModelIdentifiableP16IdentifierFormatQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "IdentifierProtocol", + "printedName": "IdentifierProtocol", + "declKind": "AssociatedType", + "usr": "s:7Amplify17ModelIdentifiableP18IdentifierProtocolQa", + "mangledName": "$s7Amplify17ModelIdentifiableP18IdentifierProtocolQa", + "moduleName": "Amplify", + "protocolReq": true + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17ModelIdentifiableP", + "mangledName": "$s7Amplify17ModelIdentifiableP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "ModelIdentifierProtocol", + "printedName": "ModelIdentifierProtocol", + "children": [ + { + "kind": "TypeAlias", + "name": "Field", + "printedName": "Field", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23ModelIdentifierProtocolP5Fielda", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP5Fielda", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "Fields", + "printedName": "Fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Self.Field]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Self.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23ModelIdentifierProtocolP6Fieldsa", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP6Fieldsa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(name: Swift.String, value: Amplify.Persistable)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolP6fieldsSaySS4name_AA11Persistable_p5valuetGvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP6fieldsSaySS4name_AA11Persistable_p5valuetGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(name: Swift.String, value: Amplify.Persistable)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolP6fieldsSaySS4name_AA11Persistable_p5valuetGvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP6fieldsSaySS4name_AA11Persistable_p5valuetGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolP11stringValueSSvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP11stringValueSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolP11stringValueSSvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP11stringValueSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolP4keysSaySSGvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP4keysSaySSGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolP4keysSaySSGvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP4keysSaySSGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Persistable]", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolP6valuesSayAA11Persistable_pGvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP6valuesSayAA11Persistable_pGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Persistable]", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolP6valuesSayAA11Persistable_pGvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP6valuesSayAA11Persistable_pGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "predicate", + "printedName": "predicate", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolP9predicateAA14QueryPredicate_pvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP9predicateAA14QueryPredicate_pvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolP9predicateAA14QueryPredicate_pvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP9predicateAA14QueryPredicate_pvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE11stringValueSSvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE11stringValueSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE11stringValueSSvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE11stringValueSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE4keysSaySSGvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE4keysSaySSGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE4keysSaySSGvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE4keysSaySSGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Persistable]", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE6valuesSayAA11Persistable_pGvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE6valuesSayAA11Persistable_pGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Persistable]", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE6valuesSayAA11Persistable_pGvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE6valuesSayAA11Persistable_pGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "predicate", + "printedName": "predicate", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE9predicateAA14QueryPredicate_pvp", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE9predicateAA14QueryPredicate_pvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23ModelIdentifierProtocolPAAE9predicateAA14QueryPredicate_pvg", + "mangledName": "$s7Amplify23ModelIdentifierProtocolPAAE9predicateAA14QueryPredicate_pvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23ModelIdentifierProtocolP", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelIdentifier", + "printedName": "ModelIdentifier", + "children": [ + { + "kind": "Var", + "name": "fields", + "printedName": "fields", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Fields", + "printedName": "Amplify.ModelIdentifier.Fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelIdentifier.Field]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Amplify.ModelIdentifier.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvp", + "mangledName": "$s7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Fields", + "printedName": "Amplify.ModelIdentifier.Fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelIdentifier.Field]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Amplify.ModelIdentifier.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvg", + "mangledName": "$s7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "Fields", + "printedName": "Amplify.ModelIdentifier.Fields", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.ModelIdentifier.Field]", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Amplify.ModelIdentifier.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvs", + "mangledName": "$s7Amplify15ModelIdentifierV6fieldsSaySS4name_AA11Persistable_p5valuetGvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "make", + "printedName": "make(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "F" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "(name: Swift.String, value: Amplify.Persistable)...", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelIdentifierVA2A0bC6FormatO6CustomORs_rlE4make6fieldsACyxAGGSS4name_AA11Persistable_p5valuetd_tFZ", + "mangledName": "$s7Amplify15ModelIdentifierVA2A0bC6FormatO6CustomORs_rlE4make6fieldsACyxAGGSS4name_AA11Persistable_p5valuetd_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "make", + "printedName": "make(fields:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "F" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(name: Swift.String, value: Amplify.Persistable)]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, value: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelIdentifierVA2A0bC6FormatO6CustomORs_rlE4make6fieldsACyxAGGSaySS4name_AA11Persistable_p5valuetG_tFZ", + "mangledName": "$s7Amplify15ModelIdentifierVA2A0bC6FormatO6CustomORs_rlE4make6fieldsACyxAGGSaySS4name_AA11Persistable_p5valuetG_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeDefault", + "printedName": "makeDefault(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelIdentifierV11makeDefault2idACyxAA0bC6FormatO0E0OGSS_tFZ", + "mangledName": "$s7Amplify15ModelIdentifierV11makeDefault2idACyxAA0bC6FormatO0E0OGSS_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeDefault", + "printedName": "makeDefault(fromModel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15ModelIdentifierV11makeDefault04fromB0ACyxAA0bC6FormatO0E0OGx_tFZ", + "mangledName": "$s7Amplify15ModelIdentifierV11makeDefault04fromB0ACyxAA0bC6FormatO0E0OGx_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify15ModelIdentifierV", + "mangledName": "$s7Amplify15ModelIdentifierV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "ModelIdentifierProtocol", + "printedName": "ModelIdentifierProtocol", + "usr": "s:7Amplify23ModelIdentifierProtocolP", + "mangledName": "$s7Amplify23ModelIdentifierProtocolP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "DefaultModelIdentifier", + "printedName": "DefaultModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelIdentifier", + "printedName": "Amplify.ModelIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Default", + "printedName": "Amplify.ModelIdentifierFormat.Default", + "usr": "s:7Amplify21ModelIdentifierFormatO7DefaultO" + } + ], + "usr": "s:7Amplify15ModelIdentifierV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify22DefaultModelIdentifiera", + "mangledName": "$s7Amplify22DefaultModelIdentifiera", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "PropertyPathMetadata", + "printedName": "PropertyPathMetadata", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20PropertyPathMetadataV4nameSSvp", + "mangledName": "$s7Amplify20PropertyPathMetadataV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20PropertyPathMetadataV4nameSSvg", + "mangledName": "$s7Amplify20PropertyPathMetadataV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCollection", + "printedName": "isCollection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20PropertyPathMetadataV12isCollectionSbvp", + "mangledName": "$s7Amplify20PropertyPathMetadataV12isCollectionSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20PropertyPathMetadataV12isCollectionSbvg", + "mangledName": "$s7Amplify20PropertyPathMetadataV12isCollectionSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parent", + "printedName": "parent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPath", + "printedName": "Amplify.PropertyPath", + "usr": "s:7Amplify12PropertyPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20PropertyPathMetadataV6parentAA0bC0_pSgvp", + "mangledName": "$s7Amplify20PropertyPathMetadataV6parentAA0bC0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPath", + "printedName": "Amplify.PropertyPath", + "usr": "s:7Amplify12PropertyPathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20PropertyPathMetadataV6parentAA0bC0_pSgvg", + "mangledName": "$s7Amplify20PropertyPathMetadataV6parentAA0bC0_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20PropertyPathMetadataV", + "mangledName": "$s7Amplify20PropertyPathMetadataV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PropertyPath", + "printedName": "PropertyPath", + "children": [ + { + "kind": "Function", + "name": "getMetadata", + "printedName": "getMetadata()", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPathMetadata", + "printedName": "Amplify.PropertyPathMetadata", + "usr": "s:7Amplify20PropertyPathMetadataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12PropertyPathP11getMetadataAA0bcE0VyF", + "mangledName": "$s7Amplify12PropertyPathP11getMetadataAA0bcE0VyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify12PropertyPathP", + "mangledName": "$s7Amplify12PropertyPathP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PropertyContainerPath", + "printedName": "PropertyContainerPath", + "children": [ + { + "kind": "Function", + "name": "getKeyPath", + "printedName": "getKeyPath()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21PropertyContainerPathP06getKeyD0SSyF", + "mangledName": "$s7Amplify21PropertyContainerPathP06getKeyD0SSyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getModelType", + "printedName": "getModelType()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21PropertyContainerPathP12getModelTypeAA0F0_pXpyF", + "mangledName": "$s7Amplify21PropertyContainerPathP12getModelTypeAA0F0_pXpyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKeyPath", + "printedName": "getKeyPath()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21PropertyContainerPathPAAE06getKeyD0SSyF", + "mangledName": "$s7Amplify21PropertyContainerPathPAAE06getKeyD0SSyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21PropertyContainerPathP", + "mangledName": "$s7Amplify21PropertyContainerPathP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "PropertyPath", + "printedName": "PropertyPath", + "usr": "s:7Amplify12PropertyPathP", + "mangledName": "$s7Amplify12PropertyPathP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FieldPath", + "printedName": "FieldPath", + "children": [ + { + "kind": "Function", + "name": "getMetadata", + "printedName": "getMetadata()", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPathMetadata", + "printedName": "Amplify.PropertyPathMetadata", + "usr": "s:7Amplify20PropertyPathMetadataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9FieldPathV11getMetadataAA08PropertycE0VyF", + "mangledName": "$s7Amplify9FieldPathV11getMetadataAA08PropertycE0VyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify9FieldPathV", + "mangledName": "$s7Amplify9FieldPathV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "PropertyPath", + "printedName": "PropertyPath", + "usr": "s:7Amplify12PropertyPathP", + "mangledName": "$s7Amplify12PropertyPathP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ModelPath", + "printedName": "ModelPath", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:isCollection:parent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelPath", + "printedName": "Amplify.ModelPath", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "ModelType" + } + ], + "usr": "s:7Amplify9ModelPathC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PropertyPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPath", + "printedName": "Amplify.PropertyPath", + "usr": "s:7Amplify12PropertyPathP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9ModelPathC4name12isCollection6parentACyxGSS_SbAA08PropertyC0_pSgtcfc", + "mangledName": "$s7Amplify9ModelPathC4name12isCollection6parentACyxGSS_SbAA08PropertyC0_pSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "getMetadata", + "printedName": "getMetadata()", + "children": [ + { + "kind": "TypeNominal", + "name": "PropertyPathMetadata", + "printedName": "Amplify.PropertyPathMetadata", + "usr": "s:7Amplify20PropertyPathMetadataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC11getMetadataAA08PropertycE0VyF", + "mangledName": "$s7Amplify9ModelPathC11getMetadataAA08PropertycE0VyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getModelType", + "printedName": "getModelType()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "Amplify.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC03getB4TypeAA0B0_pXpyF", + "mangledName": "$s7Amplify9ModelPathC03getB4TypeAA0B0_pXpyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRoot", + "printedName": "isRoot()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC6isRootSbyF", + "mangledName": "$s7Amplify9ModelPathC6isRootSbyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "id", + "printedName": "id(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC2idyAA05FieldC0VySSGSSF", + "mangledName": "$s7Amplify9ModelPathC2idyAA05FieldC0VySSGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC6stringyAA05FieldC0VySSGSSF", + "mangledName": "$s7Amplify9ModelPathC6stringyAA05FieldC0VySSGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bool", + "printedName": "bool(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC4boolyAA05FieldC0VySbGSSF", + "mangledName": "$s7Amplify9ModelPathC4boolyAA05FieldC0VySbGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "date", + "printedName": "date(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Amplify.Temporal.Date", + "usr": "s:7Amplify8TemporalO4DateV" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC4dateyAA05FieldC0VyAA8TemporalO4DateVGSSF", + "mangledName": "$s7Amplify9ModelPathC4dateyAA05FieldC0VyAA8TemporalO4DateVGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "datetime", + "printedName": "datetime(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC8datetimeyAA05FieldC0VyAA8TemporalO8DateTimeVGSSF", + "mangledName": "$s7Amplify9ModelPathC8datetimeyAA05FieldC0VyAA8TemporalO8DateTimeVGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "time", + "printedName": "time(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Time", + "printedName": "Amplify.Temporal.Time", + "usr": "s:7Amplify8TemporalO4TimeV" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC4timeyAA05FieldC0VyAA8TemporalO4TimeVGSSF", + "mangledName": "$s7Amplify9ModelPathC4timeyAA05FieldC0VyAA8TemporalO4TimeVGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "int", + "printedName": "int(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC3intyAA05FieldC0VySiGSSF", + "mangledName": "$s7Amplify9ModelPathC3intyAA05FieldC0VySiGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "double", + "printedName": "double(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FieldPath", + "printedName": "Amplify.FieldPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:7Amplify9FieldPathV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ModelPathC6doubleyAA05FieldC0VySdGSSF", + "mangledName": "$s7Amplify9ModelPathC6doubleyAA05FieldC0VySdGSSF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify9ModelPathC", + "mangledName": "$s7Amplify9ModelPathC", + "moduleName": "Amplify", + "genericSig": "", + "isOpen": true, + "conformances": [ + { + "kind": "Conformance", + "name": "PropertyContainerPath", + "printedName": "PropertyContainerPath", + "usr": "s:7Amplify21PropertyContainerPathP", + "mangledName": "$s7Amplify21PropertyContainerPathP" + }, + { + "kind": "Conformance", + "name": "PropertyPath", + "printedName": "PropertyPath", + "usr": "s:7Amplify12PropertyPathP", + "mangledName": "$s7Amplify12PropertyPathP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DateUnit", + "printedName": "DateUnit", + "children": [ + { + "kind": "Var", + "name": "oneDay", + "printedName": "oneDay", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8DateUnitV6oneDayACvpZ", + "mangledName": "$s7Amplify8DateUnitV6oneDayACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8DateUnitV6oneDayACvgZ", + "mangledName": "$s7Amplify8DateUnitV6oneDayACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneWeek", + "printedName": "oneWeek", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8DateUnitV7oneWeekACvpZ", + "mangledName": "$s7Amplify8DateUnitV7oneWeekACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8DateUnitV7oneWeekACvgZ", + "mangledName": "$s7Amplify8DateUnitV7oneWeekACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneMonth", + "printedName": "oneMonth", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8DateUnitV8oneMonthACvpZ", + "mangledName": "$s7Amplify8DateUnitV8oneMonthACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8DateUnitV8oneMonthACvgZ", + "mangledName": "$s7Amplify8DateUnitV8oneMonthACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneYear", + "printedName": "oneYear", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8DateUnitV7oneYearACvpZ", + "mangledName": "$s7Amplify8DateUnitV7oneYearACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8DateUnitV7oneYearACvgZ", + "mangledName": "$s7Amplify8DateUnitV7oneYearACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "days", + "printedName": "days(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8DateUnitV4daysyACSiFZ", + "mangledName": "$s7Amplify8DateUnitV4daysyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "weeks", + "printedName": "weeks(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8DateUnitV5weeksyACSiFZ", + "mangledName": "$s7Amplify8DateUnitV5weeksyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "months", + "printedName": "months(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8DateUnitV6monthsyACSiFZ", + "mangledName": "$s7Amplify8DateUnitV6monthsyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "years", + "printedName": "years(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8DateUnitV5yearsyACSiFZ", + "mangledName": "$s7Amplify8DateUnitV5yearsyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8DateUnitV", + "mangledName": "$s7Amplify8DateUnitV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DateUnitOperable", + "printedName": "DateUnitOperable", + "children": [ + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16DateUnitOperableP1poiyxx_AA0bC0VtFZ", + "mangledName": "$s7Amplify16DateUnitOperableP1poiyxx_AA0bC0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16DateUnitOperableP1soiyxx_AA0bC0VtFZ", + "mangledName": "$s7Amplify16DateUnitOperableP1soiyxx_AA0bC0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify16DateUnitOperableP", + "mangledName": "$s7Amplify16DateUnitOperableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Temporal", + "printedName": "Temporal", + "children": [ + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "foundationDate", + "printedName": "foundationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO4DateV010foundationC010FoundationADVvp", + "mangledName": "$s7Amplify8TemporalO4DateV010foundationC010FoundationADVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO4DateV010foundationC010FoundationADVvg", + "mangledName": "$s7Amplify8TemporalO4DateV010foundationC010FoundationADVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO4DateV8timeZone10Foundation04TimeE0VSgvp", + "mangledName": "$s7Amplify8TemporalO4DateV8timeZone10Foundation04TimeE0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO4DateV8timeZone10Foundation04TimeE0VSgvg", + "mangledName": "$s7Amplify8TemporalO4DateV8timeZone10Foundation04TimeE0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "now", + "printedName": "now()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Amplify.Temporal.Date", + "usr": "s:7Amplify8TemporalO4DateV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TemporalO4DateV3nowAEyFZ", + "mangledName": "$s7Amplify8TemporalO4DateV3nowAEyFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Amplify.Temporal.Date", + "usr": "s:7Amplify8TemporalO4DateV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8TemporalO4DateV_8timeZoneAE10FoundationADV_AG04TimeE0VSgtcfc", + "mangledName": "$s7Amplify8TemporalO4DateV_8timeZoneAE10FoundationADV_AG04TimeE0VSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8TemporalO4DateV", + "mangledName": "$s7Amplify8TemporalO4DateV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TemporalSpec", + "printedName": "TemporalSpec", + "usr": "s:7Amplify12TemporalSpecP", + "mangledName": "$s7Amplify12TemporalSpecP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "DateUnitOperable", + "printedName": "DateUnitOperable", + "usr": "s:7Amplify16DateUnitOperableP", + "mangledName": "$s7Amplify16DateUnitOperableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DateTime", + "printedName": "DateTime", + "children": [ + { + "kind": "Var", + "name": "foundationDate", + "printedName": "foundationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO8DateTimeV010foundationC010Foundation0C0Vvp", + "mangledName": "$s7Amplify8TemporalO8DateTimeV010foundationC010Foundation0C0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO8DateTimeV010foundationC010Foundation0C0Vvg", + "mangledName": "$s7Amplify8TemporalO8DateTimeV010foundationC010Foundation0C0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO8DateTimeV8timeZone10Foundation0dF0VSgvp", + "mangledName": "$s7Amplify8TemporalO8DateTimeV8timeZone10Foundation0dF0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO8DateTimeV8timeZone10Foundation0dF0VSgvg", + "mangledName": "$s7Amplify8TemporalO8DateTimeV8timeZone10Foundation0dF0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "now", + "printedName": "now()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TemporalO8DateTimeV3nowAEyFZ", + "mangledName": "$s7Amplify8TemporalO8DateTimeV3nowAEyFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "time", + "printedName": "time", + "children": [ + { + "kind": "TypeNominal", + "name": "Time", + "printedName": "Amplify.Temporal.Time", + "usr": "s:7Amplify8TemporalO4TimeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO8DateTimeV4timeAC0D0Vvp", + "mangledName": "$s7Amplify8TemporalO8DateTimeV4timeAC0D0Vvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Time", + "printedName": "Amplify.Temporal.Time", + "usr": "s:7Amplify8TemporalO4TimeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO8DateTimeV4timeAC0D0Vvg", + "mangledName": "$s7Amplify8TemporalO8DateTimeV4timeAC0D0Vvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8TemporalO8DateTimeV_8timeZoneAE10Foundation0C0V_AG0dF0VSgtcfc", + "mangledName": "$s7Amplify8TemporalO8DateTimeV_8timeZoneAE10Foundation0C0V_AG0dF0VSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8TemporalO8DateTimeV", + "mangledName": "$s7Amplify8TemporalO8DateTimeV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TemporalSpec", + "printedName": "TemporalSpec", + "usr": "s:7Amplify12TemporalSpecP", + "mangledName": "$s7Amplify12TemporalSpecP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "DateUnitOperable", + "printedName": "DateUnitOperable", + "usr": "s:7Amplify16DateUnitOperableP", + "mangledName": "$s7Amplify16DateUnitOperableP" + }, + { + "kind": "Conformance", + "name": "TimeUnitOperable", + "printedName": "TimeUnitOperable", + "usr": "s:7Amplify16TimeUnitOperableP", + "mangledName": "$s7Amplify16TimeUnitOperableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Time", + "printedName": "Time", + "children": [ + { + "kind": "Var", + "name": "foundationDate", + "printedName": "foundationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO4TimeV14foundationDate10Foundation0E0Vvp", + "mangledName": "$s7Amplify8TemporalO4TimeV14foundationDate10Foundation0E0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO4TimeV14foundationDate10Foundation0E0Vvg", + "mangledName": "$s7Amplify8TemporalO4TimeV14foundationDate10Foundation0E0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO4TimeV8timeZone10Foundation0cE0VSgvp", + "mangledName": "$s7Amplify8TemporalO4TimeV8timeZone10Foundation0cE0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO4TimeV8timeZone10Foundation0cE0VSgvg", + "mangledName": "$s7Amplify8TemporalO4TimeV8timeZone10Foundation0cE0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "now", + "printedName": "now()", + "children": [ + { + "kind": "TypeNominal", + "name": "Time", + "printedName": "Amplify.Temporal.Time", + "usr": "s:7Amplify8TemporalO4TimeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TemporalO4TimeV3nowAEyFZ", + "mangledName": "$s7Amplify8TemporalO4TimeV3nowAEyFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Time", + "printedName": "Amplify.Temporal.Time", + "usr": "s:7Amplify8TemporalO4TimeV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8TemporalO4TimeV_8timeZoneAE10Foundation4DateV_AG0cE0VSgtcfc", + "mangledName": "$s7Amplify8TemporalO4TimeV_8timeZoneAE10Foundation4DateV_AG0cE0VSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "iso8601DateComponents", + "printedName": "iso8601DateComponents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TemporalO4TimeV21iso8601DateComponentsShy10Foundation8CalendarV9ComponentOGvpZ", + "mangledName": "$s7Amplify8TemporalO4TimeV21iso8601DateComponentsShy10Foundation8CalendarV9ComponentOGvpZ", + "moduleName": "Amplify", + "static": true, + "deprecated": true, + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TemporalO4TimeV21iso8601DateComponentsShy10Foundation8CalendarV9ComponentOGvgZ", + "mangledName": "$s7Amplify8TemporalO4TimeV21iso8601DateComponentsShy10Foundation8CalendarV9ComponentOGvgZ", + "moduleName": "Amplify", + "static": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8TemporalO4TimeV", + "mangledName": "$s7Amplify8TemporalO4TimeV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TemporalSpec", + "printedName": "TemporalSpec", + "usr": "s:7Amplify12TemporalSpecP", + "mangledName": "$s7Amplify12TemporalSpecP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "TimeUnitOperable", + "printedName": "TimeUnitOperable", + "usr": "s:7Amplify16TimeUnitOperableP", + "mangledName": "$s7Amplify16TimeUnitOperableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify8TemporalO", + "mangledName": "$s7Amplify8TemporalO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "TemporalSpec", + "printedName": "TemporalSpec", + "children": [ + { + "kind": "Function", + "name": "now", + "printedName": "now()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecP3nowxyFZ", + "mangledName": "$s7Amplify12TemporalSpecP3nowxyFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "foundationDate", + "printedName": "foundationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalSpecP14foundationDate10Foundation0E0Vvp", + "mangledName": "$s7Amplify12TemporalSpecP14foundationDate10Foundation0E0Vvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalSpecP14foundationDate10Foundation0E0Vvg", + "mangledName": "$s7Amplify12TemporalSpecP14foundationDate10Foundation0E0Vvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeZone", + "printedName": "timeZone", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalSpecP8timeZone10Foundation04TimeE0VSgvp", + "mangledName": "$s7Amplify12TemporalSpecP8timeZone10Foundation04TimeE0VSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalSpecP8timeZone10Foundation04TimeE0VSgvg", + "mangledName": "$s7Amplify12TemporalSpecP8timeZone10Foundation04TimeE0VSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iso8601String", + "printedName": "iso8601String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalSpecP13iso8601StringSSvp", + "mangledName": "$s7Amplify12TemporalSpecP13iso8601StringSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalSpecP13iso8601StringSSvg", + "mangledName": "$s7Amplify12TemporalSpecP13iso8601StringSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(iso8601String:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecP13iso8601StringxSS_tKcfc", + "mangledName": "$s7Amplify12TemporalSpecP13iso8601StringxSS_tKcfc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(iso8601String:format:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecP13iso8601String6formatxSS_AA0B6FormatVtKcfc", + "mangledName": "$s7Amplify12TemporalSpecP13iso8601String6formatxSS_AA0B6FormatVtKcfc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.TimeZone?", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecP_8timeZonex10Foundation4DateV_AE04TimeE0VSgtcfc", + "mangledName": "$s7Amplify12TemporalSpecP_8timeZonex10Foundation4DateV_AE04TimeE0VSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "iso8601FormattedString", + "printedName": "iso8601FormattedString(format:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + }, + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecP22iso8601FormattedString6format8timeZoneSSAA0B6FormatV_10Foundation04TimeI0VtF", + "mangledName": "$s7Amplify12TemporalSpecP22iso8601FormattedString6format8timeZoneSSAA0B6FormatV_10Foundation04TimeI0VtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPA2A16DateUnitOperableRzrlE1poiyxx_AA0dE0VtFZ", + "mangledName": "$s7Amplify12TemporalSpecPA2A16DateUnitOperableRzrlE1poiyxx_AA0dE0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "DateUnit", + "printedName": "Amplify.DateUnit", + "usr": "s:7Amplify8DateUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPA2A16DateUnitOperableRzrlE1soiyxx_AA0dE0VtFZ", + "mangledName": "$s7Amplify12TemporalSpecPA2A16DateUnitOperableRzrlE1soiyxx_AA0dE0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecPAASeRzSERzrlE4fromxs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify12TemporalSpecPAASeRzSERzrlE4fromxs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPAASeRzSERzrlE6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify12TemporalSpecPAASeRzSERzrlE6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPAASLRzrlE2eeoiySbx_xtFZ", + "mangledName": "$s7Amplify12TemporalSpecPAASLRzrlE2eeoiySbx_xtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPAASLRzrlE1loiySbx_xtFZ", + "mangledName": "$s7Amplify12TemporalSpecPAASLRzrlE1loiySbx_xtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "iso8601FormattedString", + "printedName": "iso8601FormattedString(format:timeZone:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + }, + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "hasDefaultArg": true, + "usr": "s:10Foundation8TimeZoneV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPAAE22iso8601FormattedString6format8timeZoneSSAA0B6FormatV_10Foundation04TimeI0VtF", + "mangledName": "$s7Amplify12TemporalSpecPAAE22iso8601FormattedString6format8timeZoneSSAA0B6FormatV_10Foundation04TimeI0VtF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "iso8601String", + "printedName": "iso8601String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalSpecPAAE13iso8601StringSSvp", + "mangledName": "$s7Amplify12TemporalSpecPAAE13iso8601StringSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalSpecPAAE13iso8601StringSSvg", + "mangledName": "$s7Amplify12TemporalSpecPAAE13iso8601StringSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(iso8601String:format:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecPAAE13iso8601String6formatxSS_AA0B6FormatVtKcfc", + "mangledName": "$s7Amplify12TemporalSpecPAAE13iso8601String6formatxSS_AA0B6FormatVtKcfc", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Inlinable" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(iso8601String:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12TemporalSpecPAAE13iso8601StringxSS_tKcfc", + "mangledName": "$s7Amplify12TemporalSpecPAAE13iso8601StringxSS_tKcfc", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Inlinable" + ], + "isFromExtension": true, + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPA2A16TimeUnitOperableRzrlE1poiyxx_AA0dE0VtFZ", + "mangledName": "$s7Amplify12TemporalSpecPA2A16TimeUnitOperableRzrlE1poiyxx_AA0dE0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12TemporalSpecPA2A16TimeUnitOperableRzrlE1soiyxx_AA0dE0VtFZ", + "mangledName": "$s7Amplify12TemporalSpecPA2A16TimeUnitOperableRzrlE1soiyxx_AA0dE0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify12TemporalSpecP", + "mangledName": "$s7Amplify12TemporalSpecP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "TemporalFormat", + "printedName": "TemporalFormat", + "children": [ + { + "kind": "Var", + "name": "short", + "printedName": "short", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14TemporalFormatV5shortACvpZ", + "mangledName": "$s7Amplify14TemporalFormatV5shortACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14TemporalFormatV5shortACvgZ", + "mangledName": "$s7Amplify14TemporalFormatV5shortACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medium", + "printedName": "medium", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14TemporalFormatV6mediumACvpZ", + "mangledName": "$s7Amplify14TemporalFormatV6mediumACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14TemporalFormatV6mediumACvgZ", + "mangledName": "$s7Amplify14TemporalFormatV6mediumACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "long", + "printedName": "long", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14TemporalFormatV4longACvpZ", + "mangledName": "$s7Amplify14TemporalFormatV4longACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14TemporalFormatV4longACvgZ", + "mangledName": "$s7Amplify14TemporalFormatV4longACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "full", + "printedName": "full", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14TemporalFormatV4fullACvpZ", + "mangledName": "$s7Amplify14TemporalFormatV4fullACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14TemporalFormatV4fullACvgZ", + "mangledName": "$s7Amplify14TemporalFormatV4fullACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.TemporalFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14TemporalFormatV8allCasesSayACGvpZ", + "mangledName": "$s7Amplify14TemporalFormatV8allCasesSayACGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.TemporalFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "TemporalFormat", + "printedName": "Amplify.TemporalFormat", + "usr": "s:7Amplify14TemporalFormatV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14TemporalFormatV8allCasesSayACGvgZ", + "mangledName": "$s7Amplify14TemporalFormatV8allCasesSayACGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify14TemporalFormatV", + "mangledName": "$s7Amplify14TemporalFormatV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "TemporalUnit", + "printedName": "TemporalUnit", + "children": [ + { + "kind": "Var", + "name": "component", + "printedName": "component", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalUnitP9component10Foundation8CalendarV9ComponentOvp", + "mangledName": "$s7Amplify12TemporalUnitP9component10Foundation8CalendarV9ComponentOvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalUnitP9component10Foundation8CalendarV9ComponentOvg", + "mangledName": "$s7Amplify12TemporalUnitP9component10Foundation8CalendarV9ComponentOvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12TemporalUnitP5valueSivp", + "mangledName": "$s7Amplify12TemporalUnitP5valueSivp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12TemporalUnitP5valueSivg", + "mangledName": "$s7Amplify12TemporalUnitP5valueSivg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify12TemporalUnitP", + "mangledName": "$s7Amplify12TemporalUnitP", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "TypeDecl", + "name": "TimeUnit", + "printedName": "TimeUnit", + "children": [ + { + "kind": "Var", + "name": "calendarComponent", + "printedName": "calendarComponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TimeUnitV17calendarComponent10Foundation8CalendarV0E0Ovp", + "mangledName": "$s7Amplify8TimeUnitV17calendarComponent10Foundation8CalendarV0E0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Component", + "printedName": "Foundation.Calendar.Component", + "usr": "s:10Foundation8CalendarV9ComponentO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TimeUnitV17calendarComponent10Foundation8CalendarV0E0Ovg", + "mangledName": "$s7Amplify8TimeUnitV17calendarComponent10Foundation8CalendarV0E0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TimeUnitV5valueSivp", + "mangledName": "$s7Amplify8TimeUnitV5valueSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TimeUnitV5valueSivg", + "mangledName": "$s7Amplify8TimeUnitV5valueSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneSecond", + "printedName": "oneSecond", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TimeUnitV9oneSecondACvpZ", + "mangledName": "$s7Amplify8TimeUnitV9oneSecondACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TimeUnitV9oneSecondACvgZ", + "mangledName": "$s7Amplify8TimeUnitV9oneSecondACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneMinute", + "printedName": "oneMinute", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TimeUnitV9oneMinuteACvpZ", + "mangledName": "$s7Amplify8TimeUnitV9oneMinuteACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TimeUnitV9oneMinuteACvgZ", + "mangledName": "$s7Amplify8TimeUnitV9oneMinuteACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oneHour", + "printedName": "oneHour", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8TimeUnitV7oneHourACvpZ", + "mangledName": "$s7Amplify8TimeUnitV7oneHourACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8TimeUnitV7oneHourACvgZ", + "mangledName": "$s7Amplify8TimeUnitV7oneHourACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hours", + "printedName": "hours(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TimeUnitV5hoursyACSiFZ", + "mangledName": "$s7Amplify8TimeUnitV5hoursyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "minutes", + "printedName": "minutes(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TimeUnitV7minutesyACSiFZ", + "mangledName": "$s7Amplify8TimeUnitV7minutesyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "seconds", + "printedName": "seconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TimeUnitV7secondsyACSiFZ", + "mangledName": "$s7Amplify8TimeUnitV7secondsyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "milliseconds", + "printedName": "milliseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TimeUnitV12millisecondsyACSiFZ", + "mangledName": "$s7Amplify8TimeUnitV12millisecondsyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "nanoseconds", + "printedName": "nanoseconds(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:7Amplify8TimeUnitV11nanosecondsyACSiFZ", + "mangledName": "$s7Amplify8TimeUnitV11nanosecondsyACSiFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify8TimeUnitV", + "mangledName": "$s7Amplify8TimeUnitV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "TimeUnitOperable", + "printedName": "TimeUnitOperable", + "children": [ + { + "kind": "Function", + "name": "+", + "printedName": "+(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16TimeUnitOperableP1poiyxx_AA0bC0VtFZ", + "mangledName": "$s7Amplify16TimeUnitOperableP1poiyxx_AA0bC0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "-", + "printedName": "-(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "TimeUnit", + "printedName": "Amplify.TimeUnit", + "usr": "s:7Amplify8TimeUnitV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16TimeUnitOperableP1soiyxx_AA0bC0VtFZ", + "mangledName": "$s7Amplify16TimeUnitOperableP1soiyxx_AA0bC0VtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify16TimeUnitOperableP", + "mangledName": "$s7Amplify16TimeUnitOperableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Evaluable", + "printedName": "Evaluable", + "children": [ + { + "kind": "Function", + "name": "evaluate", + "printedName": "evaluate(target:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9EvaluableP8evaluate6targetSbAA5Model_p_tF", + "mangledName": "$s7Amplify9EvaluableP8evaluate6targetSbAA5Model_p_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ModelKey", + "printedName": "ModelKey", + "declKind": "Protocol", + "usr": "s:7Amplify8ModelKeyP", + "mangledName": "$s7Amplify8ModelKeyP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Function", + "name": "field", + "printedName": "field(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5fieldyAA10QueryFieldVSSF", + "mangledName": "$s7Amplify5fieldyAA10QueryFieldVSSF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "children": [ + { + "kind": "Function", + "name": "beginsWith", + "printedName": "beginsWith(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP10beginsWithyAA0b9PredicateD0CSSF", + "mangledName": "$s7Amplify19QueryFieldOperationP10beginsWithyAA0b9PredicateD0CSSF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "between", + "printedName": "between(start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP7between5start3endAA0b9PredicateD0CAA11Persistable_p_AaI_ptF", + "mangledName": "$s7Amplify19QueryFieldOperationP7between5start3endAA0b9PredicateD0CAA11Persistable_p_AaI_ptF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "contains", + "printedName": "contains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP8containsyAA0b9PredicateD0CSSF", + "mangledName": "$s7Amplify19QueryFieldOperationP8containsyAA0b9PredicateD0CSSF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notContains", + "printedName": "notContains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP11notContainsyAA0b9PredicateD0CSSF", + "mangledName": "$s7Amplify19QueryFieldOperationP11notContainsyAA0b9PredicateD0CSSF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2eqyAA0b9PredicateD0CAA11Persistable_pSgF", + "mangledName": "$s7Amplify19QueryFieldOperationP2eqyAA0b9PredicateD0CAA11Persistable_pSgF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2eqyAA0b9PredicateD0CAA15EnumPersistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2eqyAA0b9PredicateD0CAA15EnumPersistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ge", + "printedName": "ge(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2geyAA0b9PredicateD0CAA11Persistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2geyAA0b9PredicateD0CAA11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gt", + "printedName": "gt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2gtyAA0b9PredicateD0CAA11Persistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2gtyAA0b9PredicateD0CAA11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "le", + "printedName": "le(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2leyAA0b9PredicateD0CAA11Persistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2leyAA0b9PredicateD0CAA11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lt", + "printedName": "lt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2ltyAA0b9PredicateD0CAA11Persistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2ltyAA0b9PredicateD0CAA11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2neyAA0b9PredicateD0CAA11Persistable_pSgF", + "mangledName": "$s7Amplify19QueryFieldOperationP2neyAA0b9PredicateD0CAA11Persistable_pSgF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2neyAA0b9PredicateD0CAA15EnumPersistable_pF", + "mangledName": "$s7Amplify19QueryFieldOperationP2neyAA0b9PredicateD0CAA15EnumPersistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "~=", + "printedName": "~=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2teoiyAA0b9PredicateD0Cx_SStFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2teoiyAA0b9PredicateD0Cx_SStFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2eeoiyAA0b9PredicateD0Cx_AA11Persistable_pSgtFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2eeoiyAA0b9PredicateD0Cx_AA11Persistable_pSgtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2eeoiyAA0b9PredicateD0Cx_AA15EnumPersistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2eeoiyAA0b9PredicateD0Cx_AA15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2geoiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2geoiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">", + "printedName": ">(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP1goiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP1goiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<=", + "printedName": "<=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2leoiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2leoiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP1loiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP1loiyAA0b9PredicateD0Cx_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2neoiyAA0b9PredicateD0Cx_AA11Persistable_pSgtFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2neoiyAA0b9PredicateD0Cx_AA11Persistable_pSgtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryFieldOperationP2neoiyAA0b9PredicateD0Cx_AA15EnumPersistable_ptFZ", + "mangledName": "$s7Amplify19QueryFieldOperationP2neoiyAA0b9PredicateD0Cx_AA15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "QueryField", + "printedName": "QueryField", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10QueryFieldV4nameSSvp", + "mangledName": "$s7Amplify10QueryFieldV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10QueryFieldV4nameSSvg", + "mangledName": "$s7Amplify10QueryFieldV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "beginsWith", + "printedName": "beginsWith(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV10beginsWithyAA0B18PredicateOperationCSSF", + "mangledName": "$s7Amplify10QueryFieldV10beginsWithyAA0B18PredicateOperationCSSF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "between", + "printedName": "between(start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV7between5start3endAA0B18PredicateOperationCAA11Persistable_p_AaI_ptF", + "mangledName": "$s7Amplify10QueryFieldV7between5start3endAA0B18PredicateOperationCAA11Persistable_p_AaI_ptF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "contains", + "printedName": "contains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV8containsyAA0B18PredicateOperationCSSF", + "mangledName": "$s7Amplify10QueryFieldV8containsyAA0B18PredicateOperationCSSF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "~=", + "printedName": "~=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2teoiyAA0B18PredicateOperationCAC_SStFZ", + "mangledName": "$s7Amplify10QueryFieldV2teoiyAA0B18PredicateOperationCAC_SStFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notContains", + "printedName": "notContains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV11notContainsyAA0B18PredicateOperationCSSF", + "mangledName": "$s7Amplify10QueryFieldV11notContainsyAA0B18PredicateOperationCSSF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2eqyAA0B18PredicateOperationCAA11Persistable_pSgF", + "mangledName": "$s7Amplify10QueryFieldV2eqyAA0B18PredicateOperationCAA11Persistable_pSgF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2eqyAA0B18PredicateOperationCAA15EnumPersistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2eqyAA0B18PredicateOperationCAA15EnumPersistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2eeoiyAA0B18PredicateOperationCAC_AA11Persistable_pSgtFZ", + "mangledName": "$s7Amplify10QueryFieldV2eeoiyAA0B18PredicateOperationCAC_AA11Persistable_pSgtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2eeoiyAA0B18PredicateOperationCAC_AA15EnumPersistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV2eeoiyAA0B18PredicateOperationCAC_AA15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ge", + "printedName": "ge(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2geyAA0B18PredicateOperationCAA11Persistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2geyAA0B18PredicateOperationCAA11Persistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2geoiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV2geoiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gt", + "printedName": "gt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2gtyAA0B18PredicateOperationCAA11Persistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2gtyAA0B18PredicateOperationCAA11Persistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">", + "printedName": ">(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV1goiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV1goiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "le", + "printedName": "le(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2leyAA0B18PredicateOperationCAA11Persistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2leyAA0B18PredicateOperationCAA11Persistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<=", + "printedName": "<=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2leoiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV2leoiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lt", + "printedName": "lt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2ltyAA0B18PredicateOperationCAA11Persistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2ltyAA0B18PredicateOperationCAA11Persistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV1loiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV1loiyAA0B18PredicateOperationCAC_AA11Persistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2neyAA0B18PredicateOperationCAA11Persistable_pSgF", + "mangledName": "$s7Amplify10QueryFieldV2neyAA0B18PredicateOperationCAA11Persistable_pSgF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2neyAA0B18PredicateOperationCAA15EnumPersistable_pF", + "mangledName": "$s7Amplify10QueryFieldV2neyAA0B18PredicateOperationCAA15EnumPersistable_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2neoiyAA0B18PredicateOperationCAC_AA11Persistable_pSgtFZ", + "mangledName": "$s7Amplify10QueryFieldV2neoiyAA0B18PredicateOperationCAC_AA11Persistable_pSgtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryField", + "printedName": "Amplify.QueryField", + "usr": "s:7Amplify10QueryFieldV" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10QueryFieldV2neoiyAA0B18PredicateOperationCAC_AA15EnumPersistable_ptFZ", + "mangledName": "$s7Amplify10QueryFieldV2neoiyAA0B18PredicateOperationCAC_AA15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10QueryFieldV", + "mangledName": "$s7Amplify10QueryFieldV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryOperator", + "printedName": "QueryOperator", + "children": [ + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable?) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable?) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO8notEqualyAcA11Persistable_pSgcACmF", + "mangledName": "$s7Amplify13QueryOperatorO8notEqualyAcA11Persistable_pSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "equals", + "printedName": "equals", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable?) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable?) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO6equalsyAcA11Persistable_pSgcACmF", + "mangledName": "$s7Amplify13QueryOperatorO6equalsyAcA11Persistable_pSgcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "lessOrEqual", + "printedName": "lessOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:7Amplify11PersistableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO11lessOrEqualyAcA11Persistable_pcACmF", + "mangledName": "$s7Amplify13QueryOperatorO11lessOrEqualyAcA11Persistable_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:7Amplify11PersistableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO8lessThanyAcA11Persistable_pcACmF", + "mangledName": "$s7Amplify13QueryOperatorO8lessThanyAcA11Persistable_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "greaterOrEqual", + "printedName": "greaterOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:7Amplify11PersistableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO14greaterOrEqualyAcA11Persistable_pcACmF", + "mangledName": "$s7Amplify13QueryOperatorO14greaterOrEqualyAcA11Persistable_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:7Amplify11PersistableP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO11greaterThanyAcA11Persistable_pcACmF", + "mangledName": "$s7Amplify13QueryOperatorO11greaterThanyAcA11Persistable_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO8containsyACSScACmF", + "mangledName": "$s7Amplify13QueryOperatorO8containsyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO11notContainsyACSScACmF", + "mangledName": "$s7Amplify13QueryOperatorO11notContainsyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "between", + "printedName": "between", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Amplify.Persistable, Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Persistable, Amplify.Persistable) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(start: Amplify.Persistable, end: Amplify.Persistable)", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO7betweenyAcA11Persistable_p_AaE_ptcACmF", + "mangledName": "$s7Amplify13QueryOperatorO7betweenyAcA11Persistable_p_AaE_ptcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "beginsWith", + "printedName": "beginsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryOperator.Type) -> (Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.QueryOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryOperator.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13QueryOperatorO10beginsWithyACSScACmF", + "mangledName": "$s7Amplify13QueryOperatorO10beginsWithyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "evaluate", + "printedName": "evaluate(target:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13QueryOperatorO8evaluate6targetSbyp_tF", + "mangledName": "$s7Amplify13QueryOperatorO8evaluate6targetSbyp_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13QueryOperatorO6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify13QueryOperatorO6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + }, + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13QueryOperatorO2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify13QueryOperatorO2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify13QueryOperatorO", + "mangledName": "$s7Amplify13QueryOperatorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPaginationInput", + "printedName": "QueryPaginationInput", + "children": [ + { + "kind": "Var", + "name": "defaultLimit", + "printedName": "defaultLimit", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20QueryPaginationInputV12defaultLimitSuvpZ", + "mangledName": "$s7Amplify20QueryPaginationInputV12defaultLimitSuvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20QueryPaginationInputV12defaultLimitSuvgZ", + "mangledName": "$s7Amplify20QueryPaginationInputV12defaultLimitSuvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "page", + "printedName": "page", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20QueryPaginationInputV4pageSuvp", + "mangledName": "$s7Amplify20QueryPaginationInputV4pageSuvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20QueryPaginationInputV4pageSuvg", + "mangledName": "$s7Amplify20QueryPaginationInputV4pageSuvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "limit", + "printedName": "limit", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20QueryPaginationInputV5limitSuvp", + "mangledName": "$s7Amplify20QueryPaginationInputV5limitSuvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20QueryPaginationInputV5limitSuvg", + "mangledName": "$s7Amplify20QueryPaginationInputV5limitSuvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "page", + "printedName": "page(_:limit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20QueryPaginationInputV4page_5limitACSu_SutFZ", + "mangledName": "$s7Amplify20QueryPaginationInputV4page_5limitACSu_SutFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "firstResult", + "printedName": "firstResult", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20QueryPaginationInputV11firstResultACvpZ", + "mangledName": "$s7Amplify20QueryPaginationInputV11firstResultACvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20QueryPaginationInputV11firstResultACvgZ", + "mangledName": "$s7Amplify20QueryPaginationInputV11firstResultACvgZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstPage", + "printedName": "firstPage", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20QueryPaginationInputV9firstPageACvpZ", + "mangledName": "$s7Amplify20QueryPaginationInputV9firstPageACvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPaginationInput", + "printedName": "Amplify.QueryPaginationInput", + "usr": "s:7Amplify20QueryPaginationInputV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20QueryPaginationInputV9firstPageACvgZ", + "mangledName": "$s7Amplify20QueryPaginationInputV9firstPageACvgZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20QueryPaginationInputV", + "mangledName": "$s7Amplify20QueryPaginationInputV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "declKind": "Protocol", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateGroupType", + "printedName": "QueryPredicateGroupType", + "children": [ + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryPredicateGroupType.Type) -> Amplify.QueryPredicateGroupType", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryPredicateGroupType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryPredicateGroupType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23QueryPredicateGroupTypeO3andyA2CmF", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO3andyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryPredicateGroupType.Type) -> Amplify.QueryPredicateGroupType", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryPredicateGroupType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryPredicateGroupType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23QueryPredicateGroupTypeO2oryA2CmF", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO2oryA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryPredicateGroupType.Type) -> Amplify.QueryPredicateGroupType", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryPredicateGroupType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryPredicateGroupType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify23QueryPredicateGroupTypeO3notyA2CmF", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO3notyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.QueryPredicateGroupType?", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23QueryPredicateGroupTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23QueryPredicateGroupTypeO8RawValuea", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23QueryPredicateGroupTypeO8rawValueSSvp", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23QueryPredicateGroupTypeO8rawValueSSvg", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify23QueryPredicateGroupTypeO", + "mangledName": "$s7Amplify23QueryPredicateGroupTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "not", + "printedName": "not(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Predicate" + } + ], + "declKind": "Func", + "usr": "s:7Amplify3notyAA19QueryPredicateGroupCxAA0cD0RzlF", + "mangledName": "$s7Amplify3notyAA19QueryPredicateGroupCxAA0cD0RzlF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateConstant", + "printedName": "QueryPredicateConstant", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QueryPredicateConstant.Type) -> Amplify.QueryPredicateConstant", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateConstant", + "printedName": "Amplify.QueryPredicateConstant", + "usr": "s:7Amplify22QueryPredicateConstantO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QueryPredicateConstant.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QueryPredicateConstant.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateConstant", + "printedName": "Amplify.QueryPredicateConstant", + "usr": "s:7Amplify22QueryPredicateConstantO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22QueryPredicateConstantO3allyA2CmF", + "mangledName": "$s7Amplify22QueryPredicateConstantO3allyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "evaluate", + "printedName": "evaluate(target:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22QueryPredicateConstantO8evaluate6targetSbAA5Model_p_tF", + "mangledName": "$s7Amplify22QueryPredicateConstantO8evaluate6targetSbAA5Model_p_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateConstant", + "printedName": "Amplify.QueryPredicateConstant", + "usr": "s:7Amplify22QueryPredicateConstantO" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateConstant", + "printedName": "Amplify.QueryPredicateConstant", + "usr": "s:7Amplify22QueryPredicateConstantO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22QueryPredicateConstantO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify22QueryPredicateConstantO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22QueryPredicateConstantO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify22QueryPredicateConstantO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22QueryPredicateConstantO6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify22QueryPredicateConstantO6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22QueryPredicateConstantO9hashValueSivp", + "mangledName": "$s7Amplify22QueryPredicateConstantO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22QueryPredicateConstantO9hashValueSivg", + "mangledName": "$s7Amplify22QueryPredicateConstantO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify22QueryPredicateConstantO", + "mangledName": "$s7Amplify22QueryPredicateConstantO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateGroup", + "printedName": "QueryPredicateGroup", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19QueryPredicateGroupC4typeAA0bcD4TypeOvp", + "mangledName": "$s7Amplify19QueryPredicateGroupC4typeAA0bcD4TypeOvp", + "moduleName": "Amplify", + "declAttributes": [ + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19QueryPredicateGroupC4typeAA0bcD4TypeOvg", + "mangledName": "$s7Amplify19QueryPredicateGroupC4typeAA0bcD4TypeOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "predicates", + "printedName": "predicates", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QueryPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19QueryPredicateGroupC10predicatesSayAA0bC0_pGvp", + "mangledName": "$s7Amplify19QueryPredicateGroupC10predicatesSayAA0bC0_pGvp", + "moduleName": "Amplify", + "declAttributes": [ + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QueryPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19QueryPredicateGroupC10predicatesSayAA0bC0_pGvg", + "mangledName": "$s7Amplify19QueryPredicateGroupC10predicatesSayAA0bC0_pGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:predicates:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroupType", + "printedName": "Amplify.QueryPredicateGroupType", + "hasDefaultArg": true, + "usr": "s:7Amplify23QueryPredicateGroupTypeO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QueryPredicate]", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify19QueryPredicateGroupC4type10predicatesAcA0bcD4TypeO_SayAA0bC0_pGtcfc", + "mangledName": "$s7Amplify19QueryPredicateGroupC4type10predicatesAcA0bcD4TypeO_SayAA0bC0_pGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "and", + "printedName": "and(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC3andyAcA0bC0_pF", + "mangledName": "$s7Amplify19QueryPredicateGroupC3andyAcA0bC0_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "or", + "printedName": "or(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC2oryAcA0bC0_pF", + "mangledName": "$s7Amplify19QueryPredicateGroupC2oryAcA0bC0_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "&&", + "printedName": "&&(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC2aaoiyA2C_AA0bC0_ptFZ", + "mangledName": "$s7Amplify19QueryPredicateGroupC2aaoiyA2C_AA0bC0_ptFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "||", + "printedName": "||(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC2oooiyA2C_AA0bC0_ptFZ", + "mangledName": "$s7Amplify19QueryPredicateGroupC2oooiyA2C_AA0bC0_ptFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!", + "printedName": "!(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC1nopyA2CFZ", + "mangledName": "$s7Amplify19QueryPredicateGroupC1nopyA2CFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final", + "Prefix" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "evaluate", + "printedName": "evaluate(target:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC8evaluate6targetSbAA5Model_p_tF", + "mangledName": "$s7Amplify19QueryPredicateGroupC8evaluate6targetSbAA5Model_p_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify19QueryPredicateGroupC6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19QueryPredicateGroupC2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify19QueryPredicateGroupC2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify19QueryPredicateGroupC", + "mangledName": "$s7Amplify19QueryPredicateGroupC", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QueryPredicateOperation", + "printedName": "QueryPredicateOperation", + "children": [ + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23QueryPredicateOperationC5fieldSSvp", + "mangledName": "$s7Amplify23QueryPredicateOperationC5fieldSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23QueryPredicateOperationC5fieldSSvg", + "mangledName": "$s7Amplify23QueryPredicateOperationC5fieldSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23QueryPredicateOperationC8operatorAA0B8OperatorOvp", + "mangledName": "$s7Amplify23QueryPredicateOperationC8operatorAA0B8OperatorOvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23QueryPredicateOperationC8operatorAA0B8OperatorOvg", + "mangledName": "$s7Amplify23QueryPredicateOperationC8operatorAA0B8OperatorOvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:operator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "QueryOperator", + "printedName": "Amplify.QueryOperator", + "usr": "s:7Amplify13QueryOperatorO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23QueryPredicateOperationC5field8operatorACSS_AA0B8OperatorOtcfc", + "mangledName": "$s7Amplify23QueryPredicateOperationC5field8operatorACSS_AA0B8OperatorOtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "and", + "printedName": "and(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC3andyAA0bC5GroupCAA0bC0_pF", + "mangledName": "$s7Amplify23QueryPredicateOperationC3andyAA0bC5GroupCAA0bC0_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "or", + "printedName": "or(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC2oryAA0bC5GroupCAA0bC0_pF", + "mangledName": "$s7Amplify23QueryPredicateOperationC2oryAA0bC5GroupCAA0bC0_pF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "&&", + "printedName": "&&(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC2aaoiyAA0bC5GroupCAC_AA0bC0_ptFZ", + "mangledName": "$s7Amplify23QueryPredicateOperationC2aaoiyAA0bC5GroupCAC_AA0bC0_ptFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "||", + "printedName": "||(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicate", + "printedName": "Amplify.QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC2oooiyAA0bC5GroupCAC_AA0bC0_ptFZ", + "mangledName": "$s7Amplify23QueryPredicateOperationC2oooiyAA0bC5GroupCAC_AA0bC0_ptFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!", + "printedName": "!(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateGroup", + "printedName": "Amplify.QueryPredicateGroup", + "usr": "s:7Amplify19QueryPredicateGroupC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC1nopyAA0bC5GroupCACFZ", + "mangledName": "$s7Amplify23QueryPredicateOperationC1nopyAA0bC5GroupCACFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final", + "Prefix" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "evaluate", + "printedName": "evaluate(target:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC8evaluate6targetSbAA5Model_p_tF", + "mangledName": "$s7Amplify23QueryPredicateOperationC8evaluate6targetSbAA5Model_p_tF", + "moduleName": "Amplify", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify23QueryPredicateOperationC6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23QueryPredicateOperationC2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify23QueryPredicateOperationC2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify23QueryPredicateOperationC", + "mangledName": "$s7Amplify23QueryPredicateOperationC", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "QueryPredicate", + "printedName": "QueryPredicate", + "usr": "s:7Amplify14QueryPredicateP", + "mangledName": "$s7Amplify14QueryPredicateP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Evaluable", + "printedName": "Evaluable", + "usr": "s:7Amplify9EvaluableP", + "mangledName": "$s7Amplify9EvaluableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "QuerySortBy", + "printedName": "QuerySortBy", + "children": [ + { + "kind": "Var", + "name": "ascending", + "printedName": "ascending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QuerySortBy.Type) -> (Swift.CodingKey) -> Amplify.QuerySortBy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.CodingKey) -> Amplify.QuerySortBy", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.CodingKey)", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:s9CodingKeyP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QuerySortBy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QuerySortBy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11QuerySortByO9ascendingyACs9CodingKey_pcACmF", + "mangledName": "$s7Amplify11QuerySortByO9ascendingyACs9CodingKey_pcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "descending", + "printedName": "descending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.QuerySortBy.Type) -> (Swift.CodingKey) -> Amplify.QuerySortBy", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.CodingKey) -> Amplify.QuerySortBy", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.CodingKey)", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "usr": "s:s9CodingKeyP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.QuerySortBy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.QuerySortBy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11QuerySortByO10descendingyACs9CodingKey_pcACmF", + "mangledName": "$s7Amplify11QuerySortByO10descendingyACs9CodingKey_pcACmF", + "moduleName": "Amplify" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11QuerySortByO", + "mangledName": "$s7Amplify11QuerySortByO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "QuerySortInput", + "printedName": "QuerySortInput", + "children": [ + { + "kind": "Var", + "name": "inputs", + "printedName": "inputs", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QuerySortBy]", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14QuerySortInputV6inputsSayAA0bC2ByOGvp", + "mangledName": "$s7Amplify14QuerySortInputV6inputsSayAA0bC2ByOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QuerySortBy]", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14QuerySortInputV6inputsSayAA0bC2ByOGvg", + "mangledName": "$s7Amplify14QuerySortInputV6inputsSayAA0bC2ByOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.QuerySortBy]", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify14QuerySortInputVyACSayAA0bC2ByOGcfc", + "mangledName": "$s7Amplify14QuerySortInputVyACSayAA0bC2ByOGcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "by", + "printedName": "by(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.QuerySortBy...", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortBy", + "printedName": "Amplify.QuerySortBy", + "usr": "s:7Amplify11QuerySortByO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14QuerySortInputV2byyAcA0bC2ByOd_tFZ", + "mangledName": "$s7Amplify14QuerySortInputV2byyAcA0bC2ByOd_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ascending", + "printedName": "ascending(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14QuerySortInputV9ascendingyACs9CodingKey_pFZ", + "mangledName": "$s7Amplify14QuerySortInputV9ascendingyACs9CodingKey_pFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "descending", + "printedName": "descending(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QuerySortInput", + "printedName": "Amplify.QuerySortInput", + "usr": "s:7Amplify14QuerySortInputV" + }, + { + "kind": "TypeNominal", + "name": "CodingKey", + "printedName": "Swift.CodingKey", + "usr": "s:s9CodingKeyP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify14QuerySortInputV10descendingyACs9CodingKey_pFZ", + "mangledName": "$s7Amplify14QuerySortInputV10descendingyACs9CodingKey_pFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify14QuerySortInputV", + "mangledName": "$s7Amplify14QuerySortInputV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DataStoreQuerySnapshot", + "printedName": "DataStoreQuerySnapshot", + "children": [ + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22DataStoreQuerySnapshotV5itemsSayxGvp", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV5itemsSayxGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22DataStoreQuerySnapshotV5itemsSayxGvg", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV5itemsSayxGvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSynced", + "printedName": "isSynced", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22DataStoreQuerySnapshotV8isSyncedSbvp", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV8isSyncedSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22DataStoreQuerySnapshotV8isSyncedSbvg", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV8isSyncedSbvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(items:isSynced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreQuerySnapshot", + "printedName": "Amplify.DataStoreQuerySnapshot", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:7Amplify22DataStoreQuerySnapshotV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[M]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22DataStoreQuerySnapshotV5items8isSyncedACyxGSayxG_Sbtcfc", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV5items8isSyncedACyxGSayxG_Sbtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify22DataStoreQuerySnapshotV", + "mangledName": "$s7Amplify22DataStoreQuerySnapshotV", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MutationEvent", + "printedName": "MutationEvent", + "children": [ + { + "kind": "TypeAlias", + "name": "EventIdentifier", + "printedName": "EventIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13MutationEventV0C10Identifiera", + "mangledName": "$s7Amplify13MutationEventV0C10Identifiera", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "ModelId", + "printedName": "ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13MutationEventV7ModelIda", + "mangledName": "$s7Amplify13MutationEventV7ModelIda", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNameAlias", + "name": "EventIdentifier", + "printedName": "Amplify.MutationEvent.EventIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV2idSSvp", + "mangledName": "$s7Amplify13MutationEventV2idSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "EventIdentifier", + "printedName": "Amplify.MutationEvent.EventIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV2idSSvg", + "mangledName": "$s7Amplify13MutationEventV2idSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelId", + "printedName": "modelId", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelId", + "printedName": "Amplify.MutationEvent.ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV7modelIdSSvp", + "mangledName": "$s7Amplify13MutationEventV7modelIdSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ModelId", + "printedName": "Amplify.MutationEvent.ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV7modelIdSSvg", + "mangledName": "$s7Amplify13MutationEventV7modelIdSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV9modelNameSSvp", + "mangledName": "$s7Amplify13MutationEventV9modelNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9modelNameSSvg", + "mangledName": "$s7Amplify13MutationEventV9modelNameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9modelNameSSvs", + "mangledName": "$s7Amplify13MutationEventV9modelNameSSvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV4jsonSSvp", + "mangledName": "$s7Amplify13MutationEventV4jsonSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV4jsonSSvg", + "mangledName": "$s7Amplify13MutationEventV4jsonSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV4jsonSSvs", + "mangledName": "$s7Amplify13MutationEventV4jsonSSvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "mutationType", + "printedName": "mutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV12mutationTypeSSvp", + "mangledName": "$s7Amplify13MutationEventV12mutationTypeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV12mutationTypeSSvg", + "mangledName": "$s7Amplify13MutationEventV12mutationTypeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV12mutationTypeSSvs", + "mangledName": "$s7Amplify13MutationEventV12mutationTypeSSvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvp", + "mangledName": "$s7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvg", + "mangledName": "$s7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "usr": "s:7Amplify8TemporalO8DateTimeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvs", + "mangledName": "$s7Amplify13MutationEventV9createdAtAA8TemporalO8DateTimeVvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV7versionSiSgvp", + "mangledName": "$s7Amplify13MutationEventV7versionSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV7versionSiSgvg", + "mangledName": "$s7Amplify13MutationEventV7versionSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV7versionSiSgvs", + "mangledName": "$s7Amplify13MutationEventV7versionSiSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "inProcess", + "printedName": "inProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV9inProcessSbvp", + "mangledName": "$s7Amplify13MutationEventV9inProcessSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9inProcessSbvg", + "mangledName": "$s7Amplify13MutationEventV9inProcessSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV9inProcessSbvs", + "mangledName": "$s7Amplify13MutationEventV9inProcessSbvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphQLFilterJSON", + "printedName": "graphQLFilterJSON", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV17graphQLFilterJSONSSSgvp", + "mangledName": "$s7Amplify13MutationEventV17graphQLFilterJSONSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV17graphQLFilterJSONSSSgvg", + "mangledName": "$s7Amplify13MutationEventV17graphQLFilterJSONSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV17graphQLFilterJSONSSSgvs", + "mangledName": "$s7Amplify13MutationEventV17graphQLFilterJSONSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:modelId:modelName:json:mutationType:createdAt:version:inProcess:graphQLFilterJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNameAlias", + "name": "EventIdentifier", + "printedName": "Amplify.MutationEvent.EventIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "ModelId", + "printedName": "Amplify.MutationEvent.ModelId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "DateTime", + "printedName": "Amplify.Temporal.DateTime", + "hasDefaultArg": true, + "usr": "s:7Amplify8TemporalO8DateTimeV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV2id7modelId0E4Name4json12mutationType9createdAt7version9inProcess17graphQLFilterJSONACSS_S3SAC0bJ0OAA8TemporalO8DateTimeVSiSgSbSSSgtcfc", + "mangledName": "$s7Amplify13MutationEventV2id7modelId0E4Name4json12mutationType9createdAt7version9inProcess17graphQLFilterJSONACSS_S3SAC0bJ0OAA8TemporalO8DateTimeVSiSgSbSSSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:modelSchema:mutationType:version:graphQLFilterJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + }, + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV5model0D6Schema12mutationType7version17graphQLFilterJSONACx_AA05ModelE0VAC0bG0OSiSgSSSgtKcAA0L0Rzlufc", + "mangledName": "$s7Amplify13MutationEventV5model0D6Schema12mutationType7version17graphQLFilterJSONACx_AA05ModelE0VAC0bG0OSiSgSSSgtKcAA0L0Rzlufc", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(model:mutationType:version:graphQLFilterJSON:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV5model12mutationType7version17graphQLFilterJSONACx_AC0bF0OSiSgSSSgtKcAA5ModelRzlufc", + "mangledName": "$s7Amplify13MutationEventV5model12mutationType7version17graphQLFilterJSONACx_AC0bF0OSiSgSSSgtKcAA5ModelRzlufc", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "decodeModel", + "printedName": "decodeModel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13MutationEventV11decodeModelAA0E0_pyKF", + "mangledName": "$s7Amplify13MutationEventV11decodeModelAA0E0_pyKF", + "moduleName": "Amplify", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeModel", + "printedName": "decodeModel(as:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "M.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "M" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify13MutationEventV11decodeModel2asxxm_tKAA0E0RzlF", + "mangledName": "$s7Amplify13MutationEventV11decodeModel2asxxm_tKAA0E0RzlF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify13MutationEventV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify13MutationEventV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify13MutationEventV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(untypedModel:mutationType:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV12untypedModel12mutationType7versionAcA0E0_p_AC0bG0OSiSgtKcfc", + "mangledName": "$s7Amplify13MutationEventV12untypedModel12mutationType7versionAcA0E0_p_AC0bG0OSiSgtKcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(untypedModel:modelName:mutationType:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationEvent", + "printedName": "Amplify.MutationEvent", + "usr": "s:7Amplify13MutationEventV" + }, + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "Amplify.Model", + "usr": "s:7Amplify5ModelP" + }, + { + "kind": "TypeNameAlias", + "name": "ModelName", + "printedName": "Amplify.ModelName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV12untypedModel9modelName12mutationType7versionAcA0E0_p_SSAC0bI0OSiSgtKcfc", + "mangledName": "$s7Amplify13MutationEventV12untypedModel9modelName12mutationType7versionAcA0E0_p_SSAC0bI0OSiSgtKcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "MutationType", + "printedName": "MutationType", + "children": [ + { + "kind": "Var", + "name": "create", + "printedName": "create", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.MutationType.Type) -> Amplify.MutationEvent.MutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.MutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.MutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV0B4TypeO6createyA2EmF", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO6createyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "update", + "printedName": "update", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.MutationType.Type) -> Amplify.MutationEvent.MutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.MutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.MutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV0B4TypeO6updateyA2EmF", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO6updateyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.MutationType.Type) -> Amplify.MutationEvent.MutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.MutationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.MutationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV0B4TypeO6deleteyA2EmF", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO6deleteyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MutationEvent.MutationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV0B4TypeO8rawValueAESgSS_tcfc", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO8rawValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13MutationEventV0B4TypeO8RawValuea", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV0B4TypeO8rawValueSSvp", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV0B4TypeO8rawValueSSvg", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphQLMutationType", + "printedName": "graphQLMutationType", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AA05GraphfD0Ovp", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AA05GraphfD0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AA05GraphfD0Ovg", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AA05GraphfD0Ovg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphQLMutationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MutationType", + "printedName": "Amplify.MutationEvent.MutationType", + "usr": "s:7Amplify13MutationEventV0B4TypeO" + }, + { + "kind": "TypeNominal", + "name": "GraphQLMutationType", + "printedName": "Amplify.GraphQLMutationType", + "usr": "s:7Amplify19GraphQLMutationTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AeA05GraphfD0O_tcfc", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO015graphQLMutationD0AeA05GraphfD0O_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify13MutationEventV0B4TypeO", + "mangledName": "$s7Amplify13MutationEventV0B4TypeO", + "moduleName": "Amplify", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO2idyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO2idyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "modelId", + "printedName": "modelId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO7modelIdyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO7modelIdyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "modelName", + "printedName": "modelName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO9modelNameyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO9modelNameyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO4jsonyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO4jsonyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "mutationType", + "printedName": "mutationType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO12mutationTypeyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO12mutationTypeyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "createdAt", + "printedName": "createdAt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO9createdAtyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO9createdAtyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO7versionyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO7versionyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "inProcess", + "printedName": "inProcess", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO9inProcessyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO9inProcessyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "graphQLFilterJSON", + "printedName": "graphQLFilterJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type) -> Amplify.MutationEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.MutationEvent.CodingKeys.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify13MutationEventV10CodingKeysO17graphQLFilterJSONyA2EmF", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO17graphQLFilterJSONyA2EmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MutationEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MutationEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.MutationEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "Amplify", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.MutationEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8AllCasesa", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8AllCasesa", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8RawValuea", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.MutationEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8allCasesSayAEGvpZ", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8allCasesSayAEGvpZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.MutationEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8allCasesSayAEGvgZ", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8allCasesSayAEGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8intValueSiSgvp", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8intValueSiSgvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8intValueSiSgvg", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8intValueSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8rawValueSSvp", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO8rawValueSSvg", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV10CodingKeysO11stringValueSSvp", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO11stringValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV10CodingKeysO11stringValueSSvg", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO11stringValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify13MutationEventV10CodingKeysO", + "mangledName": "$s7Amplify13MutationEventV10CodingKeysO", + "moduleName": "Amplify", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "ModelKey", + "printedName": "ModelKey", + "usr": "s:7Amplify8ModelKeyP", + "mangledName": "$s7Amplify8ModelKeyP" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.MutationEvent.CodingKeys]", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "QueryFieldOperation", + "printedName": "QueryFieldOperation", + "usr": "s:7Amplify19QueryFieldOperationP", + "mangledName": "$s7Amplify19QueryFieldOperationP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV4keysAC10CodingKeysOmvpZ", + "mangledName": "$s7Amplify13MutationEventV4keysAC10CodingKeysOmvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.MutationEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "Amplify.MutationEvent.CodingKeys", + "usr": "s:7Amplify13MutationEventV10CodingKeysO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV4keysAC10CodingKeysOmvgZ", + "mangledName": "$s7Amplify13MutationEventV4keysAC10CodingKeysOmvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "schema", + "printedName": "schema", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13MutationEventV6schemaAA11ModelSchemaVvpZ", + "mangledName": "$s7Amplify13MutationEventV6schemaAA11ModelSchemaVvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ModelSchema", + "printedName": "Amplify.ModelSchema", + "usr": "s:7Amplify11ModelSchemaV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13MutationEventV6schemaAA11ModelSchemaVvgZ", + "mangledName": "$s7Amplify13MutationEventV6schemaAA11ModelSchemaVvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify13MutationEventV", + "mangledName": "$s7Amplify13MutationEventV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Model", + "printedName": "Model", + "usr": "s:7Amplify5ModelP", + "mangledName": "$s7Amplify5ModelP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GeoCategory", + "printedName": "GeoCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11GeoCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify11GeoCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11GeoCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify11GeoCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GeoCategoryPlugin", + "printedName": "Amplify.GeoCategoryPlugin", + "usr": "s:7Amplify17GeoCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify11GeoCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategoryPlugin", + "printedName": "Amplify.GeoCategoryPlugin", + "usr": "s:7Amplify17GeoCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify11GeoCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify11GeoCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "search", + "printedName": "search(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Place]", + "children": [ + { + "kind": "TypeNominal", + "name": "Place", + "printedName": "Amplify.Geo.Place", + "usr": "s:7Amplify3GeoO5PlaceV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchForTextOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForTextOptions", + "printedName": "Amplify.Geo.SearchForTextOptions", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC6search3for7optionsSayAA0B0O5PlaceVGSS_AH20SearchForTextOptionsVSgtYaKF", + "mangledName": "$s7Amplify11GeoCategoryC6search3for7optionsSayAA0B0O5PlaceVGSS_AH20SearchForTextOptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "search", + "printedName": "search(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Place]", + "children": [ + { + "kind": "TypeNominal", + "name": "Place", + "printedName": "Amplify.Geo.Place", + "usr": "s:7Amplify3GeoO5PlaceV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchForCoordinatesOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForCoordinatesOptions", + "printedName": "Amplify.Geo.SearchForCoordinatesOptions", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC6search3for7optionsSayAA0B0O5PlaceVGAH11CoordinatesV_AH09SearchForH7OptionsVSgtYaKF", + "mangledName": "$s7Amplify11GeoCategoryC6search3for7optionsSayAA0B0O5PlaceVGAH11CoordinatesV_AH09SearchForH7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "availableMaps", + "printedName": "availableMaps()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.MapStyle]", + "children": [ + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC13availableMapsSayAA0B0O8MapStyleVGyYaKF", + "mangledName": "$s7Amplify11GeoCategoryC13availableMapsSayAA0B0O8MapStyleVGyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultMap", + "printedName": "defaultMap()", + "children": [ + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC10defaultMapAA0B0O0E5StyleVyYaKF", + "mangledName": "$s7Amplify11GeoCategoryC10defaultMapAA0B0O0E5StyleVyYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11GeoCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify11GeoCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11GeoCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify11GeoCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11GeoCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify11GeoCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11GeoCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify11GeoCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11GeoCategoryC5resetyyYaF", + "mangledName": "$s7Amplify11GeoCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify11GeoCategoryC", + "mangledName": "$s7Amplify11GeoCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "GeoCategoryBehavior", + "printedName": "GeoCategoryBehavior", + "usr": "s:7Amplify19GeoCategoryBehaviorP", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GeoCategoryBehavior", + "printedName": "GeoCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "search", + "printedName": "search(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Place]", + "children": [ + { + "kind": "TypeNominal", + "name": "Place", + "printedName": "Amplify.Geo.Place", + "usr": "s:7Amplify3GeoO5PlaceV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchForTextOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForTextOptions", + "printedName": "Amplify.Geo.SearchForTextOptions", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19GeoCategoryBehaviorP6search3for7optionsSayAA0B0O5PlaceVGSS_AH20SearchForTextOptionsVSgtYaKF", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP6search3for7optionsSayAA0B0O5PlaceVGSS_AH20SearchForTextOptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "search", + "printedName": "search(for:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Place]", + "children": [ + { + "kind": "TypeNominal", + "name": "Place", + "printedName": "Amplify.Geo.Place", + "usr": "s:7Amplify3GeoO5PlaceV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchForCoordinatesOptions?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForCoordinatesOptions", + "printedName": "Amplify.Geo.SearchForCoordinatesOptions", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19GeoCategoryBehaviorP6search3for7optionsSayAA0B0O5PlaceVGAH11CoordinatesV_AH09SearchForI7OptionsVSgtYaKF", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP6search3for7optionsSayAA0B0O5PlaceVGAH11CoordinatesV_AH09SearchForI7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "availableMaps", + "printedName": "availableMaps()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.MapStyle]", + "children": [ + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19GeoCategoryBehaviorP13availableMapsSayAA0B0O8MapStyleVGyYaKF", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP13availableMapsSayAA0B0O8MapStyleVGyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultMap", + "printedName": "defaultMap()", + "children": [ + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19GeoCategoryBehaviorP10defaultMapAA0B0O0F5StyleVyYaKF", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP10defaultMapAA0B0O0F5StyleVyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19GeoCategoryBehaviorP", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "GeoCategoryConfiguration", + "printedName": "GeoCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24GeoCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24GeoCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategoryConfiguration", + "printedName": "Amplify.GeoCategoryConfiguration", + "usr": "s:7Amplify24GeoCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24GeoCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24GeoCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategoryConfiguration", + "printedName": "Amplify.GeoCategoryConfiguration", + "usr": "s:7Amplify24GeoCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24GeoCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24GeoCategoryConfigurationV", + "mangledName": "$s7Amplify24GeoCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GeoCategoryPlugin", + "printedName": "GeoCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17GeoCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify17GeoCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17GeoCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify17GeoCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17GeoCategoryPluginP", + "mangledName": "$s7Amplify17GeoCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "GeoCategoryBehavior", + "printedName": "GeoCategoryBehavior", + "usr": "s:7Amplify19GeoCategoryBehaviorP", + "mangledName": "$s7Amplify19GeoCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Geo", + "printedName": "Geo", + "children": [ + { + "kind": "TypeDecl", + "name": "BoundingBox", + "printedName": "BoundingBox", + "children": [ + { + "kind": "Var", + "name": "southwest", + "printedName": "southwest", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO11BoundingBoxV9southwestAC11CoordinatesVvp", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV9southwestAC11CoordinatesVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO11BoundingBoxV9southwestAC11CoordinatesVvg", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV9southwestAC11CoordinatesVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northeast", + "printedName": "northeast", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO11BoundingBoxV9northeastAC11CoordinatesVvp", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV9northeastAC11CoordinatesVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO11BoundingBoxV9northeastAC11CoordinatesVvg", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV9northeastAC11CoordinatesVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(southwest:northeast:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundingBox", + "printedName": "Amplify.Geo.BoundingBox", + "usr": "s:7Amplify3GeoO11BoundingBoxV" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO11BoundingBoxV9southwest9northeastAeC11CoordinatesV_AItcfc", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV9southwest9northeastAeC11CoordinatesV_AItcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO11BoundingBoxV", + "mangledName": "$s7Amplify3GeoO11BoundingBoxV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Coordinates", + "printedName": "Coordinates", + "children": [ + { + "kind": "Var", + "name": "latitude", + "printedName": "latitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO11CoordinatesV8latitudeSdvp", + "mangledName": "$s7Amplify3GeoO11CoordinatesV8latitudeSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO11CoordinatesV8latitudeSdvg", + "mangledName": "$s7Amplify3GeoO11CoordinatesV8latitudeSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "longitude", + "printedName": "longitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO11CoordinatesV9longitudeSdvp", + "mangledName": "$s7Amplify3GeoO11CoordinatesV9longitudeSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO11CoordinatesV9longitudeSdvg", + "mangledName": "$s7Amplify3GeoO11CoordinatesV9longitudeSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(latitude:longitude:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO11CoordinatesV8latitude9longitudeAESd_Sdtcfc", + "mangledName": "$s7Amplify3GeoO11CoordinatesV8latitude9longitudeAESd_Sdtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "CLLocationCoordinate2D", + "printedName": "CoreLocation.CLLocationCoordinate2D", + "usr": "c:@S@CLLocationCoordinate2D" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO11CoordinatesVyAESo22CLLocationCoordinate2DVcfc", + "mangledName": "$s7Amplify3GeoO11CoordinatesVyAESo22CLLocationCoordinate2DVcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO11CoordinatesV", + "mangledName": "$s7Amplify3GeoO11CoordinatesV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Country", + "printedName": "Country", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV4codeSSvp", + "mangledName": "$s7Amplify3GeoO7CountryV4codeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV4codeSSvg", + "mangledName": "$s7Amplify3GeoO7CountryV4codeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV11descriptionSSvp", + "mangledName": "$s7Amplify3GeoO7CountryV11descriptionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV11descriptionSSvg", + "mangledName": "$s7Amplify3GeoO7CountryV11descriptionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "afg", + "printedName": "afg", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3afgAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3afgAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3afgAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3afgAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ala", + "printedName": "ala", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3alaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3alaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3alaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3alaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alb", + "printedName": "alb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3albAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3albAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3albAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3albAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dza", + "printedName": "dza", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3dzaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dzaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3dzaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dzaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asm", + "printedName": "asm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3asmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3asmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3asmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3asmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3andAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3andAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3andAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3andAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ago", + "printedName": "ago", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3agoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3agoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3agoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3agoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aia", + "printedName": "aia", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3aiaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3aiaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3aiaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3aiaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ata", + "printedName": "ata", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ataAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ataAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ataAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ataAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atg", + "printedName": "atg", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3atgAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3atgAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3atgAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3atgAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arg", + "printedName": "arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3argAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3argAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3argAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3argAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arm", + "printedName": "arm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3armAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3armAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3armAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3armAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "abw", + "printedName": "abw", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3abwAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3abwAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3abwAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3abwAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aus", + "printedName": "aus", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ausAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ausAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ausAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ausAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aut", + "printedName": "aut", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3autAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3autAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3autAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3autAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aze", + "printedName": "aze", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3azeAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3azeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3azeAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3azeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bhs", + "printedName": "bhs", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bhsAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bhsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bhsAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bhsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bhr", + "printedName": "bhr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bhrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bhrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bhrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bhrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bgd", + "printedName": "bgd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bgdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bgdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bgdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bgdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "brb", + "printedName": "brb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3brbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3brbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3brbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3brbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "blr", + "printedName": "blr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3blrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3blrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bel", + "printedName": "bel", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3belAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3belAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3belAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3belAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "blz", + "printedName": "blz", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3blzAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blzAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3blzAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blzAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ben", + "printedName": "ben", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3benAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3benAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3benAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3benAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bmu", + "printedName": "bmu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bmuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bmuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bmuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bmuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "btn", + "printedName": "btn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3btnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3btnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3btnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3btnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bol", + "printedName": "bol", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bolAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bolAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bolAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bolAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bes", + "printedName": "bes", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3besAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3besAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3besAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3besAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bih", + "printedName": "bih", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bihAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bihAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bihAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bihAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bwa", + "printedName": "bwa", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bwaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bwaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bwaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bwaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bvt", + "printedName": "bvt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bvtAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bvtAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bvtAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bvtAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bra", + "printedName": "bra", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3braAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3braAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3braAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3braAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iot", + "printedName": "iot", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3iotAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3iotAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3iotAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3iotAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "brn", + "printedName": "brn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3brnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3brnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3brnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3brnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bgr", + "printedName": "bgr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bgrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bgrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bgrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bgrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bfa", + "printedName": "bfa", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bfaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bfaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bfaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bfaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bdi", + "printedName": "bdi", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3bdiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bdiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3bdiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3bdiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cpv", + "printedName": "cpv", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cpvAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cpvAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cpvAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cpvAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "khm", + "printedName": "khm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3khmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3khmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3khmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3khmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cmr", + "printedName": "cmr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cmrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cmrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cmrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cmrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "can", + "printedName": "can", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3canAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3canAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3canAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3canAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cym", + "printedName": "cym", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cymAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cymAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cymAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cymAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "caf", + "printedName": "caf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cafAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cafAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cafAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cafAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tcd", + "printedName": "tcd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tcdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tcdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tcdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tcdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chl", + "printedName": "chl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3chlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3chlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3chlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3chlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chn", + "printedName": "chn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3chnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3chnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3chnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3chnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cxr", + "printedName": "cxr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cxrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cxrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cxrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cxrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cck", + "printedName": "cck", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cckAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cckAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cckAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cckAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "col", + "printedName": "col", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3colAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3colAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3colAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3colAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "com", + "printedName": "com", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3comAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3comAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3comAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3comAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cod", + "printedName": "cod", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3codAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3codAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3codAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3codAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cog", + "printedName": "cog", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cogAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cogAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cogAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cogAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cok", + "printedName": "cok", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cokAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cokAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cokAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cokAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cri", + "printedName": "cri", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3criAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3criAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3criAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3criAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hrv", + "printedName": "hrv", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3hrvAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hrvAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3hrvAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hrvAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cub", + "printedName": "cub", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cubAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cubAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cubAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cubAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cuw", + "printedName": "cuw", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cuwAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cuwAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cuwAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cuwAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cyp", + "printedName": "cyp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cypAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cypAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cypAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cypAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cze", + "printedName": "cze", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3czeAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3czeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3czeAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3czeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "civ", + "printedName": "civ", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3civAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3civAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3civAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3civAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dnk", + "printedName": "dnk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3dnkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dnkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3dnkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dnkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dji", + "printedName": "dji", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3djiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3djiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3djiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3djiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dma", + "printedName": "dma", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3dmaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dmaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3dmaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3dmaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dom", + "printedName": "dom", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3domAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3domAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3domAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3domAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ecu", + "printedName": "ecu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ecuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ecuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ecuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ecuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "egy", + "printedName": "egy", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3egyAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3egyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3egyAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3egyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "slv", + "printedName": "slv", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3slvAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3slvAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3slvAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3slvAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gnq", + "printedName": "gnq", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gnqAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gnqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gnqAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gnqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eri", + "printedName": "eri", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3eriAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3eriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3eriAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3eriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "est", + "printedName": "est", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3estAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3estAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3estAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3estAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swz", + "printedName": "swz", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3swzAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3swzAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3swzAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3swzAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eth", + "printedName": "eth", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ethAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ethAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ethAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ethAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "flk", + "printedName": "flk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3flkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3flkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3flkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3flkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fro", + "printedName": "fro", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3froAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3froAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3froAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3froAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fji", + "printedName": "fji", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3fjiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fjiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3fjiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fjiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fin", + "printedName": "fin", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3finAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3finAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3finAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3finAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fra", + "printedName": "fra", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3fraAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fraAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3fraAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fraAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "guf", + "printedName": "guf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gufAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gufAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gufAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gufAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pyf", + "printedName": "pyf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pyfAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pyfAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pyfAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pyfAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atf", + "printedName": "atf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3atfAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3atfAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3atfAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3atfAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gab", + "printedName": "gab", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gabAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gabAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gabAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gabAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gmb", + "printedName": "gmb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gmbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gmbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gmbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gmbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geo", + "printedName": "geo", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3geoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3geoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3geoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3geoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deu", + "printedName": "deu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3deuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3deuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3deuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3deuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gha", + "printedName": "gha", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ghaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ghaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ghaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ghaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gib", + "printedName": "gib", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gibAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gibAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gibAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gibAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grc", + "printedName": "grc", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3grcAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grcAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3grcAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grcAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grl", + "printedName": "grl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3grlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3grlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grd", + "printedName": "grd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3grdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3grdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3grdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "glp", + "printedName": "glp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3glpAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3glpAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3glpAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3glpAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gum", + "printedName": "gum", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gumAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gumAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gumAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gumAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gtm", + "printedName": "gtm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gtmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gtmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gtmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gtmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ggy", + "printedName": "ggy", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ggyAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ggyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ggyAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ggyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gin", + "printedName": "gin", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ginAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ginAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ginAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ginAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gnb", + "printedName": "gnb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gnbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gnbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gnbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gnbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "guy", + "printedName": "guy", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3guyAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3guyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3guyAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3guyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hti", + "printedName": "hti", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3htiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3htiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3htiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3htiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hmd", + "printedName": "hmd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3hmdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hmdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3hmdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hmdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vat", + "printedName": "vat", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3vatAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vatAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3vatAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vatAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hnd", + "printedName": "hnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3hndAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hndAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3hndAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hndAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hkg", + "printedName": "hkg", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3hkgAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hkgAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3hkgAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hkgAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hun", + "printedName": "hun", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3hunAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hunAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3hunAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3hunAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isl", + "printedName": "isl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3islAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3islAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3islAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3islAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ind", + "printedName": "ind", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3indAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3indAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3indAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3indAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idn", + "printedName": "idn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3idnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3idnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3idnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3idnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "irn", + "printedName": "irn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3irnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3irnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "irq", + "printedName": "irq", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3irqAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3irqAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "irl", + "printedName": "irl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3irlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3irlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3irlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imn", + "printedName": "imn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3imnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3imnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3imnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3imnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isr", + "printedName": "isr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3isrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3isrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3isrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3isrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ita", + "printedName": "ita", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3itaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3itaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3itaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3itaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jam", + "printedName": "jam", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3jamAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jamAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3jamAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jamAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpn", + "printedName": "jpn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3jpnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jpnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3jpnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jpnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jey", + "printedName": "jey", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3jeyAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jeyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3jeyAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jeyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jor", + "printedName": "jor", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3jorAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jorAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3jorAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3jorAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kaz", + "printedName": "kaz", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3kazAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kazAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3kazAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kazAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ken", + "printedName": "ken", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3kenAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kenAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3kenAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kenAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kir", + "printedName": "kir", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3kirAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kirAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3kirAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kirAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "prk", + "printedName": "prk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3prkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3prkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3prkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3prkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kor", + "printedName": "kor", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3korAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3korAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3korAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3korAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kwt", + "printedName": "kwt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3kwtAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kwtAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3kwtAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kwtAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kgz", + "printedName": "kgz", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3kgzAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kgzAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3kgzAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3kgzAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lao", + "printedName": "lao", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3laoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3laoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3laoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3laoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lva", + "printedName": "lva", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lvaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lvaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lvaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lvaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lbn", + "printedName": "lbn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lbnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lbnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lso", + "printedName": "lso", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lsoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lsoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lsoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lsoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lbr", + "printedName": "lbr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lbrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lbrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lby", + "printedName": "lby", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lbyAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lbyAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lbyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lie", + "printedName": "lie", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lieAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lieAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lieAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lieAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ltu", + "printedName": "ltu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ltuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ltuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ltuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ltuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lux", + "printedName": "lux", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3luxAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3luxAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3luxAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3luxAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mac", + "printedName": "mac", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3macAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3macAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3macAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3macAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mdg", + "printedName": "mdg", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mdgAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdgAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mdgAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdgAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mwi", + "printedName": "mwi", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mwiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mwiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mwiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mwiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mys", + "printedName": "mys", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mysAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mysAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mysAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mysAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mdv", + "printedName": "mdv", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mdvAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdvAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mdvAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdvAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mli", + "printedName": "mli", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mliAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mliAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mlt", + "printedName": "mlt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mltAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mltAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mltAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mltAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mhl", + "printedName": "mhl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mhlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mhlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mhlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mhlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mtq", + "printedName": "mtq", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mtqAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mtqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mtqAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mtqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mrt", + "printedName": "mrt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mrtAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mrtAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mrtAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mrtAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mus", + "printedName": "mus", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3musAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3musAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3musAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3musAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "myt", + "printedName": "myt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mytAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mytAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mytAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mytAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mex", + "printedName": "mex", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mexAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mexAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mexAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mexAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fsm", + "printedName": "fsm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3fsmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fsmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3fsmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3fsmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mda", + "printedName": "mda", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mdaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mdaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mdaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mco", + "printedName": "mco", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mcoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mcoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mcoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mcoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mng", + "printedName": "mng", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mngAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mngAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mngAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mngAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mne", + "printedName": "mne", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mneAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mneAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mneAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mneAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "msr", + "printedName": "msr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3msrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3msrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3msrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3msrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mar", + "printedName": "mar", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3marAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3marAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3marAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3marAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "moz", + "printedName": "moz", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mozAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mozAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mozAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mozAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mmr", + "printedName": "mmr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mmrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mmrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mmrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mmrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nam", + "printedName": "nam", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3namAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3namAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3namAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3namAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nru", + "printedName": "nru", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nruAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nruAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nruAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nruAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "npl", + "printedName": "npl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nplAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nplAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nplAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nplAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nld", + "printedName": "nld", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nldAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nldAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nldAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nldAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ncl", + "printedName": "ncl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nclAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nclAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nclAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nclAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nzl", + "printedName": "nzl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nzlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nzlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nzlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nzlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nic", + "printedName": "nic", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nicAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nicAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ner", + "printedName": "ner", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nerAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nerAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nerAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nerAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nga", + "printedName": "nga", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ngaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ngaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ngaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ngaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "niu", + "printedName": "niu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3niuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3niuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3niuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3niuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nfk", + "printedName": "nfk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3nfkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nfkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3nfkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3nfkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mnp", + "printedName": "mnp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mnpAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mnpAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mnpAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mnpAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nor", + "printedName": "nor", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3norAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3norAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3norAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3norAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "omn", + "printedName": "omn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3omnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3omnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3omnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3omnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pak", + "printedName": "pak", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pakAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pakAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "plw", + "printedName": "plw", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3plwAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3plwAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3plwAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3plwAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pse", + "printedName": "pse", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pseAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pseAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pan", + "printedName": "pan", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3panAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3panAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3panAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3panAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "png", + "printedName": "png", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pngAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pngAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pngAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pngAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pry", + "printedName": "pry", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pryAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pryAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pryAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pryAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "per", + "printedName": "per", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3perAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3perAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3perAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3perAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "phl", + "printedName": "phl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3phlAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3phlAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3phlAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3phlAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pcn", + "printedName": "pcn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3pcnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pcnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3pcnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3pcnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pol", + "printedName": "pol", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3polAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3polAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3polAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3polAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "prt", + "printedName": "prt", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3prtAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3prtAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3prtAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3prtAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pri", + "printedName": "pri", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3priAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3priAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3priAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3priAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "qat", + "printedName": "qat", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3qatAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3qatAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3qatAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3qatAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mkd", + "printedName": "mkd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mkdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mkdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mkdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mkdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rou", + "printedName": "rou", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3rouAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rouAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3rouAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rouAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rus", + "printedName": "rus", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3rusAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rusAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3rusAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rusAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rwa", + "printedName": "rwa", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3rwaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rwaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3rwaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3rwaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reu", + "printedName": "reu", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3reuAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3reuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3reuAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3reuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "blm", + "printedName": "blm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3blmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3blmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3blmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shn", + "printedName": "shn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3shnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3shnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3shnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3shnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kna", + "printedName": "kna", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3knaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3knaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3knaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3knaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lca", + "printedName": "lca", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lcaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lcaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lcaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lcaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maf", + "printedName": "maf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3mafAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mafAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3mafAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3mafAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spm", + "printedName": "spm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3spmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3spmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3spmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3spmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vct", + "printedName": "vct", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3vctAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vctAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3vctAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vctAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wsm", + "printedName": "wsm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3wsmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3wsmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3wsmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3wsmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smr", + "printedName": "smr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3smrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3smrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3smrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3smrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stp", + "printedName": "stp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3stpAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3stpAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3stpAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3stpAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sau", + "printedName": "sau", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sauAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sauAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sauAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sauAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sen", + "printedName": "sen", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3senAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3senAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3senAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3senAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "srb", + "printedName": "srb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3srbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3srbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3srbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3srbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syc", + "printedName": "syc", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sycAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sycAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sycAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sycAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sle", + "printedName": "sle", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sleAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sleAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sgp", + "printedName": "sgp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sgpAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sgpAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sgpAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sgpAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sxm", + "printedName": "sxm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sxmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sxmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sxmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sxmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "svk", + "printedName": "svk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3svkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3svkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3svkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3svkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "svn", + "printedName": "svn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3svnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3svnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3svnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3svnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "slb", + "printedName": "slb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3slbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3slbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3slbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3slbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "som", + "printedName": "som", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3somAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3somAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3somAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3somAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zaf", + "printedName": "zaf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3zafAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zafAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3zafAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zafAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sgs", + "printedName": "sgs", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sgsAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sgsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sgsAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sgsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ssd", + "printedName": "ssd", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ssdAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ssdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ssdAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ssdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "esp", + "printedName": "esp", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3espAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3espAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3espAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3espAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lka", + "printedName": "lka", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3lkaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lkaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3lkaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3lkaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdn", + "printedName": "sdn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sdnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sdnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sdnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sdnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sur", + "printedName": "sur", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3surAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3surAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3surAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3surAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sjm", + "printedName": "sjm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sjmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sjmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sjmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sjmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swe", + "printedName": "swe", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3sweAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sweAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3sweAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3sweAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "che", + "printedName": "che", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3cheAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cheAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3cheAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3cheAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syr", + "printedName": "syr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3syrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3syrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3syrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3syrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "twn", + "printedName": "twn", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3twnAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3twnAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3twnAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3twnAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tjk", + "printedName": "tjk", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tjkAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tjkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tjkAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tjkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tza", + "printedName": "tza", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tzaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tzaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tzaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tzaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tha", + "printedName": "tha", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3thaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3thaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3thaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3thaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tls", + "printedName": "tls", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tlsAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tlsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tlsAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tlsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tgo", + "printedName": "tgo", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tgoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tgoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tgoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tgoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tkl", + "printedName": "tkl", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tklAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tklAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tklAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tklAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ton", + "printedName": "ton", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tonAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tonAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tto", + "printedName": "tto", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ttoAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ttoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ttoAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ttoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tun", + "printedName": "tun", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tunAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tunAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tunAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tunAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tur", + "printedName": "tur", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3turAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3turAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3turAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3turAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tkm", + "printedName": "tkm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tkmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tkmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tkmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tkmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tca", + "printedName": "tca", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tcaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tcaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tcaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tcaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tuv", + "printedName": "tuv", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3tuvAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tuvAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3tuvAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3tuvAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uga", + "printedName": "uga", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ugaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ugaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ugaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ugaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ukr", + "printedName": "ukr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3ukrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ukrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3ukrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3ukrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "are", + "printedName": "are", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3areAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3areAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3areAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3areAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gbr", + "printedName": "gbr", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3gbrAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gbrAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3gbrAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3gbrAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "umi", + "printedName": "umi", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3umiAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3umiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3umiAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3umiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usa", + "printedName": "usa", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3usaAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3usaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3usaAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3usaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ury", + "printedName": "ury", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3uryAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3uryAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3uryAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3uryAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uzb", + "printedName": "uzb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3uzbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3uzbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3uzbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3uzbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vut", + "printedName": "vut", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3vutAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vutAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3vutAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vutAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ven", + "printedName": "ven", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3venAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3venAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3venAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3venAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vnm", + "printedName": "vnm", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3vnmAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vnmAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3vnmAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vnmAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vgb", + "printedName": "vgb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3vgbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vgbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3vgbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3vgbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vir", + "printedName": "vir", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3virAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3virAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3virAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3virAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wlf", + "printedName": "wlf", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3wlfAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3wlfAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3wlfAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3wlfAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "esh", + "printedName": "esh", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3eshAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3eshAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3eshAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3eshAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yem", + "printedName": "yem", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3yemAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3yemAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3yemAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3yemAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zmb", + "printedName": "zmb", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3zmbAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zmbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3zmbAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zmbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zwe", + "printedName": "zwe", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO7CountryV3zweAEvpZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zweAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO7CountryV3zweAEvgZ", + "mangledName": "$s7Amplify3GeoO7CountryV3zweAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO7CountryV", + "mangledName": "$s7Amplify3GeoO7CountryV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "invalidConfiguration", + "printedName": "invalidConfiguration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO20invalidConfigurationyAESS_SSsAD_pSgtcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO20invalidConfigurationyAESS_SSsAD_pSgtcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO07networkC0yAESS_SSsAD_pSgtcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO07networkC0yAESS_SSsAD_pSgtcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "accessDenied", + "printedName": "accessDenied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO12accessDeniedyAESS_SSsAD_pSgtcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO12accessDeniedyAESS_SSsAD_pSgtcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "serviceError", + "printedName": "serviceError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO07serviceC0yAESS_SSsAD_pSgtcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO07serviceC0yAESS_SSsAD_pSgtcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "pluginError", + "printedName": "pluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.AmplifyError) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyError) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyError)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyError", + "printedName": "Amplify.AmplifyError", + "usr": "s:7Amplify0A5ErrorP" + } + ], + "usr": "s:7Amplify0A5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO06pluginC0yAeA0aC0_pcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO06pluginC0yAeA0aC0_pcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Error.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.Geo.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Error.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO5ErrorO7unknownyAESS_SSsAD_pSgtcAEmF", + "mangledName": "$s7Amplify3GeoO5ErrorO7unknownyAESS_SSsAD_pSgtcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO5ErrorO16errorDescription18recoverySuggestion0D0AESS_SSsAD_ptcfc", + "mangledName": "$s7Amplify3GeoO5ErrorO16errorDescription18recoverySuggestion0D0AESS_SSsAD_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5ErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify3GeoO5ErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5ErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify3GeoO5ErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5ErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify3GeoO5ErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5ErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify3GeoO5ErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5ErrorO010underlyingC0sAD_pSgvp", + "mangledName": "$s7Amplify3GeoO5ErrorO010underlyingC0sAD_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5ErrorO010underlyingC0sAD_pSgvg", + "mangledName": "$s7Amplify3GeoO5ErrorO010underlyingC0sAD_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify3GeoO5ErrorO", + "mangledName": "$s7Amplify3GeoO5ErrorO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MapStyle", + "printedName": "MapStyle", + "children": [ + { + "kind": "Var", + "name": "mapName", + "printedName": "mapName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO8MapStyleV7mapNameSSvp", + "mangledName": "$s7Amplify3GeoO8MapStyleV7mapNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO8MapStyleV7mapNameSSvg", + "mangledName": "$s7Amplify3GeoO8MapStyleV7mapNameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "style", + "printedName": "style", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO8MapStyleV5styleSSvp", + "mangledName": "$s7Amplify3GeoO8MapStyleV5styleSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO8MapStyleV5styleSSvg", + "mangledName": "$s7Amplify3GeoO8MapStyleV5styleSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "styleURL", + "printedName": "styleURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO8MapStyleV8styleURL10Foundation0F0Vvp", + "mangledName": "$s7Amplify3GeoO8MapStyleV8styleURL10Foundation0F0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO8MapStyleV8styleURL10Foundation0F0Vvg", + "mangledName": "$s7Amplify3GeoO8MapStyleV8styleURL10Foundation0F0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(mapName:style:styleURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO8MapStyleV7mapName5style0G3URLAESS_SS10Foundation0H0Vtcfc", + "mangledName": "$s7Amplify3GeoO8MapStyleV7mapName5style0G3URLAESS_SS10Foundation0H0Vtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + }, + { + "kind": "TypeNominal", + "name": "MapStyle", + "printedName": "Amplify.Geo.MapStyle", + "usr": "s:7Amplify3GeoO8MapStyleV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify3GeoO8MapStyleV23__derived_struct_equalsySbAE_AEtFZ", + "mangledName": "$s7Amplify3GeoO8MapStyleV23__derived_struct_equalsySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO8MapStyleV", + "mangledName": "$s7Amplify3GeoO8MapStyleV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Place", + "printedName": "Place", + "children": [ + { + "kind": "Var", + "name": "coordinates", + "printedName": "coordinates", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV11coordinatesAC11CoordinatesVvp", + "mangledName": "$s7Amplify3GeoO5PlaceV11coordinatesAC11CoordinatesVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV11coordinatesAC11CoordinatesVvg", + "mangledName": "$s7Amplify3GeoO5PlaceV11coordinatesAC11CoordinatesVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "label", + "printedName": "label", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV5labelSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV5labelSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV5labelSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV5labelSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "addressNumber", + "printedName": "addressNumber", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV13addressNumberSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV13addressNumberSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV13addressNumberSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV13addressNumberSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "street", + "printedName": "street", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV6streetSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV6streetSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV6streetSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV6streetSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "municipality", + "printedName": "municipality", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV12municipalitySSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV12municipalitySSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV12municipalitySSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV12municipalitySSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neighborhood", + "printedName": "neighborhood", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV12neighborhoodSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV12neighborhoodSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV12neighborhoodSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV12neighborhoodSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "region", + "printedName": "region", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV6regionSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV6regionSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV6regionSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV6regionSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subRegion", + "printedName": "subRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV9subRegionSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV9subRegionSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV9subRegionSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV9subRegionSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "postalCode", + "printedName": "postalCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV10postalCodeSSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV10postalCodeSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV10postalCodeSSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV10postalCodeSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO5PlaceV7countrySSSgvp", + "mangledName": "$s7Amplify3GeoO5PlaceV7countrySSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO5PlaceV7countrySSSgvg", + "mangledName": "$s7Amplify3GeoO5PlaceV7countrySSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coordinates:label:addressNumber:street:municipality:neighborhood:region:subRegion:postalCode:country:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Place", + "printedName": "Amplify.Geo.Place", + "usr": "s:7Amplify3GeoO5PlaceV" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO5PlaceV11coordinates5label13addressNumber6street12municipality12neighborhood6region9subRegion10postalCode7countryAeC11CoordinatesV_SSSgA8Rtcfc", + "mangledName": "$s7Amplify3GeoO5PlaceV11coordinates5label13addressNumber6street12municipality12neighborhood6region9subRegion10postalCode7countryAeC11CoordinatesV_SSSgA8Rtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO5PlaceV", + "mangledName": "$s7Amplify3GeoO5PlaceV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "ResultsHandler", + "printedName": "ResultsHandler", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Result)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Amplify.Geo.Error", + "usr": "s:7Amplify3GeoO5ErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify3GeoO14ResultsHandlera", + "mangledName": "$s7Amplify3GeoO14ResultsHandlera", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "SearchArea", + "printedName": "SearchArea", + "children": [ + { + "kind": "Var", + "name": "near", + "printedName": "near", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.SearchArea.Type) -> (Amplify.Geo.Coordinates) -> Amplify.Geo.SearchArea", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.Coordinates) -> Amplify.Geo.SearchArea", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.Coordinates)", + "children": [ + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.SearchArea.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.SearchArea.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO10SearchAreaO4nearyAeC11CoordinatesVcAEmF", + "mangledName": "$s7Amplify3GeoO10SearchAreaO4nearyAeC11CoordinatesVcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "within", + "printedName": "within", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.SearchArea.Type) -> (Amplify.Geo.BoundingBox) -> Amplify.Geo.SearchArea", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Geo.BoundingBox) -> Amplify.Geo.SearchArea", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.BoundingBox)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundingBox", + "printedName": "Amplify.Geo.BoundingBox", + "usr": "s:7Amplify3GeoO11BoundingBoxV" + } + ], + "usr": "s:7Amplify3GeoO11BoundingBoxV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Geo.SearchArea.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Geo.SearchArea.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify3GeoO10SearchAreaO6withinyAeC11BoundingBoxVcAEmF", + "mangledName": "$s7Amplify3GeoO10SearchAreaO6withinyAeC11BoundingBoxVcAEmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "near", + "printedName": "near(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + }, + { + "kind": "TypeNominal", + "name": "CLLocationCoordinate2D", + "printedName": "CoreLocation.CLLocationCoordinate2D", + "usr": "c:@S@CLLocationCoordinate2D" + } + ], + "declKind": "Func", + "usr": "s:7Amplify3GeoO10SearchAreaO4nearyAESo22CLLocationCoordinate2DVFZ", + "mangledName": "$s7Amplify3GeoO10SearchAreaO4nearyAESo22CLLocationCoordinate2DVFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify3GeoO10SearchAreaO", + "mangledName": "$s7Amplify3GeoO10SearchAreaO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "SearchForTextOptions", + "printedName": "SearchForTextOptions", + "children": [ + { + "kind": "Var", + "name": "area", + "printedName": "area", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchArea?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvp", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchArea?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvg", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchArea?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvs", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV4areaAC0C4AreaOSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "countries", + "printedName": "countries", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Geo.Country]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Country]", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvp", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Geo.Country]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Country]", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvg", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Geo.Country]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Country]", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvs", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV9countriesSayAC7CountryVGSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "maxResults", + "printedName": "maxResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvp", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvg", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvs", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV10maxResultsSiSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvs", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV06pluginF0ypSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(area:countries:maxResults:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForTextOptions", + "printedName": "Amplify.Geo.SearchForTextOptions", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Geo.SearchArea?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchArea", + "printedName": "Amplify.Geo.SearchArea", + "usr": "s:7Amplify3GeoO10SearchAreaO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Geo.Country]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Geo.Country]", + "children": [ + { + "kind": "TypeNominal", + "name": "Country", + "printedName": "Amplify.Geo.Country", + "usr": "s:7Amplify3GeoO7CountryV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV4area9countries10maxResults06pluginF0AeC0C4AreaOSg_SayAC7CountryVGSgSiSgypSgtcfc", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV4area9countries10maxResults06pluginF0AeC0C4AreaOSg_SayAC7CountryVGSgSiSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO20SearchForTextOptionsV", + "mangledName": "$s7Amplify3GeoO20SearchForTextOptionsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "SearchForCoordinatesOptions", + "printedName": "SearchForCoordinatesOptions", + "children": [ + { + "kind": "Var", + "name": "maxResults", + "printedName": "maxResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvp", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvg", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvs", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResultsSiSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvs", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV06pluginF0ypSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(maxResults:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchForCoordinatesOptions", + "printedName": "Amplify.Geo.SearchForCoordinatesOptions", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResults06pluginF0AESiSg_ypSgtcfc", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV10maxResults06pluginF0AESiSg_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify3GeoO27SearchForCoordinatesOptionsV", + "mangledName": "$s7Amplify3GeoO27SearchForCoordinatesOptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify3GeoO", + "mangledName": "$s7Amplify3GeoO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "HubCategory", + "printedName": "HubCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11HubCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify11HubCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11HubCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify11HubCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HubCategoryPlugin", + "printedName": "Amplify.HubCategoryPlugin", + "usr": "s:7Amplify17HubCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify11HubCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategoryPlugin", + "printedName": "Amplify.HubCategoryPlugin", + "usr": "s:7Amplify17HubCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify11HubCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify11HubCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(to:payload:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC8dispatch2to7payloadyAA0B7ChannelO_AA0B7PayloadVtF", + "mangledName": "$s7Amplify11HubCategoryC8dispatch2to7payloadyAA0B7ChannelO_AA0B7PayloadVtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:eventName:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC6listen2to9eventName8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SSyAA0B7PayloadVctF", + "mangledName": "$s7Amplify11HubCategoryC6listen2to9eventName8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SSyAA0B7PayloadVctF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:isIncluded:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.HubFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SbAA0B7PayloadVcSgyAMctF", + "mangledName": "$s7Amplify11HubCategoryC6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SbAA0B7PayloadVcSgyAMctF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeListener", + "printedName": "removeListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC14removeListeneryyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify11HubCategoryC14removeListeneryyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11HubCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify11HubCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11HubCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify11HubCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11HubCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify11HubCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11HubCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify11HubCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC5resetyyYaF", + "mangledName": "$s7Amplify11HubCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenForResult", + "printedName": "listenForResult(to:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "AmplifyOperation", + "printedName": "Amplify.AmplifyOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A9OperationC" + }, + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyOperation.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC15listenForResult2to14resultListenerAA16UnsubscribeTokenVAA0A9OperationCyxq_q0_G_ys0F0Oyq_q0_GctAA0aL7RequestRzAA0A5ErrorR0_r1_lF", + "mangledName": "$s7Amplify11HubCategoryC15listenForResult2to14resultListenerAA16UnsubscribeTokenVAA0A9OperationCyxq_q0_G_ys0F0Oyq_q0_GctAA0aL7RequestRzAA0A5ErrorR0_r1_lF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenForInProcess", + "printedName": "listenForInProcess(to:inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperation", + "printedName": "Amplify.AmplifyInProcessReportingOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A27InProcessReportingOperationC" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Amplify.AmplifyInProcessReportingOperation.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11HubCategoryC18listenForInProcess2to02inG8ListenerAA16UnsubscribeTokenVAA0afG18ReportingOperationCyxq_q0_q1_G_yq_ctAA0aN7RequestRzAA0A5ErrorR1_r2_lF", + "mangledName": "$s7Amplify11HubCategoryC18listenForInProcess2to02inG8ListenerAA16UnsubscribeTokenVAA0afG18ReportingOperationCyxq_q0_q1_G_yq_ctAA0aN7RequestRzAA0A5ErrorR1_r2_lF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify11HubCategoryC", + "mangledName": "$s7Amplify11HubCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "HubCategoryBehavior", + "printedName": "HubCategoryBehavior", + "usr": "s:7Amplify19HubCategoryBehaviorP", + "mangledName": "$s7Amplify19HubCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "HubPublisher", + "printedName": "HubPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify12HubPublishera", + "mangledName": "$s7Amplify12HubPublishera", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "HubListener", + "printedName": "HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11HubListenera", + "mangledName": "$s7Amplify11HubListenera", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "HubCategoryBehavior", + "printedName": "HubCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(to:payload:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19HubCategoryBehaviorP8dispatch2to7payloadyAA0B7ChannelO_AA0B7PayloadVtF", + "mangledName": "$s7Amplify19HubCategoryBehaviorP8dispatch2to7payloadyAA0B7ChannelO_AA0B7PayloadVtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:eventName:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify19HubCategoryBehaviorP6listen2to9eventName8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SSyAA0B7PayloadVctF", + "mangledName": "$s7Amplify19HubCategoryBehaviorP6listen2to9eventName8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SSyAA0B7PayloadVctF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:isIncluded:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.HubFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify19HubCategoryBehaviorP6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SbAA0B7PayloadVcSgyAMctF", + "mangledName": "$s7Amplify19HubCategoryBehaviorP6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA0B7ChannelO_SbAA0B7PayloadVcSgyAMctF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeListener", + "printedName": "removeListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19HubCategoryBehaviorP14removeListeneryyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify19HubCategoryBehaviorP14removeListeneryyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "publisher", + "printedName": "publisher(for:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPublisher", + "printedName": "Amplify.HubPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19HubCategoryBehaviorPAAE9publisher3for7Combine12AnyPublisherVyAA0B7PayloadVs5NeverOGAA0B7ChannelO_tF", + "mangledName": "$s7Amplify19HubCategoryBehaviorPAAE9publisher3for7Combine12AnyPublisherVyAA0B7PayloadVs5NeverOGAA0B7ChannelO_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19HubCategoryBehaviorP", + "mangledName": "$s7Amplify19HubCategoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "HubCategoryConfiguration", + "printedName": "HubCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24HubCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify24HubCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24HubCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify24HubCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategoryConfiguration", + "printedName": "Amplify.HubCategoryConfiguration", + "usr": "s:7Amplify24HubCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24HubCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify24HubCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24HubCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify24HubCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategoryConfiguration", + "printedName": "Amplify.HubCategoryConfiguration", + "usr": "s:7Amplify24HubCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24HubCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify24HubCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24HubCategoryConfigurationV", + "mangledName": "$s7Amplify24HubCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HubCategoryPlugin", + "printedName": "HubCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17HubCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify17HubCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17HubCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify17HubCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17HubCategoryPluginP", + "mangledName": "$s7Amplify17HubCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "HubCategoryBehavior", + "printedName": "HubCategoryBehavior", + "usr": "s:7Amplify19HubCategoryBehaviorP", + "mangledName": "$s7Amplify19HubCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HubChannel", + "printedName": "HubChannel", + "children": [ + { + "kind": "Var", + "name": "analytics", + "printedName": "analytics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO9analyticsyA2CmF", + "mangledName": "$s7Amplify10HubChannelO9analyticsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "api", + "printedName": "api", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO3apiyA2CmF", + "mangledName": "$s7Amplify10HubChannelO3apiyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "auth", + "printedName": "auth", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO4authyA2CmF", + "mangledName": "$s7Amplify10HubChannelO4authyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO9dataStoreyA2CmF", + "mangledName": "$s7Amplify10HubChannelO9dataStoreyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "geo", + "printedName": "geo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO3geoyA2CmF", + "mangledName": "$s7Amplify10HubChannelO3geoyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "hub", + "printedName": "hub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO3hubyA2CmF", + "mangledName": "$s7Amplify10HubChannelO3hubyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "logging", + "printedName": "logging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO7loggingyA2CmF", + "mangledName": "$s7Amplify10HubChannelO7loggingyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "predictions", + "printedName": "predictions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO11predictionsyA2CmF", + "mangledName": "$s7Amplify10HubChannelO11predictionsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "pushNotifications", + "printedName": "pushNotifications", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO17pushNotificationsyA2CmF", + "mangledName": "$s7Amplify10HubChannelO17pushNotificationsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO7storageyA2CmF", + "mangledName": "$s7Amplify10HubChannelO7storageyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubChannel.Type) -> (Swift.String) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.HubChannel", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubChannel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubChannel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify10HubChannelO6customyACSScACmF", + "mangledName": "$s7Amplify10HubChannelO6customyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubChannelO2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify10HubChannelO2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify10HubChannelO4fromAcA12CategoryTypeO_tcfc", + "mangledName": "$s7Amplify10HubChannelO4fromAcA12CategoryTypeO_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubChannelO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify10HubChannelO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubChannelO9hashValueSivp", + "mangledName": "$s7Amplify10HubChannelO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubChannelO9hashValueSivg", + "mangledName": "$s7Amplify10HubChannelO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify10HubChannelO", + "mangledName": "$s7Amplify10HubChannelO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "HubError", + "printedName": "HubError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.HubError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.HubError", + "children": [ + { + "kind": "TypeNominal", + "name": "HubError", + "printedName": "Amplify.HubError", + "usr": "s:7Amplify8HubErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubError", + "printedName": "Amplify.HubError", + "usr": "s:7Amplify8HubErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8HubErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify8HubErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknownError", + "printedName": "unknownError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.HubError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.HubError", + "children": [ + { + "kind": "TypeNominal", + "name": "HubError", + "printedName": "Amplify.HubError", + "usr": "s:7Amplify8HubErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.HubError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "HubError", + "printedName": "Amplify.HubError", + "usr": "s:7Amplify8HubErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify8HubErrorO07unknownC0yACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify8HubErrorO07unknownC0yACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify8HubErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify8HubErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8HubErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify8HubErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify8HubErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify8HubErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8HubErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify8HubErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8HubErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify8HubErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8HubErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify8HubErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubError", + "printedName": "Amplify.HubError", + "usr": "s:7Amplify8HubErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify8HubErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify8HubErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify8HubErrorO", + "mangledName": "$s7Amplify8HubErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "HubFilter", + "printedName": "HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9HubFiltera", + "mangledName": "$s7Amplify9HubFiltera", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "HubFilters", + "printedName": "HubFilters", + "children": [ + { + "kind": "Function", + "name": "all", + "printedName": "all(filters:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.HubFilter...", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubFiltersV3all7filtersSbAA0B7PayloadVcSbAGcd_tFZ", + "mangledName": "$s7Amplify10HubFiltersV3all7filtersSbAA0B7PayloadVcSbAGcd_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "any", + "printedName": "any(filters:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.HubFilter...", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubFiltersV3any7filtersSbAA0B7PayloadVcSbAGcd_tFZ", + "mangledName": "$s7Amplify10HubFiltersV3any7filtersSbAA0B7PayloadVcSbAGcd_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forOperation", + "printedName": "forOperation(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "AmplifyOperation", + "printedName": "Amplify.AmplifyOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A9OperationC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubFiltersV12forOperationySbAA0B7PayloadVcAA0aE0Cyxq_q0_GAA0aE7RequestRzAA0A5ErrorR0_r1_lFZ", + "mangledName": "$s7Amplify10HubFiltersV12forOperationySbAA0B7PayloadVcAA0aE0Cyxq_q0_GAA0aE7RequestRzAA0A5ErrorR0_r1_lFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "forEventName", + "printedName": "forEventName(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify10HubFiltersV12forEventNameySbAA0B7PayloadVcSSFZ", + "mangledName": "$s7Amplify10HubFiltersV12forEventNameySbAA0B7PayloadVcSSFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubFiltersV", + "mangledName": "$s7Amplify10HubFiltersV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "HubPayload", + "printedName": "HubPayload", + "children": [ + { + "kind": "TypeDecl", + "name": "EventName", + "printedName": "EventName", + "children": [ + { + "kind": "TypeDecl", + "name": "API", + "printedName": "API", + "children": [ + { + "kind": "Var", + "name": "mutate", + "printedName": "mutate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV6mutateSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV6mutateSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV6mutateSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV6mutateSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "query", + "printedName": "query", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV5querySSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV5querySSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV5querySSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV5querySSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subscribe", + "printedName": "subscribe", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV9subscribeSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV9subscribeSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV9subscribeSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV9subscribeSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delete", + "printedName": "delete", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV6deleteSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV6deleteSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV6deleteSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV6deleteSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "get", + "printedName": "get", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV3getSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV3getSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV3getSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV3getSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "patch", + "printedName": "patch", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV5patchSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV5patchSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV5patchSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV5patchSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "post", + "printedName": "post", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV4postSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV4postSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV4postSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV4postSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "put", + "printedName": "put", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV3putSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV3putSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV3putSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV3putSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "head", + "printedName": "head", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV4headSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV4headSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV4headSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV4headSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV3APIV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3APIV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Analytics", + "printedName": "Analytics", + "children": [ + { + "kind": "Var", + "name": "identifyUser", + "printedName": "identifyUser", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV12identifyUserSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV12identifyUserSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV12identifyUserSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV12identifyUserSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "record", + "printedName": "record", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV6recordSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV6recordSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV6recordSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV6recordSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "flushEvents", + "printedName": "flushEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV11flushEventsSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV11flushEventsSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV11flushEventsSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV11flushEventsSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV9AnalyticsV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9AnalyticsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Auth", + "printedName": "Auth", + "children": [ + { + "kind": "Var", + "name": "signedIn", + "printedName": "signedIn", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV8signedInSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV8signedInSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV8signedInSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV8signedInSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "signedOut", + "printedName": "signedOut", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV9signedOutSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV9signedOutSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV9signedOutSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV9signedOutSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDeleted", + "printedName": "userDeleted", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV11userDeletedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV11userDeletedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV11userDeletedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV11userDeletedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionExpired", + "printedName": "sessionExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV14sessionExpiredSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV14sessionExpiredSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV14sessionExpiredSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV14sessionExpiredSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV4AuthV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV4AuthV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "DataStore", + "printedName": "DataStore", + "children": [ + { + "kind": "Var", + "name": "syncStarted", + "printedName": "syncStarted", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV11syncStartedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV11syncStartedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV11syncStartedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV11syncStartedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncReceived", + "printedName": "syncReceived", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV12syncReceivedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV12syncReceivedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV12syncReceivedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV12syncReceivedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conditionalSaveFailed", + "printedName": "conditionalSaveFailed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV21conditionalSaveFailedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV21conditionalSaveFailedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV21conditionalSaveFailedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV21conditionalSaveFailedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outboxStatus", + "printedName": "outboxStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV12outboxStatusSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV12outboxStatusSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV12outboxStatusSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV12outboxStatusSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subscriptionsEstablished", + "printedName": "subscriptionsEstablished", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV24subscriptionsEstablishedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV24subscriptionsEstablishedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV24subscriptionsEstablishedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV24subscriptionsEstablishedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncQueriesStarted", + "printedName": "syncQueriesStarted", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV18syncQueriesStartedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV18syncQueriesStartedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV18syncQueriesStartedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV18syncQueriesStartedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelSynced", + "printedName": "modelSynced", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV11modelSyncedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV11modelSyncedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV11modelSyncedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV11modelSyncedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syncQueriesReady", + "printedName": "syncQueriesReady", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV16syncQueriesReadySSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV16syncQueriesReadySSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV16syncQueriesReadySSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV16syncQueriesReadySSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ready", + "printedName": "ready", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV5readySSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV5readySSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV5readySSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV5readySSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "networkStatus", + "printedName": "networkStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV13networkStatusSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV13networkStatusSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV13networkStatusSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV13networkStatusSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outboxMutationEnqueued", + "printedName": "outboxMutationEnqueued", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV22outboxMutationEnqueuedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV22outboxMutationEnqueuedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV22outboxMutationEnqueuedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV22outboxMutationEnqueuedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outboxMutationProcessed", + "printedName": "outboxMutationProcessed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV23outboxMutationProcessedSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV23outboxMutationProcessedSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV23outboxMutationProcessedSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV23outboxMutationProcessedSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV9DataStoreV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV9DataStoreV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Geo", + "printedName": "Geo", + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV3GeoV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV3GeoV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Logging", + "printedName": "Logging", + "children": [ + { + "kind": "Var", + "name": "writeLogFailure", + "printedName": "writeLogFailure", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7LoggingV15writeLogFailureSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7LoggingV15writeLogFailureSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7LoggingV15writeLogFailureSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7LoggingV15writeLogFailureSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "flushLogFailure", + "printedName": "flushLogFailure", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7LoggingV15flushLogFailureSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7LoggingV15flushLogFailureSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7LoggingV15flushLogFailureSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7LoggingV15flushLogFailureSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV7LoggingV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7LoggingV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Notifications", + "printedName": "Notifications", + "children": [ + { + "kind": "TypeDecl", + "name": "Push", + "printedName": "Push", + "children": [ + { + "kind": "Var", + "name": "requestNotificationsPermissions", + "printedName": "requestNotificationsPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV07requestF11PermissionsSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV07requestF11PermissionsSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV07requestF11PermissionsSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV07requestF11PermissionsSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV13NotificationsV4PushV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV13NotificationsV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV13NotificationsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Predictions", + "printedName": "Predictions", + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV11PredictionsV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV11PredictionsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Storage", + "printedName": "Storage", + "children": [ + { + "kind": "Var", + "name": "downloadData", + "printedName": "downloadData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV12downloadDataSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV12downloadDataSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV12downloadDataSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV12downloadDataSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "downloadFile", + "printedName": "downloadFile", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV12downloadFileSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV12downloadFileSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV12downloadFileSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV12downloadFileSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getURL", + "printedName": "getURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV6getURLSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV6getURLSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV6getURLSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV6getURLSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "list", + "printedName": "list", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV4listSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV4listSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV4listSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV4listSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "remove", + "printedName": "remove", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV6removeSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV6removeSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV6removeSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV6removeSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadData", + "printedName": "uploadData", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV10uploadDataSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV10uploadDataSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV10uploadDataSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV10uploadDataSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadFile", + "printedName": "uploadFile", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV10uploadFileSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV10uploadFileSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV10uploadFileSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV10uploadFileSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV7StorageV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV7StorageV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Amplify", + "printedName": "Amplify", + "children": [ + { + "kind": "Var", + "name": "configured", + "printedName": "configured", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9EventNameVAAV10configuredSSvpZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameVAAV10configuredSSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9EventNameVAAV10configuredSSvgZ", + "mangledName": "$s7Amplify10HubPayloadV9EventNameVAAV10configuredSSvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameVAAV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameVAAV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV9EventNameV", + "mangledName": "$s7Amplify10HubPayloadV9EventNameV", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV9eventNameSSvp", + "mangledName": "$s7Amplify10HubPayloadV9eventNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV9eventNameSSvg", + "mangledName": "$s7Amplify10HubPayloadV9eventNameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV7contextypSgvp", + "mangledName": "$s7Amplify10HubPayloadV7contextypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV7contextypSgvg", + "mangledName": "$s7Amplify10HubPayloadV7contextypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10HubPayloadV4dataypSgvp", + "mangledName": "$s7Amplify10HubPayloadV4dataypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10HubPayloadV4dataypSgvg", + "mangledName": "$s7Amplify10HubPayloadV4dataypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:context:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify10HubPayloadV9eventName7context4dataACSS_ypSgAGtcfc", + "mangledName": "$s7Amplify10HubPayloadV9eventName7context4dataACSS_ypSgAGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10HubPayloadV", + "mangledName": "$s7Amplify10HubPayloadV", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "HubPayloadEventName", + "printedName": "HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify19HubPayloadEventNamea", + "mangledName": "$s7Amplify19HubPayloadEventNamea", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "HubPayloadEventNameable", + "printedName": "HubPayloadEventNameable", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify23HubPayloadEventNameableP9eventNameSSvp", + "mangledName": "$s7Amplify23HubPayloadEventNameableP9eventNameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23HubPayloadEventNameableP9eventNameSSvg", + "mangledName": "$s7Amplify23HubPayloadEventNameableP9eventNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23HubPayloadEventNameableP", + "mangledName": "$s7Amplify23HubPayloadEventNameableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "UnsubscribeToken", + "printedName": "UnsubscribeToken", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(channel:id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16UnsubscribeTokenV7channel2idAcA10HubChannelO_10Foundation4UUIDVtcfc", + "mangledName": "$s7Amplify16UnsubscribeTokenV7channel2idAcA10HubChannelO_10Foundation4UUIDVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16UnsubscribeTokenV2eeoiySbAC_ACtFZ", + "mangledName": "$s7Amplify16UnsubscribeTokenV2eeoiySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16UnsubscribeTokenV4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify16UnsubscribeTokenV4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16UnsubscribeTokenV9hashValueSivp", + "mangledName": "$s7Amplify16UnsubscribeTokenV9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16UnsubscribeTokenV9hashValueSivg", + "mangledName": "$s7Amplify16UnsubscribeTokenV9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16UnsubscribeTokenV", + "mangledName": "$s7Amplify16UnsubscribeTokenV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "children": [ + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13DefaultLoggerP3logAA0C0_pvpZ", + "mangledName": "$s7Amplify13DefaultLoggerP3logAA0C0_pvpZ", + "moduleName": "Amplify", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13DefaultLoggerP3logAA0C0_pvgZ", + "mangledName": "$s7Amplify13DefaultLoggerP3logAA0C0_pvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13DefaultLoggerP3logAA0C0_pvp", + "mangledName": "$s7Amplify13DefaultLoggerP3logAA0C0_pvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13DefaultLoggerP3logAA0C0_pvg", + "mangledName": "$s7Amplify13DefaultLoggerP3logAA0C0_pvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13DefaultLoggerPAAE3logAA0C0_pvpZ", + "mangledName": "$s7Amplify13DefaultLoggerPAAE3logAA0C0_pvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13DefaultLoggerPAAE3logAA0C0_pvgZ", + "mangledName": "$s7Amplify13DefaultLoggerPAAE3logAA0C0_pvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify13DefaultLoggerPAAE3logAA0C0_pvp", + "mangledName": "$s7Amplify13DefaultLoggerPAAE3logAA0C0_pvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify13DefaultLoggerPAAE3logAA0C0_pvg", + "mangledName": "$s7Amplify13DefaultLoggerPAAE3logAA0C0_pvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "LogLevel", + "printedName": "LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify8LogLevela", + "mangledName": "$s7Amplify8LogLevela", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "LoggingCategory", + "printedName": "LoggingCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15LoggingCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify15LoggingCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify15LoggingCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logLevel", + "printedName": "logLevel", + "children": [ + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovp", + "mangledName": "$s7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovg", + "mangledName": "$s7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovs", + "mangledName": "$s7Amplify15LoggingCategoryC8logLevelA2AC03LogE0Ovs", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingCategoryPlugin", + "printedName": "Amplify.LoggingCategoryPlugin", + "usr": "s:7Amplify21LoggingCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify15LoggingCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategoryPlugin", + "printedName": "Amplify.LoggingCategoryPlugin", + "usr": "s:7Amplify21LoggingCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify15LoggingCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify15LoggingCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC5resetyyYaF", + "mangledName": "$s7Amplify15LoggingCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15LoggingCategoryC7defaultAA6Logger_pvp", + "mangledName": "$s7Amplify15LoggingCategoryC7defaultAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC7defaultAA6Logger_pvg", + "mangledName": "$s7Amplify15LoggingCategoryC7defaultAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6logger03forC0AA6Logger_pSS_tF", + "mangledName": "$s7Amplify15LoggingCategoryC6logger03forC0AA6Logger_pSS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6logger03forC0AA6Logger_pAA0C4TypeO_tF", + "mangledName": "$s7Amplify15LoggingCategoryC6logger03forC0AA6Logger_pAA0C4TypeO_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:logLevel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6logger03forC08logLevelAA6Logger_pSS_A2AC03LogG0OtF", + "mangledName": "$s7Amplify15LoggingCategoryC6logger03forC08logLevelAA6Logger_pSS_A2AC03LogG0OtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6enableyyF", + "mangledName": "$s7Amplify15LoggingCategoryC6enableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC7disableyyF", + "mangledName": "$s7Amplify15LoggingCategoryC7disableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6logger12forNamespaceAA6Logger_pSS_tF", + "mangledName": "$s7Amplify15LoggingCategoryC6logger12forNamespaceAA6Logger_pSS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC6logger03forC00E9NamespaceAA6Logger_pSS_SStF", + "mangledName": "$s7Amplify15LoggingCategoryC6logger03forC00E9NamespaceAA6Logger_pSS_SStF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC5erroryySSyXKF", + "mangledName": "$s7Amplify15LoggingCategoryC5erroryySSyXKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC5errorADys5Error_p_tF", + "mangledName": "$s7Amplify15LoggingCategoryC5errorADys5Error_p_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warn", + "printedName": "warn(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC4warnyySSyXKF", + "mangledName": "$s7Amplify15LoggingCategoryC4warnyySSyXKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "info", + "printedName": "info(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC4infoyySSyXKF", + "mangledName": "$s7Amplify15LoggingCategoryC4infoyySSyXKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debug", + "printedName": "debug(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC5debugyySSyXKF", + "mangledName": "$s7Amplify15LoggingCategoryC5debugyySSyXKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verbose", + "printedName": "verbose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15LoggingCategoryC7verboseyySSyXKF", + "mangledName": "$s7Amplify15LoggingCategoryC7verboseyySSyXKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15LoggingCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify15LoggingCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify15LoggingCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15LoggingCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify15LoggingCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15LoggingCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify15LoggingCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify15LoggingCategoryC", + "mangledName": "$s7Amplify15LoggingCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "LoggingCategoryClientBehavior", + "printedName": "LoggingCategoryClientBehavior", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP" + }, + { + "kind": "Conformance", + "name": "Logger", + "printedName": "Logger", + "usr": "s:7Amplify6LoggerP", + "mangledName": "$s7Amplify6LoggerP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggingCategoryClientBehavior", + "printedName": "LoggingCategoryClientBehavior", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP7defaultAA6Logger_pvp", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP7defaultAA6Logger_pvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP7defaultAA6Logger_pvg", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP7defaultAA6Logger_pvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:logLevel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP6logger03forC08logLevelAA6Logger_pSS_A2AC03LogI0OtF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP6logger03forC08logLevelAA6Logger_pSS_A2AC03LogI0OtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP6logger03forC0AA6Logger_pSS_tF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP6logger03forC0AA6Logger_pSS_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP6enableyyF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP6enableyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP7disableyyF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP7disableyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP6logger12forNamespaceAA6Logger_pSS_tF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP6logger12forNamespaceAA6Logger_pSS_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP6logger03forC00G9NamespaceAA6Logger_pSS_SStF", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP6logger03forC00G9NamespaceAA6Logger_pSS_SStF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ + { + "kind": "Var", + "name": "logLevel", + "printedName": "logLevel", + "children": [ + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify6LoggerP8logLevelA2AC03LogD0Ovp", + "mangledName": "$s7Amplify6LoggerP8logLevelA2AC03LogD0Ovp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify6LoggerP8logLevelA2AC03LogD0Ovg", + "mangledName": "$s7Amplify6LoggerP8logLevelA2AC03LogD0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify6LoggerP8logLevelA2AC03LogD0Ovs", + "mangledName": "$s7Amplify6LoggerP8logLevelA2AC03LogD0Ovs", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP5erroryySSyXKF", + "mangledName": "$s7Amplify6LoggerP5erroryySSyXKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP5errorADys5Error_p_tF", + "mangledName": "$s7Amplify6LoggerP5errorADys5Error_p_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warn", + "printedName": "warn(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP4warnyySSyXKF", + "mangledName": "$s7Amplify6LoggerP4warnyySSyXKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "info", + "printedName": "info(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP4infoyySSyXKF", + "mangledName": "$s7Amplify6LoggerP4infoyySSyXKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debug", + "printedName": "debug(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP5debugyySSyXKF", + "mangledName": "$s7Amplify6LoggerP5debugyySSyXKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verbose", + "printedName": "verbose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify6LoggerP7verboseyySSyXKF", + "mangledName": "$s7Amplify6LoggerP7verboseyySSyXKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify6LoggerP", + "mangledName": "$s7Amplify6LoggerP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "LoggingCategoryConfiguration", + "printedName": "LoggingCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify28LoggingCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify28LoggingCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategoryConfiguration", + "printedName": "Amplify.LoggingCategoryConfiguration", + "usr": "s:7Amplify28LoggingCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify28LoggingCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify28LoggingCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategoryConfiguration", + "printedName": "Amplify.LoggingCategoryConfiguration", + "usr": "s:7Amplify28LoggingCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify28LoggingCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify28LoggingCategoryConfigurationV", + "mangledName": "$s7Amplify28LoggingCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggingCategoryPlugin", + "printedName": "LoggingCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21LoggingCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify21LoggingCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21LoggingCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify21LoggingCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21LoggingCategoryPluginP", + "mangledName": "$s7Amplify21LoggingCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "LoggingCategoryClientBehavior", + "printedName": "LoggingCategoryClientBehavior", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoggingError", + "printedName": "LoggingError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.LoggingError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.LoggingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.LoggingError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingError", + "printedName": "Amplify.LoggingError", + "usr": "s:7Amplify12LoggingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.LoggingError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.LoggingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingError", + "printedName": "Amplify.LoggingError", + "usr": "s:7Amplify12LoggingErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12LoggingErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12LoggingErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.LoggingError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> Amplify.LoggingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> Amplify.LoggingError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingError", + "printedName": "Amplify.LoggingError", + "usr": "s:7Amplify12LoggingErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.LoggingError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.LoggingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingError", + "printedName": "Amplify.LoggingError", + "usr": "s:7Amplify12LoggingErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12LoggingErrorO7unknownyACSS_s0C0_pSgtcACmF", + "mangledName": "$s7Amplify12LoggingErrorO7unknownyACSS_s0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify12LoggingErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify12LoggingErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12LoggingErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify12LoggingErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify12LoggingErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify12LoggingErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12LoggingErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify12LoggingErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12LoggingErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify12LoggingErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12LoggingErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify12LoggingErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingError", + "printedName": "Amplify.LoggingError", + "usr": "s:7Amplify12LoggingErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12LoggingErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify12LoggingErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify12LoggingErrorO", + "mangledName": "$s7Amplify12LoggingErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Notifications", + "printedName": "Notifications", + "children": [ + { + "kind": "TypeDecl", + "name": "Push", + "printedName": "Push", + "children": [ + { + "kind": "TypeAlias", + "name": "UserInfo", + "printedName": "UserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify13NotificationsO4PushO8UserInfoa", + "mangledName": "$s7Amplify13NotificationsO4PushO8UserInfoa", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify13NotificationsO4PushO", + "mangledName": "$s7Amplify13NotificationsO4PushO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify13NotificationsO", + "mangledName": "$s7Amplify13NotificationsO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "NotificationsCategory", + "printedName": "NotificationsCategory", + "children": [ + { + "kind": "Var", + "name": "Push", + "printedName": "Push", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsCategory", + "printedName": "Amplify.PushNotificationsCategory", + "usr": "s:7Amplify25PushNotificationsCategoryC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21NotificationsCategoryC4PushAA0dbC0Cvp", + "mangledName": "$s7Amplify21NotificationsCategoryC4PushAA0dbC0Cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsCategory", + "printedName": "Amplify.PushNotificationsCategory", + "usr": "s:7Amplify25PushNotificationsCategoryC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21NotificationsCategoryC4PushAA0dbC0Cvg", + "mangledName": "$s7Amplify21NotificationsCategoryC4PushAA0dbC0Cvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify21NotificationsCategoryC", + "mangledName": "$s7Amplify21NotificationsCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "TypeDecl", + "name": "NotificationsCategoryConfiguration", + "printedName": "NotificationsCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationsCategoryConfiguration", + "printedName": "Amplify.NotificationsCategoryConfiguration", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationsCategoryConfiguration", + "printedName": "Amplify.NotificationsCategoryConfiguration", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV", + "mangledName": "$s7Amplify34NotificationsCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NotificationsSubcategoryBehaviour", + "printedName": "NotificationsSubcategoryBehaviour", + "declKind": "Protocol", + "usr": "s:7Amplify33NotificationsSubcategoryBehaviourP", + "mangledName": "$s7Amplify33NotificationsSubcategoryBehaviourP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PushNotificationsError", + "printedName": "PushNotificationsError", + "children": [ + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PushNotificationsError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PushNotificationsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PushNotificationsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22PushNotificationsErrorO13configurationyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify22PushNotificationsErrorO13configurationyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "network", + "printedName": "network", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PushNotificationsError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PushNotificationsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PushNotificationsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22PushNotificationsErrorO7networkyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify22PushNotificationsErrorO7networkyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PushNotificationsError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PushNotificationsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PushNotificationsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22PushNotificationsErrorO7serviceyACSS_SSs0D0_pSgtcACmF", + "mangledName": "$s7Amplify22PushNotificationsErrorO7serviceyACSS_SSs0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PushNotificationsError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> Amplify.PushNotificationsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PushNotificationsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PushNotificationsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify22PushNotificationsErrorO7unknownyACSS_s0D0_pSgtcACmF", + "mangledName": "$s7Amplify22PushNotificationsErrorO7unknownyACSS_s0D0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify22PushNotificationsErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify22PushNotificationsErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22PushNotificationsErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify22PushNotificationsErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify22PushNotificationsErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify22PushNotificationsErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22PushNotificationsErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify22PushNotificationsErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify22PushNotificationsErrorO010underlyingD0s0D0_pSgvp", + "mangledName": "$s7Amplify22PushNotificationsErrorO010underlyingD0s0D0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify22PushNotificationsErrorO010underlyingD0s0D0_pSgvg", + "mangledName": "$s7Amplify22PushNotificationsErrorO010underlyingD0s0D0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsError", + "printedName": "Amplify.PushNotificationsError", + "usr": "s:7Amplify22PushNotificationsErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify22PushNotificationsErrorO16errorDescription18recoverySuggestion0E0ACSS_SSs0D0_ptcfc", + "mangledName": "$s7Amplify22PushNotificationsErrorO16errorDescription18recoverySuggestion0E0ACSS_SSs0D0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify22PushNotificationsErrorO", + "mangledName": "$s7Amplify22PushNotificationsErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PushNotificationsCategory", + "printedName": "PushNotificationsCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25PushNotificationsCategoryC12categoryTypeAA0dF0Ovp", + "mangledName": "$s7Amplify25PushNotificationsCategoryC12categoryTypeAA0dF0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25PushNotificationsCategoryC12categoryTypeAA0dF0Ovg", + "mangledName": "$s7Amplify25PushNotificationsCategoryC12categoryTypeAA0dF0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PushNotificationsCategoryPlugin", + "printedName": "Amplify.PushNotificationsCategoryPlugin", + "usr": "s:7Amplify31PushNotificationsCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC3add6pluginyAA0bcD6Plugin_p_tKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC3add6pluginyAA0bcD6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PushNotificationsCategoryPlugin", + "printedName": "Amplify.PushNotificationsCategoryPlugin", + "usr": "s:7Amplify31PushNotificationsCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC9getPlugin3forAA0bcdF0_pSS_tKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC9getPlugin3forAA0bcdF0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC5resetyyYaF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "identifyUser", + "printedName": "identifyUser(userId:userProfile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfile?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfile", + "printedName": "Amplify.UserProfile", + "usr": "s:7Amplify11UserProfileP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC12identifyUser6userId0G7ProfileySS_AA0fI0_pSgtYaKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC12identifyUser6userId0G7ProfileySS_AA0fI0_pSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerDevice", + "printedName": "registerDevice(apnsToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC14registerDevice9apnsTokeny10Foundation4DataV_tYaKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC14registerDevice9apnsTokeny10Foundation4DataV_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordNotificationReceived", + "printedName": "recordNotificationReceived(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "UserInfo", + "printedName": "Amplify.Notifications.Push.UserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC26recordNotificationReceivedyySDySSypGYaKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC26recordNotificationReceivedyySDySSypGYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordNotificationOpened", + "printedName": "recordNotificationOpened(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UNNotificationResponse", + "printedName": "UserNotifications.UNNotificationResponse", + "usr": "c:objc(cs)UNNotificationResponse" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25PushNotificationsCategoryC24recordNotificationOpenedyySo22UNNotificationResponseCYaKF", + "mangledName": "$s7Amplify25PushNotificationsCategoryC24recordNotificationOpenedyySo22UNNotificationResponseCYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25PushNotificationsCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify25PushNotificationsCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25PushNotificationsCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify25PushNotificationsCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25PushNotificationsCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify25PushNotificationsCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25PushNotificationsCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify25PushNotificationsCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify25PushNotificationsCategoryC", + "mangledName": "$s7Amplify25PushNotificationsCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "PushNotificationsCategoryBehaviour", + "printedName": "PushNotificationsCategoryBehaviour", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP" + }, + { + "kind": "Conformance", + "name": "NotificationsSubcategoryBehaviour", + "printedName": "NotificationsSubcategoryBehaviour", + "usr": "s:7Amplify33NotificationsSubcategoryBehaviourP", + "mangledName": "$s7Amplify33NotificationsSubcategoryBehaviourP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PushNotificationsCategoryBehaviour", + "printedName": "PushNotificationsCategoryBehaviour", + "children": [ + { + "kind": "Function", + "name": "identifyUser", + "printedName": "identifyUser(userId:userProfile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfile?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfile", + "printedName": "Amplify.UserProfile", + "usr": "s:7Amplify11UserProfileP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP12identifyUser6userId0H7ProfileySS_AA0gJ0_pSgtYaKF", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP12identifyUser6userId0H7ProfileySS_AA0gJ0_pSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "registerDevice", + "printedName": "registerDevice(apnsToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP14registerDevice9apnsTokeny10Foundation4DataV_tYaKF", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP14registerDevice9apnsTokeny10Foundation4DataV_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordNotificationReceived", + "printedName": "recordNotificationReceived(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "UserInfo", + "printedName": "Amplify.Notifications.Push.UserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP26recordNotificationReceivedyySDySSypGYaKF", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP26recordNotificationReceivedyySDySSypGYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordNotificationOpened", + "printedName": "recordNotificationOpened(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UNNotificationResponse", + "printedName": "UserNotifications.UNNotificationResponse", + "usr": "c:objc(cs)UNNotificationResponse" + } + ], + "declKind": "Func", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP24recordNotificationOpenedyySo22UNNotificationResponseCYaKF", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP24recordNotificationOpenedyySo22UNNotificationResponseCYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "NotificationsSubcategoryBehaviour", + "printedName": "NotificationsSubcategoryBehaviour", + "usr": "s:7Amplify33NotificationsSubcategoryBehaviourP", + "mangledName": "$s7Amplify33NotificationsSubcategoryBehaviourP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PushNotificationsCategoryPlugin", + "printedName": "PushNotificationsCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify31PushNotificationsCategoryPluginPAAE12categoryTypeAA0dG0Ovp", + "mangledName": "$s7Amplify31PushNotificationsCategoryPluginPAAE12categoryTypeAA0dG0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify31PushNotificationsCategoryPluginPAAE12categoryTypeAA0dG0Ovg", + "mangledName": "$s7Amplify31PushNotificationsCategoryPluginPAAE12categoryTypeAA0dG0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify31PushNotificationsCategoryPluginP", + "mangledName": "$s7Amplify31PushNotificationsCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "PushNotificationsCategoryBehaviour", + "printedName": "PushNotificationsCategoryBehaviour", + "usr": "s:7Amplify34PushNotificationsCategoryBehaviourP", + "mangledName": "$s7Amplify34PushNotificationsCategoryBehaviourP" + }, + { + "kind": "Conformance", + "name": "NotificationsSubcategoryBehaviour", + "printedName": "NotificationsSubcategoryBehaviour", + "usr": "s:7Amplify33NotificationsSubcategoryBehaviourP", + "mangledName": "$s7Amplify33NotificationsSubcategoryBehaviourP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PredictionsError", + "printedName": "PredictionsError", + "children": [ + { + "kind": "Var", + "name": "client", + "printedName": "client", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PredictionsError.Type) -> (Amplify.PredictionsError.ClientError) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PredictionsError.ClientError) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PredictionsError.ClientError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PredictionsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PredictionsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16PredictionsErrorO6clientyA2C06ClientC0VcACmF", + "mangledName": "$s7Amplify16PredictionsErrorO6clientyA2C06ClientC0VcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PredictionsError.Type) -> (Amplify.PredictionsError.ServiceError) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PredictionsError.ServiceError) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PredictionsError.ServiceError)", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PredictionsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PredictionsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16PredictionsErrorO7serviceyA2C07ServiceC0VcACmF", + "mangledName": "$s7Amplify16PredictionsErrorO7serviceyA2C07ServiceC0VcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PredictionsError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PredictionsError", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PredictionsError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PredictionsError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify16PredictionsErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify16PredictionsErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "ClientError", + "printedName": "ClientError", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + }, + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V2eeoiySbAE_AEtFZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V2eeoiySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V11descriptionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V11descriptionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V11descriptionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V11descriptionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V18recoverySuggestionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V18recoverySuggestionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V18recoverySuggestionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V18recoverySuggestionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:recoverySuggestion:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V11description18recoverySuggestion010underlyingC0AESS_SSs0C0_pSgtcfc", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V11description18recoverySuggestion010underlyingC0AESS_SSs0C0_pSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "imageNotFound", + "printedName": "imageNotFound", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V13imageNotFoundAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V13imageNotFoundAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V13imageNotFoundAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V13imageNotFoundAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidRegion", + "printedName": "invalidRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V13invalidRegionAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V13invalidRegionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V13invalidRegionAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V13invalidRegionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingSourceLanguage", + "printedName": "missingSourceLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21missingSourceLanguageAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21missingSourceLanguageAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21missingSourceLanguageAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21missingSourceLanguageAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingTargetLanguage", + "printedName": "missingTargetLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21missingTargetLanguageAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21missingTargetLanguageAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21missingTargetLanguageAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21missingTargetLanguageAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onlineIdentityServiceUnavailable", + "printedName": "onlineIdentityServiceUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V32onlineIdentityServiceUnavailableAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V32onlineIdentityServiceUnavailableAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V32onlineIdentityServiceUnavailableAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V32onlineIdentityServiceUnavailableAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineIdentityServiceUnavailable", + "printedName": "offlineIdentityServiceUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V33offlineIdentityServiceUnavailableAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V33offlineIdentityServiceUnavailableAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V33offlineIdentityServiceUnavailableAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V33offlineIdentityServiceUnavailableAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onlineInterpretServiceUnavailable", + "printedName": "onlineInterpretServiceUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V33onlineInterpretServiceUnavailableAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V33onlineInterpretServiceUnavailableAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V33onlineInterpretServiceUnavailableAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V33onlineInterpretServiceUnavailableAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineInterpretServiceUnavailable", + "printedName": "offlineInterpretServiceUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V34offlineInterpretServiceUnavailableAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V34offlineInterpretServiceUnavailableAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V34offlineInterpretServiceUnavailableAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V34offlineInterpretServiceUnavailableAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unableToInterpretText", + "printedName": "unableToInterpretText", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21unableToInterpretTextAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21unableToInterpretTextAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ClientError", + "printedName": "Amplify.PredictionsError.ClientError", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V21unableToInterpretTextAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V21unableToInterpretTextAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16PredictionsErrorO06ClientC0V", + "mangledName": "$s7Amplify16PredictionsErrorO06ClientC0V", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServiceError", + "printedName": "ServiceError", + "children": [ + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + }, + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V2eeoiySbAE_AEtFZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V2eeoiySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V11descriptionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V11descriptionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V11descriptionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V11descriptionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V18recoverySuggestionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V18recoverySuggestionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V18recoverySuggestionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V18recoverySuggestionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "httpStatusCode", + "printedName": "httpStatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V14httpStatusCodeSiSgvp", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V14httpStatusCodeSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V14httpStatusCodeSiSgvg", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V14httpStatusCodeSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:recoverySuggestion:httpStatusCode:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V11description18recoverySuggestion14httpStatusCode010underlyingC0AESS_SSSiSgs0C0_pSgtcfc", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V11description18recoverySuggestion14httpStatusCode010underlyingC0AESS_SSSiSgs0C0_pSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "translationFailed", + "printedName": "translationFailed", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V17translationFailedAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V17translationFailedAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V17translationFailedAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V17translationFailedAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalServerError", + "printedName": "internalServerError", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V014internalServerC0AEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V014internalServerC0AEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V014internalServerC0AEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V014internalServerC0AEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "detectedLanguageLowConfidence", + "printedName": "detectedLanguageLowConfidence", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V29detectedLanguageLowConfidenceAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V29detectedLanguageLowConfidenceAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V29detectedLanguageLowConfidenceAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V29detectedLanguageLowConfidenceAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidRequest", + "printedName": "invalidRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V14invalidRequestAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V14invalidRequestAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V14invalidRequestAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V14invalidRequestAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "resourceNotFound", + "printedName": "resourceNotFound", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V16resourceNotFoundAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V16resourceNotFoundAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V16resourceNotFoundAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V16resourceNotFoundAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textSizeLimitExceeded", + "printedName": "textSizeLimitExceeded", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V21textSizeLimitExceededAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V21textSizeLimitExceededAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V21textSizeLimitExceededAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V21textSizeLimitExceededAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unsupportedLanguagePair", + "printedName": "unsupportedLanguagePair", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V23unsupportedLanguagePairAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V23unsupportedLanguagePairAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V23unsupportedLanguagePairAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V23unsupportedLanguagePairAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "throttling", + "printedName": "throttling", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V10throttlingAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V10throttlingAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V10throttlingAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V10throttlingAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unsupportedLanguage", + "printedName": "unsupportedLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V19unsupportedLanguageAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V19unsupportedLanguageAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V19unsupportedLanguageAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V19unsupportedLanguageAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidSampleRate", + "printedName": "invalidSampleRate", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V17invalidSampleRateAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V17invalidSampleRateAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V17invalidSampleRateAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V17invalidSampleRateAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessDenied", + "printedName": "accessDenied", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V12accessDeniedAEvpZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V12accessDeniedAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServiceError", + "printedName": "Amplify.PredictionsError.ServiceError", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V12accessDeniedAEvgZ", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V12accessDeniedAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16PredictionsErrorO07ServiceC0V", + "mangledName": "$s7Amplify16PredictionsErrorO07ServiceC0V", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify16PredictionsErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify16PredictionsErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16PredictionsErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify16PredictionsErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16PredictionsErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify16PredictionsErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsError", + "printedName": "Amplify.PredictionsError", + "usr": "s:7Amplify16PredictionsErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16PredictionsErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify16PredictionsErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify16PredictionsErrorO", + "mangledName": "$s7Amplify16PredictionsErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultNetworkPolicy", + "printedName": "DefaultNetworkPolicy", + "children": [ + { + "kind": "Var", + "name": "offline", + "printedName": "offline", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DefaultNetworkPolicy.Type) -> Amplify.DefaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DefaultNetworkPolicy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DefaultNetworkPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20DefaultNetworkPolicyO7offlineyA2CmF", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO7offlineyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "online", + "printedName": "online", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DefaultNetworkPolicy.Type) -> Amplify.DefaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DefaultNetworkPolicy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DefaultNetworkPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20DefaultNetworkPolicyO6onlineyA2CmF", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO6onlineyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "auto", + "printedName": "auto", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.DefaultNetworkPolicy.Type) -> Amplify.DefaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.DefaultNetworkPolicy.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.DefaultNetworkPolicy.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify20DefaultNetworkPolicyO4autoyA2CmF", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO4autoyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20DefaultNetworkPolicyO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify20DefaultNetworkPolicyO4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20DefaultNetworkPolicyO9hashValueSivp", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20DefaultNetworkPolicyO9hashValueSivg", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify20DefaultNetworkPolicyO", + "mangledName": "$s7Amplify20DefaultNetworkPolicyO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedText", + "printedName": "IdentifiedText", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14IdentifiedTextP4textSSvp", + "mangledName": "$s7Amplify14IdentifiedTextP4textSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14IdentifiedTextP4textSSvg", + "mangledName": "$s7Amplify14IdentifiedTextP4textSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14IdentifiedTextP11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify14IdentifiedTextP11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14IdentifiedTextP11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify14IdentifiedTextP11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14IdentifiedTextP7polygonAA11PredictionsO7PolygonVSgvp", + "mangledName": "$s7Amplify14IdentifiedTextP7polygonAA11PredictionsO7PolygonVSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14IdentifiedTextP7polygonAA11PredictionsO7PolygonVSgvg", + "mangledName": "$s7Amplify14IdentifiedTextP7polygonAA11PredictionsO7PolygonVSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "page", + "printedName": "page", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify14IdentifiedTextP4pageSiSgvp", + "mangledName": "$s7Amplify14IdentifiedTextP4pageSiSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify14IdentifiedTextP4pageSiSgvg", + "mangledName": "$s7Amplify14IdentifiedTextP4pageSiSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify14IdentifiedTextP", + "mangledName": "$s7Amplify14IdentifiedTextP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Predictions", + "printedName": "Predictions", + "children": [ + { + "kind": "TypeDecl", + "name": "Attribute", + "printedName": "Attribute", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9AttributeV4nameSSvp", + "mangledName": "$s7Amplify11PredictionsO9AttributeV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9AttributeV4nameSSvg", + "mangledName": "$s7Amplify11PredictionsO9AttributeV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9AttributeV5valueSbvp", + "mangledName": "$s7Amplify11PredictionsO9AttributeV5valueSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9AttributeV5valueSbvg", + "mangledName": "$s7Amplify11PredictionsO9AttributeV5valueSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "confidence", + "printedName": "confidence", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9AttributeV10confidenceSdvp", + "mangledName": "$s7Amplify11PredictionsO9AttributeV10confidenceSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9AttributeV10confidenceSdvg", + "mangledName": "$s7Amplify11PredictionsO9AttributeV10confidenceSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:value:confidence:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "Amplify.Predictions.Attribute", + "usr": "s:7Amplify11PredictionsO9AttributeV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9AttributeV4name5value10confidenceAESS_SbSdtcfc", + "mangledName": "$s7Amplify11PredictionsO9AttributeV4name5value10confidenceAESS_SbSdtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9AttributeV", + "mangledName": "$s7Amplify11PredictionsO9AttributeV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "BoundedKeyValue", + "printedName": "BoundedKeyValue", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV3keySSvp", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV3keySSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV3keySSvg", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV5valueSSvp", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV5valueSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV5valueSSvg", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV5valueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSelected", + "printedName": "isSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV10isSelectedSbvp", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV10isSelectedSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV10isSelectedSbvg", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV10isSelectedSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV7polygonAC7PolygonVvp", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV7polygonAC7PolygonVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV7polygonAC7PolygonVvg", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV7polygonAC7PolygonVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:value:isSelected:boundingBox:polygon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundedKeyValue", + "printedName": "Amplify.Predictions.BoundedKeyValue", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV3key5value10isSelected11boundingBox7polygonAESS_SSSbSo6CGRectVAC7PolygonVtcfc", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV3key5value10isSelected11boundingBox7polygonAESS_SSSbSo6CGRectVAC7PolygonVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV", + "mangledName": "$s7Amplify11PredictionsO15BoundedKeyValueV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Celebrity", + "printedName": "Celebrity", + "children": [ + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Celebrity.Metadata", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV8metadataAE8MetadataVvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8metadataAE8MetadataVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Celebrity.Metadata", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8metadataAE8MetadataVvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8metadataAE8MetadataVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "landmarks", + "printedName": "landmarks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV9landmarksSayAC8LandmarkVGvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV9landmarksSayAC8LandmarkVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV9landmarksSayAC8LandmarkVGvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV9landmarksSayAC8LandmarkVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:boundingBox:landmarks:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Celebrity", + "printedName": "Amplify.Predictions.Celebrity", + "usr": "s:7Amplify11PredictionsO9CelebrityV" + }, + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Celebrity.Metadata", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8metadata11boundingBox9landmarksA2E8MetadataV_So6CGRectVSayAC8LandmarkVGtcfc", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8metadata11boundingBox9landmarksA2E8MetadataV_So6CGRectVSayAC8LandmarkVGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Metadata", + "printedName": "Metadata", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4nameSSvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4nameSSvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV10identifierSSvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV10identifierSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV10identifierSSvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV10identifierSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urls", + "printedName": "urls", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4urlsSay10Foundation3URLVGvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4urlsSay10Foundation3URLVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4urlsSay10Foundation3URLVGvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4urlsSay10Foundation3URLVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pose", + "printedName": "pose", + "children": [ + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4poseAC4PoseVvp", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4poseAC4PoseVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4poseAC4PoseVvg", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4poseAC4PoseVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:identifier:urls:pose:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Celebrity.Metadata", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV4name10identifier4urls4poseAGSS_SSSay10Foundation3URLVGAC4PoseVtcfc", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV4name10identifier4urls4poseAGSS_SSSay10Foundation3URLVGAC4PoseVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9CelebrityV8MetadataV", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV8MetadataV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9CelebrityV", + "mangledName": "$s7Amplify11PredictionsO9CelebrityV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Emotion", + "printedName": "Emotion", + "children": [ + { + "kind": "Var", + "name": "emotion", + "printedName": "emotion", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV7emotionAE4KindVvp", + "mangledName": "$s7Amplify11PredictionsO7EmotionV7emotionAE4KindVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV7emotionAE4KindVvg", + "mangledName": "$s7Amplify11PredictionsO7EmotionV7emotionAE4KindVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "confidence", + "printedName": "confidence", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV10confidenceSdvp", + "mangledName": "$s7Amplify11PredictionsO7EmotionV10confidenceSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV10confidenceSdvg", + "mangledName": "$s7Amplify11PredictionsO7EmotionV10confidenceSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(emotion:confidence:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Emotion", + "printedName": "Amplify.Predictions.Emotion", + "usr": "s:7Amplify11PredictionsO7EmotionV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7EmotionV7emotion10confidenceA2E4KindV_Sdtcfc", + "mangledName": "$s7Amplify11PredictionsO7EmotionV7emotion10confidenceA2E4KindV_Sdtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV7unknownAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV7unknownAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV7unknownAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV7unknownAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "angry", + "printedName": "angry", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV5angryAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV5angryAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV5angryAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV5angryAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "calm", + "printedName": "calm", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV4calmAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV4calmAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV4calmAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV4calmAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "confused", + "printedName": "confused", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV8confusedAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV8confusedAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV8confusedAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV8confusedAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "disgusted", + "printedName": "disgusted", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV9disgustedAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV9disgustedAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV9disgustedAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV9disgustedAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fear", + "printedName": "fear", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV4fearAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV4fearAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV4fearAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV4fearAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "happy", + "printedName": "happy", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV5happyAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV5happyAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV5happyAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV5happyAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sad", + "printedName": "sad", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV3sadAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV3sadAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV3sadAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV3sadAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "surprised", + "printedName": "surprised", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV9surprisedAGvpZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV9surprisedAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV9surprisedAGvgZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV9surprisedAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Emotion.Kind", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7EmotionV4KindV", + "mangledName": "$s7Amplify11PredictionsO7EmotionV4KindV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7EmotionV", + "mangledName": "$s7Amplify11PredictionsO7EmotionV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Entity", + "printedName": "Entity", + "children": [ + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "landmarks", + "printedName": "landmarks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV9landmarksSayAC8LandmarkVGvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV9landmarksSayAC8LandmarkVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV9landmarksSayAC8LandmarkVGvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV9landmarksSayAC8LandmarkVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.ClosedRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:SN" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV8ageRangeSNySiGSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV8ageRangeSNySiGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.ClosedRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:SN" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV8ageRangeSNySiGSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV8ageRangeSNySiGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attributes", + "printedName": "attributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Attribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Attribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "Amplify.Predictions.Attribute", + "usr": "s:7Amplify11PredictionsO9AttributeV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV10attributesSayAC9AttributeVGSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV10attributesSayAC9AttributeVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Attribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Attribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "Amplify.Predictions.Attribute", + "usr": "s:7Amplify11PredictionsO9AttributeV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV10attributesSayAC9AttributeVGSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV10attributesSayAC9AttributeVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.GenderAttribute?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenderAttribute", + "printedName": "Amplify.Predictions.GenderAttribute", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV6genderAC15GenderAttributeVSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV6genderAC15GenderAttributeVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.GenderAttribute?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenderAttribute", + "printedName": "Amplify.Predictions.GenderAttribute", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV6genderAC15GenderAttributeVSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV6genderAC15GenderAttributeVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV8metadataAE8MetadataVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV8metadataAE8MetadataVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV8metadataAE8MetadataVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV8metadataAE8MetadataVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emotions", + "printedName": "emotions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Emotion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Emotion]", + "children": [ + { + "kind": "TypeNominal", + "name": "Emotion", + "printedName": "Amplify.Predictions.Emotion", + "usr": "s:7Amplify11PredictionsO7EmotionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV8emotionsSayAC7EmotionVGSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV8emotionsSayAC7EmotionVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Emotion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Emotion]", + "children": [ + { + "kind": "TypeNominal", + "name": "Emotion", + "printedName": "Amplify.Predictions.Emotion", + "usr": "s:7Amplify11PredictionsO7EmotionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV8emotionsSayAC7EmotionVGSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV8emotionsSayAC7EmotionVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundingBox:landmarks:ageRange:attributes:gender:metadata:emotions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Entity", + "printedName": "Amplify.Predictions.Entity", + "usr": "s:7Amplify11PredictionsO6EntityV" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Landmark]", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.ClosedRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:SN" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Attribute]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Attribute]", + "children": [ + { + "kind": "TypeNominal", + "name": "Attribute", + "printedName": "Amplify.Predictions.Attribute", + "usr": "s:7Amplify11PredictionsO9AttributeV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.GenderAttribute?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenderAttribute", + "printedName": "Amplify.Predictions.GenderAttribute", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Emotion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Emotion]", + "children": [ + { + "kind": "TypeNominal", + "name": "Emotion", + "printedName": "Amplify.Predictions.Emotion", + "usr": "s:7Amplify11PredictionsO7EmotionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6EntityV11boundingBox9landmarks8ageRange10attributes6gender8metadata8emotionsAESo6CGRectV_SayAC8LandmarkVGSNySiGSgSayAC9AttributeVGSgAC06GenderO0VSgAE8MetadataVSayAC7EmotionVGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO6EntityV11boundingBox9landmarks8ageRange10attributes6gender8metadata8emotionsAESo6CGRectV_SayAC8LandmarkVGSNySiGSgSayAC9AttributeVGSgAC06GenderO0VSgAE8MetadataVSayAC7EmotionVGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "DetectionResult", + "printedName": "DetectionResult", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV4typeAE4KindVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV4typeAE4KindVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV4typeAE4KindVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV4typeAE4KindVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetText", + "printedName": "targetText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV10targetTextSSvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV10targetTextSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV10targetTextSSvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV10targetTextSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "score", + "printedName": "score", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV5scoreSfSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV5scoreSfSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV5scoreSfSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV5scoreSfSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "range", + "printedName": "range", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV5rangeSnySS5IndexVGvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV5rangeSnySS5IndexVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV5rangeSnySS5IndexVGvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV5rangeSnySS5IndexVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:targetText:score:range:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Entity.DetectionResult", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV4type10targetText5score5rangeAgE4KindV_SSSfSgSnySS5IndexVGtcfc", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV4type10targetText5score5rangeAgE4KindV_SSSfSgSnySS5IndexVGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV", + "mangledName": "$s7Amplify11PredictionsO6EntityV15DetectionResultV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV7unknownAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV7unknownAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV7unknownAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV7unknownAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "commercialItem", + "printedName": "commercialItem", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV14commercialItemAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV14commercialItemAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV14commercialItemAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV14commercialItemAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "date", + "printedName": "date", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV4dateAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV4dateAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV4dateAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV4dateAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5eventAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5eventAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5eventAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5eventAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV8locationAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV8locationAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV8locationAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV8locationAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "organization", + "printedName": "organization", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV12organizationAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV12organizationAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV12organizationAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV12organizationAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5otherAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5otherAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5otherAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5otherAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "person", + "printedName": "person", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV6personAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV6personAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV6personAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV6personAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quantity", + "printedName": "quantity", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV8quantityAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV8quantityAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV8quantityAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV8quantityAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "title", + "printedName": "title", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5titleAGvpZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5titleAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV5titleAGvgZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV5titleAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Entity.Kind", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV9hashValueSivp", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV9hashValueSivg", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV4KindV", + "mangledName": "$s7Amplify11PredictionsO6EntityV4KindV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Match", + "printedName": "Match", + "children": [ + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Match.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8metadataAG8MetadataVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8metadataAG8MetadataVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Match.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8metadataAG8MetadataVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8metadataAG8MetadataVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundingBox:metadata:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Match", + "printedName": "Amplify.Predictions.Entity.Match", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Match.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV11boundingBox8metadataAGSo6CGRectV_AG8MetadataVtcfc", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV11boundingBox8metadataAGSo6CGRectV_AG8MetadataVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Metadata", + "printedName": "Metadata", + "children": [ + { + "kind": "Var", + "name": "externalImageId", + "printedName": "externalImageId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageIdSSSgvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageIdSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageIdSSSgvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "similarity", + "printedName": "similarity", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV10similaritySdvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV10similaritySdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV10similaritySdvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV10similaritySdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(externalImageId:similarity:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Match.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageId10similarityAISSSg_Sdtcfc", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV15externalImageId10similarityAISSSg_Sdtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV8MetadataV", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV8MetadataV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV", + "mangledName": "$s7Amplify11PredictionsO6EntityV5MatchV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Metadata", + "printedName": "Metadata", + "children": [ + { + "kind": "Var", + "name": "confidence", + "printedName": "confidence", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV10confidenceSdvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV10confidenceSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV10confidenceSdvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV10confidenceSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pose", + "printedName": "pose", + "children": [ + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV4poseAC4PoseVvp", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV4poseAC4PoseVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV4poseAC4PoseVvg", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV4poseAC4PoseVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(confidence:pose:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Entity.Metadata", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV10confidence4poseAGSd_AC4PoseVtcfc", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV10confidence4poseAGSd_AC4PoseVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV8MetadataV", + "mangledName": "$s7Amplify11PredictionsO6EntityV8MetadataV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6EntityV", + "mangledName": "$s7Amplify11PredictionsO6EntityV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Gender", + "printedName": "Gender", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6GenderV7unknownAEvpZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV7unknownAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6GenderV7unknownAEvgZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV7unknownAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "female", + "printedName": "female", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6GenderV6femaleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV6femaleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6GenderV6femaleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV6femaleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "male", + "printedName": "male", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6GenderV4maleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV4maleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6GenderV4maleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO6GenderV4maleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6GenderV", + "mangledName": "$s7Amplify11PredictionsO6GenderV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "GenderAttribute", + "printedName": "GenderAttribute", + "children": [ + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvp", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvg", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvs", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV6genderAC0C0Vvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "confidence", + "printedName": "confidence", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV10confidenceSdvp", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV10confidenceSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV10confidenceSdvg", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV10confidenceSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV10confidenceSdvs", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV10confidenceSdvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gender:confidence:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenderAttribute", + "printedName": "Amplify.Predictions.GenderAttribute", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV" + }, + { + "kind": "TypeNominal", + "name": "Gender", + "printedName": "Amplify.Predictions.Gender", + "usr": "s:7Amplify11PredictionsO6GenderV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV6gender10confidenceAeC0C0V_Sdtcfc", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV6gender10confidenceAeC0C0V_Sdtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO15GenderAttributeV", + "mangledName": "$s7Amplify11PredictionsO15GenderAttributeV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLine", + "printedName": "IdentifiedLine", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV7polygonAC7PolygonVSgvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV7polygonAC7PolygonVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV7polygonAC7PolygonVSgvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV7polygonAC7PolygonVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "page", + "printedName": "page", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV4pageSiSgvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV4pageSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV4pageSiSgvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV4pageSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(text:boundingBox:polygon:page:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV4text11boundingBox7polygon4pageAESS_So6CGRectVAC7PolygonVSgSiSgtcfc", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV4text11boundingBox7polygon4pageAESS_So6CGRectVAC7PolygonVSgSiSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedLineV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "IdentifiedText", + "printedName": "IdentifiedText", + "usr": "s:7Amplify14IdentifiedTextP", + "mangledName": "$s7Amplify14IdentifiedTextP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedWord", + "printedName": "IdentifiedWord", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV7polygonAC7PolygonVSgvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV7polygonAC7PolygonVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV7polygonAC7PolygonVSgvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV7polygonAC7PolygonVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "page", + "printedName": "page", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV4pageSiSgvp", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV4pageSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV4pageSiSgvg", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV4pageSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(text:boundingBox:polygon:page:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Polygon?", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV4text11boundingBox7polygon4pageAESS_So6CGRectVAC7PolygonVSgSiSgtcfc", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV4text11boundingBox7polygon4pageAESS_So6CGRectVAC7PolygonVSgSiSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV", + "mangledName": "$s7Amplify11PredictionsO14IdentifiedWordV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "IdentifiedText", + "printedName": "IdentifiedText", + "usr": "s:7Amplify14IdentifiedTextP", + "mangledName": "$s7Amplify14IdentifiedTextP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeyPhrase", + "printedName": "KeyPhrase", + "children": [ + { + "kind": "Var", + "name": "score", + "printedName": "score", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV5scoreSfSgvp", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV5scoreSfSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV5scoreSfSgvg", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV5scoreSfSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "range", + "printedName": "range", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV5rangeSnySS5IndexVGvp", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV5rangeSnySS5IndexVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV5rangeSnySS5IndexVGvg", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV5rangeSnySS5IndexVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(text:range:score:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeyPhrase", + "printedName": "Amplify.Predictions.KeyPhrase", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV4text5range5scoreAESS_SnySS5IndexVGSfSgtcfc", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV4text5range5scoreAESS_SnySS5IndexVGSfSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV", + "mangledName": "$s7Amplify11PredictionsO9KeyPhraseV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "LabelType", + "printedName": "LabelType", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9LabelTypeV3allAEvpZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV3allAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9LabelTypeV3allAEvgZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV3allAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "moderation", + "printedName": "moderation", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9LabelTypeV10moderationAEvpZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV10moderationAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9LabelTypeV10moderationAEvgZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV10moderationAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9LabelTypeV6labelsAEvpZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV6labelsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9LabelTypeV6labelsAEvgZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV6labelsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + }, + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO9LabelTypeV23__derived_struct_equalsySbAE_AEtFZ", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV23__derived_struct_equalsySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9LabelTypeV", + "mangledName": "$s7Amplify11PredictionsO9LabelTypeV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Landmark", + "printedName": "Landmark", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4kindAE4KindVvp", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4kindAE4KindVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4kindAE4KindVvg", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4kindAE4KindVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "points", + "printedName": "points", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV6pointsSaySo7CGPointVGvp", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV6pointsSaySo7CGPointVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV6pointsSaySo7CGPointVGvg", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV6pointsSaySo7CGPointVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(kind:points:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Landmark", + "printedName": "Amplify.Predictions.Landmark", + "usr": "s:7Amplify11PredictionsO8LandmarkV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4kind6pointsA2E4KindV_SaySo7CGPointVGtcfc", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4kind6pointsA2E4KindV_SaySo7CGPointVGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "allPoints", + "printedName": "allPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9allPointsAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9allPointsAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9allPointsAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9allPointsAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftEye", + "printedName": "leftEye", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV7leftEyeAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV7leftEyeAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV7leftEyeAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV7leftEyeAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rightEye", + "printedName": "rightEye", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV8rightEyeAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV8rightEyeAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV8rightEyeAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV8rightEyeAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftEyebrow", + "printedName": "leftEyebrow", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV11leftEyebrowAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV11leftEyebrowAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV11leftEyebrowAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV11leftEyebrowAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rightEyebrow", + "printedName": "rightEyebrow", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV12rightEyebrowAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV12rightEyebrowAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV12rightEyebrowAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV12rightEyebrowAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nose", + "printedName": "nose", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV4noseAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV4noseAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV4noseAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV4noseAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "noseCrest", + "printedName": "noseCrest", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9noseCrestAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9noseCrestAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9noseCrestAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9noseCrestAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medianLine", + "printedName": "medianLine", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV10medianLineAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV10medianLineAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV10medianLineAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV10medianLineAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outerLips", + "printedName": "outerLips", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9outerLipsAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9outerLipsAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9outerLipsAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9outerLipsAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "innerLips", + "printedName": "innerLips", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9innerLipsAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9innerLipsAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9innerLipsAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9innerLipsAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "leftPupil", + "printedName": "leftPupil", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9leftPupilAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9leftPupilAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV9leftPupilAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV9leftPupilAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rightPupil", + "printedName": "rightPupil", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV10rightPupilAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV10rightPupilAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV10rightPupilAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV10rightPupilAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "faceContour", + "printedName": "faceContour", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV11faceContourAGvpZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV11faceContourAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Landmark.Kind", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV11faceContourAGvgZ", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV11faceContourAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8LandmarkV4KindV", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV4KindV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8LandmarkV", + "mangledName": "$s7Amplify11PredictionsO8LandmarkV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Language", + "printedName": "Language", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4codeSSvp", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4codeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4codeSSvg", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4codeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(code:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8LanguageV4codeAESS_tcfc", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4codeAESS_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "afar", + "printedName": "afar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4afarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4afarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4afarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4afarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "abkhazian", + "printedName": "abkhazian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9abkhazianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9abkhazianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9abkhazianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9abkhazianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "achinese", + "printedName": "achinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8achineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8achineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8achineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8achineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acoli", + "printedName": "acoli", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5acoliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5acoliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5acoliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5acoliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adangme", + "printedName": "adangme", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7adangmeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7adangmeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7adangmeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7adangmeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adyghe", + "printedName": "adyghe", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6adygheAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6adygheAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6adygheAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6adygheAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "avestan", + "printedName": "avestan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7avestanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7avestanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7avestanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7avestanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tunisianArabic", + "printedName": "tunisianArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14tunisianArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14tunisianArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14tunisianArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14tunisianArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "afrikaans", + "printedName": "afrikaans", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9afrikaansAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9afrikaansAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9afrikaansAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9afrikaansAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "afrihili", + "printedName": "afrihili", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8afrihiliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8afrihiliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8afrihiliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8afrihiliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aghem", + "printedName": "aghem", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5aghemAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5aghemAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5aghemAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5aghemAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ainu", + "printedName": "ainu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4ainuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4ainuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4ainuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4ainuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "akan", + "printedName": "akan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4akanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4akanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4akanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4akanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "akkadian", + "printedName": "akkadian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8akkadianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8akkadianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8akkadianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8akkadianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "alabama", + "printedName": "alabama", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7alabamaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7alabamaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7alabamaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7alabamaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aleut", + "printedName": "aleut", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5aleutAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5aleutAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5aleutAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5aleutAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ghegAlbanian", + "printedName": "ghegAlbanian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12ghegAlbanianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12ghegAlbanianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12ghegAlbanianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12ghegAlbanianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "southernAltai", + "printedName": "southernAltai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13southernAltaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13southernAltaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13southernAltaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13southernAltaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "amharic", + "printedName": "amharic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7amharicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7amharicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7amharicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7amharicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aragonese", + "printedName": "aragonese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9aragoneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9aragoneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9aragoneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9aragoneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldEnglish", + "printedName": "oldEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10oldEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10oldEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10oldEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10oldEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "angika", + "printedName": "angika", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6angikaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6angikaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6angikaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6angikaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arabic", + "printedName": "arabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6arabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6arabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6arabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6arabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aramaic", + "printedName": "aramaic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7aramaicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7aramaicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7aramaicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7aramaicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mapuche", + "printedName": "mapuche", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7mapucheAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7mapucheAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7mapucheAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7mapucheAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "araona", + "printedName": "araona", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6araonaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6araonaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6araonaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6araonaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arapaho", + "printedName": "arapaho", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7arapahoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7arapahoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7arapahoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7arapahoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "algerianArabic", + "printedName": "algerianArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14algerianArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14algerianArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14algerianArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14algerianArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "najdiArabic", + "printedName": "najdiArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11najdiArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11najdiArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11najdiArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11najdiArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arawak", + "printedName": "arawak", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6arawakAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6arawakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6arawakAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6arawakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "moroccanArabic", + "printedName": "moroccanArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14moroccanArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14moroccanArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14moroccanArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14moroccanArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "egyptianArabic", + "printedName": "egyptianArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14egyptianArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14egyptianArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14egyptianArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14egyptianArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "assamese", + "printedName": "assamese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8assameseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8assameseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8assameseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8assameseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asu", + "printedName": "asu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3asuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3asuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3asuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3asuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "americanSignLanguage", + "printedName": "americanSignLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV012americanSignC0AEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV012americanSignC0AEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV012americanSignC0AEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV012americanSignC0AEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asturian", + "printedName": "asturian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8asturianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8asturianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8asturianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8asturianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "avaric", + "printedName": "avaric", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6avaricAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6avaricAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6avaricAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6avaricAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kotava", + "printedName": "kotava", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kotavaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kotavaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kotavaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kotavaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "awadhi", + "printedName": "awadhi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6awadhiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6awadhiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6awadhiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6awadhiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aymara", + "printedName": "aymara", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6aymaraAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6aymaraAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6aymaraAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6aymaraAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "azerbaijani", + "printedName": "azerbaijani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11azerbaijaniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11azerbaijaniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11azerbaijaniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11azerbaijaniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bashkir", + "printedName": "bashkir", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7bashkirAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bashkirAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7bashkirAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bashkirAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "baluchi", + "printedName": "baluchi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7baluchiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7baluchiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7baluchiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7baluchiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "balinese", + "printedName": "balinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8balineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8balineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8balineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8balineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bavarian", + "printedName": "bavarian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8bavarianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bavarianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8bavarianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bavarianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "basaa", + "printedName": "basaa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5basaaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5basaaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5basaaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5basaaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bamun", + "printedName": "bamun", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5bamunAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bamunAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5bamunAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bamunAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "batakToba", + "printedName": "batakToba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9batakTobaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9batakTobaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9batakTobaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9batakTobaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ghomala", + "printedName": "ghomala", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7ghomalaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ghomalaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7ghomalaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ghomalaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "belarusian", + "printedName": "belarusian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10belarusianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10belarusianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10belarusianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10belarusianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "beja", + "printedName": "beja", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4bejaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4bejaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4bejaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4bejaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bemba", + "printedName": "bemba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5bembaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bembaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5bembaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bembaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "betawi", + "printedName": "betawi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6betawiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6betawiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6betawiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6betawiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bena", + "printedName": "bena", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4benaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4benaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4benaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4benaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bafut", + "printedName": "bafut", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5bafutAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bafutAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5bafutAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bafutAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badaga", + "printedName": "badaga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6badagaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6badagaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6badagaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6badagaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bulgarian", + "printedName": "bulgarian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9bulgarianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9bulgarianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9bulgarianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9bulgarianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "westernBalochi", + "printedName": "westernBalochi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14westernBalochiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14westernBalochiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14westernBalochiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14westernBalochiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bhojpuri", + "printedName": "bhojpuri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8bhojpuriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bhojpuriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8bhojpuriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bhojpuriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bislama", + "printedName": "bislama", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7bislamaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bislamaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7bislamaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bislamaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bikol", + "printedName": "bikol", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5bikolAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bikolAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5bikolAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bikolAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bini", + "printedName": "bini", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4biniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4biniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4biniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4biniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "banjar", + "printedName": "banjar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6banjarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6banjarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6banjarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6banjarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kom", + "printedName": "kom", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3komAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3komAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3komAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3komAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "siksika", + "printedName": "siksika", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7siksikaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7siksikaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7siksikaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7siksikaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bambara", + "printedName": "bambara", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7bambaraAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bambaraAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7bambaraAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bambaraAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bangla", + "printedName": "bangla", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6banglaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6banglaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6banglaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6banglaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tibetan", + "printedName": "tibetan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tibetanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tibetanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tibetanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tibetanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bishnupriya", + "printedName": "bishnupriya", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11bishnupriyaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11bishnupriyaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11bishnupriyaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11bishnupriyaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bakhtiari", + "printedName": "bakhtiari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9bakhtiariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9bakhtiariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9bakhtiariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9bakhtiariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "breton", + "printedName": "breton", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6bretonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6bretonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6bretonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6bretonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "braj", + "printedName": "braj", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4brajAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4brajAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4brajAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4brajAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "brahui", + "printedName": "brahui", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6brahuiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6brahuiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6brahuiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6brahuiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bodo", + "printedName": "bodo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4bodoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4bodoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4bodoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4bodoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bosnian", + "printedName": "bosnian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7bosnianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bosnianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7bosnianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7bosnianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "akoose", + "printedName": "akoose", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6akooseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6akooseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6akooseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6akooseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buriat", + "printedName": "buriat", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6buriatAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6buriatAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6buriatAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6buriatAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "buginese", + "printedName": "buginese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8bugineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bugineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8bugineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8bugineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bulu", + "printedName": "bulu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4buluAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4buluAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4buluAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4buluAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "blin", + "printedName": "blin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4blinAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4blinAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4blinAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4blinAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medumba", + "printedName": "medumba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7medumbaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7medumbaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7medumbaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7medumbaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "catalan", + "printedName": "catalan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7catalanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7catalanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7catalanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7catalanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "caddo", + "printedName": "caddo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5caddoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5caddoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5caddoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5caddoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "carib", + "printedName": "carib", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5caribAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5caribAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5caribAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5caribAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cayuga", + "printedName": "cayuga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6cayugaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6cayugaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6cayugaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6cayugaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atsam", + "printedName": "atsam", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5atsamAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5atsamAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5atsamAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5atsamAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chakma", + "printedName": "chakma", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6chakmaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6chakmaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6chakmaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6chakmaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chechen", + "printedName": "chechen", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7chechenAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chechenAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7chechenAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chechenAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cebuano", + "printedName": "cebuano", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7cebuanoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7cebuanoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7cebuanoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7cebuanoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chiga", + "printedName": "chiga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5chigaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5chigaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5chigaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5chigaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chamorro", + "printedName": "chamorro", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8chamorroAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chamorroAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8chamorroAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chamorroAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chibcha", + "printedName": "chibcha", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7chibchaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chibchaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7chibchaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chibchaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chagatai", + "printedName": "chagatai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8chagataiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chagataiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8chagataiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chagataiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chuukese", + "printedName": "chuukese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8chuukeseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chuukeseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8chuukeseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8chuukeseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mari", + "printedName": "mari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4mariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4mariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chinookJargon", + "printedName": "chinookJargon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13chinookJargonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13chinookJargonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13chinookJargonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13chinookJargonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "choctaw", + "printedName": "choctaw", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7choctawAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7choctawAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7choctawAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7choctawAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chipewyan", + "printedName": "chipewyan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9chipewyanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9chipewyanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9chipewyanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9chipewyanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cherokee", + "printedName": "cherokee", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8cherokeeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8cherokeeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8cherokeeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8cherokeeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cheyenne", + "printedName": "cheyenne", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8cheyenneAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8cheyenneAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8cheyenneAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8cheyenneAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralKurdish", + "printedName": "centralKurdish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14centralKurdishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14centralKurdishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14centralKurdishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14centralKurdishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "corsican", + "printedName": "corsican", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8corsicanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8corsicanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8corsicanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8corsicanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "coptic", + "printedName": "coptic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6copticAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6copticAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6copticAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6copticAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiznon", + "printedName": "capiznon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8capiznonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8capiznonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8capiznonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8capiznonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cree", + "printedName": "cree", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4creeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4creeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4creeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4creeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crimeanTurkish", + "printedName": "crimeanTurkish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14crimeanTurkishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14crimeanTurkishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14crimeanTurkishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14crimeanTurkishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "czech", + "printedName": "czech", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5czechAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5czechAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5czechAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5czechAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kashubian", + "printedName": "kashubian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9kashubianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kashubianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9kashubianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kashubianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "churchSlavic", + "printedName": "churchSlavic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12churchSlavicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12churchSlavicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12churchSlavicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12churchSlavicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chuvash", + "printedName": "chuvash", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7chuvashAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chuvashAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7chuvashAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chuvashAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "welsh", + "printedName": "welsh", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5welshAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5welshAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5welshAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5welshAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "danish", + "printedName": "danish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6danishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6danishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6danishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6danishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dakota", + "printedName": "dakota", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6dakotaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dakotaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6dakotaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dakotaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dargwa", + "printedName": "dargwa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6dargwaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dargwaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6dargwaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dargwaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taita", + "printedName": "taita", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5taitaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5taitaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5taitaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5taitaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "german", + "printedName": "german", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6germanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6germanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6germanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6germanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delaware", + "printedName": "delaware", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8delawareAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8delawareAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8delawareAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8delawareAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "slave", + "printedName": "slave", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5slaveAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5slaveAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5slaveAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5slaveAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dogrib", + "printedName": "dogrib", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6dogribAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dogribAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6dogribAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dogribAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dinka", + "printedName": "dinka", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5dinkaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dinkaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5dinkaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dinkaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zarma", + "printedName": "zarma", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5zarmaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5zarmaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5zarmaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5zarmaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dogri", + "printedName": "dogri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5dogriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dogriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5dogriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dogriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lowerSorbian", + "printedName": "lowerSorbian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12lowerSorbianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12lowerSorbianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12lowerSorbianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12lowerSorbianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralDusun", + "printedName": "centralDusun", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12centralDusunAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12centralDusunAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12centralDusunAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12centralDusunAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duala", + "printedName": "duala", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5dualaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dualaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5dualaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dualaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleDutch", + "printedName": "middleDutch", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11middleDutchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11middleDutchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11middleDutchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11middleDutchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dhivehi", + "printedName": "dhivehi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7dhivehiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7dhivehiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7dhivehiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7dhivehiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jolaFonyi", + "printedName": "jolaFonyi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9jolaFonyiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9jolaFonyiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9jolaFonyiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9jolaFonyiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dyula", + "printedName": "dyula", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5dyulaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dyulaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5dyulaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dyulaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dzongkha", + "printedName": "dzongkha", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8dzongkhaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8dzongkhaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8dzongkhaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8dzongkhaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dazaga", + "printedName": "dazaga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6dazagaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dazagaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6dazagaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6dazagaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embu", + "printedName": "embu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4embuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4embuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4embuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4embuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ewe", + "printedName": "ewe", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3eweAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3eweAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3eweAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3eweAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "efik", + "printedName": "efik", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4efikAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4efikAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4efikAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4efikAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "emilian", + "printedName": "emilian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7emilianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7emilianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7emilianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7emilianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ancientEgyptian", + "printedName": "ancientEgyptian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15ancientEgyptianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15ancientEgyptianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15ancientEgyptianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15ancientEgyptianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ekajuk", + "printedName": "ekajuk", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ekajukAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ekajukAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ekajukAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ekajukAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "greek", + "printedName": "greek", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5greekAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5greekAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5greekAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5greekAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "elamite", + "printedName": "elamite", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7elamiteAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7elamiteAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7elamiteAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7elamiteAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "english", + "printedName": "english", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7englishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7englishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7englishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7englishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "australianEnglish", + "printedName": "australianEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV17australianEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV17australianEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV17australianEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV17australianEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "britishEnglish", + "printedName": "britishEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14britishEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14britishEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14britishEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14britishEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usEnglish", + "printedName": "usEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9usEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9usEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9usEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9usEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleEnglish", + "printedName": "middleEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13middleEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13middleEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13middleEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13middleEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "esperanto", + "printedName": "esperanto", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9esperantoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9esperantoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9esperantoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9esperantoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "spanish", + "printedName": "spanish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7spanishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7spanishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7spanishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7spanishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usSpanish", + "printedName": "usSpanish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9usSpanishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9usSpanishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9usSpanishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9usSpanishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralYupik", + "printedName": "centralYupik", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12centralYupikAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12centralYupikAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12centralYupikAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12centralYupikAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estonian", + "printedName": "estonian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8estonianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8estonianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8estonianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8estonianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "basque", + "printedName": "basque", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6basqueAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6basqueAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6basqueAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6basqueAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ewondo", + "printedName": "ewondo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ewondoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ewondoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ewondoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ewondoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extremaduran", + "printedName": "extremaduran", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12extremaduranAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12extremaduranAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12extremaduranAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12extremaduranAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persian", + "printedName": "persian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7persianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7persianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7persianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7persianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fang", + "printedName": "fang", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4fangAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4fangAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4fangAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4fangAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fanti", + "printedName": "fanti", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5fantiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5fantiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5fantiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5fantiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fulah", + "printedName": "fulah", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5fulahAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5fulahAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5fulahAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5fulahAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "finnish", + "printedName": "finnish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7finnishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7finnishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7finnishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7finnishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "filipino", + "printedName": "filipino", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8filipinoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8filipinoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8filipinoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8filipinoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tornedalenFinnish", + "printedName": "tornedalenFinnish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV17tornedalenFinnishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV17tornedalenFinnishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV17tornedalenFinnishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV17tornedalenFinnishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fijian", + "printedName": "fijian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6fijianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6fijianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6fijianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6fijianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "faroese", + "printedName": "faroese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7faroeseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7faroeseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7faroeseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7faroeseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fon", + "printedName": "fon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3fonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3fonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3fonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3fonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "french", + "printedName": "french", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6frenchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6frenchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6frenchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6frenchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "canadianFrench", + "printedName": "canadianFrench", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14canadianFrenchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14canadianFrenchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14canadianFrenchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14canadianFrenchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cajunFrench", + "printedName": "cajunFrench", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11cajunFrenchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11cajunFrenchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11cajunFrenchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11cajunFrenchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleFrench", + "printedName": "middleFrench", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12middleFrenchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12middleFrenchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12middleFrenchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12middleFrenchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldFrench", + "printedName": "oldFrench", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9oldFrenchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9oldFrenchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9oldFrenchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9oldFrenchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arpitan", + "printedName": "arpitan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7arpitanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7arpitanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7arpitanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7arpitanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northernFrisian", + "printedName": "northernFrisian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15northernFrisianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15northernFrisianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15northernFrisianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15northernFrisianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "easternFrisian", + "printedName": "easternFrisian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14easternFrisianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14easternFrisianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14easternFrisianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14easternFrisianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friulian", + "printedName": "friulian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8friulianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8friulianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8friulianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8friulianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "westernFrisian", + "printedName": "westernFrisian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14westernFrisianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14westernFrisianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14westernFrisianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14westernFrisianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "irish", + "printedName": "irish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5irishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5irishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5irishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5irishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ga", + "printedName": "ga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV2gaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV2gaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV2gaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV2gaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gagauz", + "printedName": "gagauz", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6gagauzAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gagauzAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6gagauzAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gagauzAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ganChinese", + "printedName": "ganChinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10ganChineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10ganChineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10ganChineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10ganChineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gayo", + "printedName": "gayo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4gayoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4gayoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4gayoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4gayoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gbaya", + "printedName": "gbaya", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5gbayaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gbayaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5gbayaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gbayaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zoroastrianDari", + "printedName": "zoroastrianDari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15zoroastrianDariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15zoroastrianDariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15zoroastrianDariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15zoroastrianDariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scottishGaelic", + "printedName": "scottishGaelic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14scottishGaelicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14scottishGaelicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14scottishGaelicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14scottishGaelicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geez", + "printedName": "geez", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4geezAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4geezAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4geezAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4geezAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gilbertese", + "printedName": "gilbertese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10gilberteseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10gilberteseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10gilberteseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10gilberteseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "galician", + "printedName": "galician", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8galicianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8galicianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8galicianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8galicianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gilaki", + "printedName": "gilaki", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6gilakiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gilakiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6gilakiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gilakiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleHighGerman", + "printedName": "middleHighGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV16middleHighGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16middleHighGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV16middleHighGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16middleHighGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "guarani", + "printedName": "guarani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7guaraniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7guaraniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7guaraniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7guaraniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldHighGerman", + "printedName": "oldHighGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13oldHighGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13oldHighGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13oldHighGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13oldHighGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "goanKonkani", + "printedName": "goanKonkani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11goanKonkaniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11goanKonkaniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11goanKonkaniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11goanKonkaniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gondi", + "printedName": "gondi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5gondiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gondiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5gondiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gondiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gorontalo", + "printedName": "gorontalo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9gorontaloAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9gorontaloAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9gorontaloAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9gorontaloAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gothic", + "printedName": "gothic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6gothicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gothicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6gothicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6gothicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grebo", + "printedName": "grebo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5greboAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5greboAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5greboAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5greboAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ancientGreek", + "printedName": "ancientGreek", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12ancientGreekAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12ancientGreekAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12ancientGreekAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12ancientGreekAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swissGerman", + "printedName": "swissGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11swissGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11swissGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11swissGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11swissGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gujarati", + "printedName": "gujarati", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8gujaratiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8gujaratiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8gujaratiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8gujaratiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wayuu", + "printedName": "wayuu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5wayuuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5wayuuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5wayuuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5wayuuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "frafra", + "printedName": "frafra", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6frafraAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6frafraAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6frafraAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6frafraAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gusii", + "printedName": "gusii", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5gusiiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gusiiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5gusiiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gusiiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "manx", + "printedName": "manx", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4manxAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4manxAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4manxAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4manxAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gwichʼin", + "printedName": "gwichʼin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV0011gwichin_FzdAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0011gwichin_FzdAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV0011gwichin_FzdAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0011gwichin_FzdAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hausa", + "printedName": "hausa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5hausaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hausaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5hausaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hausaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "haida", + "printedName": "haida", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5haidaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5haidaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5haidaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5haidaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hakkaChinese", + "printedName": "hakkaChinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12hakkaChineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12hakkaChineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12hakkaChineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12hakkaChineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hawaiian", + "printedName": "hawaiian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8hawaiianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8hawaiianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8hawaiianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8hawaiianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hebrew", + "printedName": "hebrew", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6hebrewAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6hebrewAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6hebrewAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6hebrewAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hindi", + "printedName": "hindi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5hindiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hindiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5hindiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hindiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fijiHindi", + "printedName": "fijiHindi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9fijiHindiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9fijiHindiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9fijiHindiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9fijiHindiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hiligaynon", + "printedName": "hiligaynon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10hiligaynonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10hiligaynonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10hiligaynonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10hiligaynonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hittite", + "printedName": "hittite", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7hittiteAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7hittiteAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7hittiteAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7hittiteAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hmong", + "printedName": "hmong", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5hmongAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hmongAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5hmongAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5hmongAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hiriMotu", + "printedName": "hiriMotu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8hiriMotuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8hiriMotuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8hiriMotuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8hiriMotuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "croatian", + "printedName": "croatian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8croatianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8croatianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8croatianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8croatianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "upperSorbian", + "printedName": "upperSorbian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12upperSorbianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12upperSorbianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12upperSorbianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12upperSorbianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "xiangChinese", + "printedName": "xiangChinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12xiangChineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12xiangChineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12xiangChineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12xiangChineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "haitianCreole", + "printedName": "haitianCreole", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13haitianCreoleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13haitianCreoleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13haitianCreoleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13haitianCreoleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hungarian", + "printedName": "hungarian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9hungarianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9hungarianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9hungarianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9hungarianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hupa", + "printedName": "hupa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4hupaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4hupaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4hupaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4hupaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "armenian", + "printedName": "armenian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8armenianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8armenianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8armenianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8armenianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "herero", + "printedName": "herero", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6hereroAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6hereroAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6hereroAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6hereroAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interlingua", + "printedName": "interlingua", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11interlinguaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11interlinguaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11interlinguaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11interlinguaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iban", + "printedName": "iban", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4ibanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4ibanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4ibanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4ibanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ibibio", + "printedName": "ibibio", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ibibioAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ibibioAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ibibioAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ibibioAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "indonesian", + "printedName": "indonesian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10indonesianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10indonesianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10indonesianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10indonesianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interlingue", + "printedName": "interlingue", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11interlingueAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11interlingueAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11interlingueAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11interlingueAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "igbo", + "printedName": "igbo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4igboAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4igboAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4igboAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4igboAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sichuanYi", + "printedName": "sichuanYi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9sichuanYiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sichuanYiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9sichuanYiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sichuanYiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inupiaq", + "printedName": "inupiaq", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7inupiaqAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7inupiaqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7inupiaqAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7inupiaqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iloko", + "printedName": "iloko", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5ilokoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5ilokoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5ilokoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5ilokoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ingush", + "printedName": "ingush", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ingushAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ingushAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ingushAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ingushAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ido", + "printedName": "ido", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3idoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3idoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3idoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3idoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "icelandic", + "printedName": "icelandic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9icelandicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9icelandicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9icelandicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9icelandicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "italian", + "printedName": "italian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7italianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7italianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7italianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7italianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inuktitut", + "printedName": "inuktitut", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9inuktitutAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9inuktitutAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9inuktitutAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9inuktitutAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ingrian", + "printedName": "ingrian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7ingrianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ingrianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7ingrianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ingrianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "japanese", + "printedName": "japanese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8japaneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8japaneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8japaneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8japaneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jamaicanCreoleEnglish", + "printedName": "jamaicanCreoleEnglish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV21jamaicanCreoleEnglishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV21jamaicanCreoleEnglishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV21jamaicanCreoleEnglishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV21jamaicanCreoleEnglishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lojban", + "printedName": "lojban", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6lojbanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lojbanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6lojbanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lojbanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ngomba", + "printedName": "ngomba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ngombaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ngombaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ngombaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ngombaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "machame", + "printedName": "machame", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7machameAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7machameAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7machameAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7machameAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "judeoPersian", + "printedName": "judeoPersian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12judeoPersianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12judeoPersianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12judeoPersianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12judeoPersianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "judeoArabic", + "printedName": "judeoArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11judeoArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11judeoArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11judeoArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11judeoArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jutish", + "printedName": "jutish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6jutishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6jutishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6jutishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6jutishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "javanese", + "printedName": "javanese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8javaneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8javaneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8javaneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8javaneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "georgian", + "printedName": "georgian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8georgianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8georgianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8georgianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8georgianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "karaKalpak", + "printedName": "karaKalpak", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10karaKalpakAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10karaKalpakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10karaKalpakAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10karaKalpakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kabyle", + "printedName": "kabyle", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kabyleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kabyleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kabyleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kabyleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kachin", + "printedName": "kachin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kachinAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kachinAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kachinAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kachinAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jju", + "printedName": "jju", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3jjuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3jjuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3jjuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3jjuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kamba", + "printedName": "kamba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5kambaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kambaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5kambaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kambaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kawi", + "printedName": "kawi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4kawiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4kawiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4kawiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4kawiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kabardian", + "printedName": "kabardian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9kabardianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kabardianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9kabardianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kabardianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kanembu", + "printedName": "kanembu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7kanembuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kanembuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7kanembuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kanembuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tyap", + "printedName": "tyap", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4tyapAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tyapAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4tyapAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tyapAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "makonde", + "printedName": "makonde", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7makondeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7makondeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7makondeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7makondeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kabuverdianu", + "printedName": "kabuverdianu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12kabuverdianuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12kabuverdianuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12kabuverdianuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12kabuverdianuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kenyang", + "printedName": "kenyang", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7kenyangAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kenyangAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7kenyangAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kenyangAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "koro", + "printedName": "koro", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4koroAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4koroAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4koroAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4koroAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kongo", + "printedName": "kongo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5kongoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kongoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5kongoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kongoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kaingang", + "printedName": "kaingang", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kaingangAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kaingangAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kaingangAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kaingangAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "khasi", + "printedName": "khasi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5khasiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5khasiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5khasiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5khasiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "khotanese", + "printedName": "khotanese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9khotaneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9khotaneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9khotaneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9khotaneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "koyraChiini", + "printedName": "koyraChiini", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11koyraChiiniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11koyraChiiniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11koyraChiiniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11koyraChiiniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "khowar", + "printedName": "khowar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6khowarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6khowarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6khowarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6khowarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kikuyu", + "printedName": "kikuyu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kikuyuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kikuyuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kikuyuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kikuyuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kirmanjki", + "printedName": "kirmanjki", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9kirmanjkiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kirmanjkiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9kirmanjkiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9kirmanjkiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kuanyama", + "printedName": "kuanyama", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kuanyamaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kuanyamaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kuanyamaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kuanyamaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kazakh", + "printedName": "kazakh", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kazakhAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kazakhAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kazakhAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kazakhAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kako", + "printedName": "kako", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4kakoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4kakoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4kakoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4kakoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kalaallisut", + "printedName": "kalaallisut", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11kalaallisutAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11kalaallisutAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11kalaallisutAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11kalaallisutAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kalenjin", + "printedName": "kalenjin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kalenjinAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kalenjinAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kalenjinAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kalenjinAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "khmer", + "printedName": "khmer", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5khmerAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5khmerAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5khmerAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5khmerAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kimbundu", + "printedName": "kimbundu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kimbunduAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kimbunduAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kimbunduAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kimbunduAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kannada", + "printedName": "kannada", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7kannadaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kannadaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7kannadaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kannadaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "korean", + "printedName": "korean", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6koreanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6koreanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6koreanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6koreanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "komiPermyak", + "printedName": "komiPermyak", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11komiPermyakAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11komiPermyakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11komiPermyakAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11komiPermyakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "konkani", + "printedName": "konkani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7konkaniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7konkaniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7konkaniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7konkaniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kosraean", + "printedName": "kosraean", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kosraeanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kosraeanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kosraeanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kosraeanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kpelle", + "printedName": "kpelle", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kpelleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kpelleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kpelleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kpelleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kanuri", + "printedName": "kanuri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kanuriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kanuriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kanuriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kanuriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "karachayBalkar", + "printedName": "karachayBalkar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14karachayBalkarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14karachayBalkarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14karachayBalkarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14karachayBalkarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "krio", + "printedName": "krio", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4krioAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4krioAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4krioAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4krioAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kinarayA", + "printedName": "kinarayA", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kinarayAAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kinarayAAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kinarayAAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kinarayAAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "karelian", + "printedName": "karelian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8karelianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8karelianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8karelianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8karelianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kurukh", + "printedName": "kurukh", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kurukhAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kurukhAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kurukhAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kurukhAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kashmiri", + "printedName": "kashmiri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8kashmiriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kashmiriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8kashmiriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8kashmiriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shambala", + "printedName": "shambala", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8shambalaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8shambalaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8shambalaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8shambalaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bafia", + "printedName": "bafia", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5bafiaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bafiaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5bafiaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5bafiaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "colognian", + "printedName": "colognian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9colognianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9colognianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9colognianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9colognianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kurdish", + "printedName": "kurdish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7kurdishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kurdishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7kurdishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kurdishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kumyk", + "printedName": "kumyk", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5kumykAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kumykAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5kumykAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5kumykAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kutenai", + "printedName": "kutenai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7kutenaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kutenaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7kutenaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7kutenaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "komi", + "printedName": "komi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4komiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4komiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4komiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4komiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cornish", + "printedName": "cornish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7cornishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7cornishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7cornishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7cornishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kyrgyz", + "printedName": "kyrgyz", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kyrgyzAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kyrgyzAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kyrgyzAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kyrgyzAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latin", + "printedName": "latin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5latinAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5latinAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5latinAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5latinAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ladino", + "printedName": "ladino", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ladinoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ladinoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ladinoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ladinoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "langi", + "printedName": "langi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5langiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5langiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5langiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5langiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lahnda", + "printedName": "lahnda", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6lahndaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lahndaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6lahndaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lahndaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lamba", + "printedName": "lamba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5lambaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5lambaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5lambaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5lambaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "luxembourgish", + "printedName": "luxembourgish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13luxembourgishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13luxembourgishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13luxembourgishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13luxembourgishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lezghian", + "printedName": "lezghian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8lezghianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8lezghianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8lezghianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8lezghianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguaFrancaNova", + "printedName": "linguaFrancaNova", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV16linguaFrancaNovaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16linguaFrancaNovaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV16linguaFrancaNovaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16linguaFrancaNovaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ganda", + "printedName": "ganda", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5gandaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gandaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5gandaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5gandaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "limburgish", + "printedName": "limburgish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10limburgishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10limburgishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10limburgishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10limburgishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ligurian", + "printedName": "ligurian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8ligurianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8ligurianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8ligurianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8ligurianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "livonian", + "printedName": "livonian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8livonianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8livonianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8livonianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8livonianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lakota", + "printedName": "lakota", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6lakotaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lakotaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6lakotaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6lakotaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lombard", + "printedName": "lombard", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7lombardAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7lombardAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7lombardAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7lombardAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lingala", + "printedName": "lingala", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7lingalaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7lingalaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7lingalaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7lingalaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lao", + "printedName": "lao", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3laoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3laoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3laoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3laoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mongo", + "printedName": "mongo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5mongoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mongoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5mongoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mongoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lozi", + "printedName": "lozi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4loziAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4loziAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4loziAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4loziAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northernLuri", + "printedName": "northernLuri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12northernLuriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northernLuriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12northernLuriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northernLuriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lithuanian", + "printedName": "lithuanian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10lithuanianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10lithuanianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10lithuanianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10lithuanianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latgalian", + "printedName": "latgalian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9latgalianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9latgalianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9latgalianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9latgalianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lubaKatanga", + "printedName": "lubaKatanga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11lubaKatangaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11lubaKatangaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11lubaKatangaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11lubaKatangaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lubaLulua", + "printedName": "lubaLulua", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9lubaLuluaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9lubaLuluaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9lubaLuluaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9lubaLuluaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "luiseno", + "printedName": "luiseno", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7luisenoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7luisenoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7luisenoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7luisenoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lunda", + "printedName": "lunda", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5lundaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5lundaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5lundaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5lundaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "luo", + "printedName": "luo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3luoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3luoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3luoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3luoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mizo", + "printedName": "mizo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4mizoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mizoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4mizoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mizoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "luyia", + "printedName": "luyia", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5luyiaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5luyiaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5luyiaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5luyiaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latvian", + "printedName": "latvian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7latvianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7latvianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7latvianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7latvianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "literaryChinese", + "printedName": "literaryChinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15literaryChineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15literaryChineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15literaryChineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15literaryChineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "laz", + "printedName": "laz", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3lazAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3lazAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3lazAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3lazAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "madurese", + "printedName": "madurese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8madureseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8madureseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8madureseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8madureseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mafa", + "printedName": "mafa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4mafaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mafaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4mafaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mafaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "magahi", + "printedName": "magahi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6magahiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6magahiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6magahiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6magahiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maithili", + "printedName": "maithili", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8maithiliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8maithiliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8maithiliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8maithiliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "makasar", + "printedName": "makasar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7makasarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7makasarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7makasarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7makasarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mandingo", + "printedName": "mandingo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8mandingoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8mandingoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8mandingoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8mandingoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "masai", + "printedName": "masai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5masaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5masaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5masaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5masaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maba", + "printedName": "maba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4mabaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mabaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4mabaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4mabaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "moksha", + "printedName": "moksha", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6mokshaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mokshaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6mokshaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mokshaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mandar", + "printedName": "mandar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6mandarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mandarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6mandarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mandarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mende", + "printedName": "mende", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5mendeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mendeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5mendeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mendeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meru", + "printedName": "meru", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4meruAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4meruAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4meruAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4meruAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "morisyen", + "printedName": "morisyen", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8morisyenAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8morisyenAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8morisyenAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8morisyenAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "malagasy", + "printedName": "malagasy", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8malagasyAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8malagasyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8malagasyAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8malagasyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleIrish", + "printedName": "middleIrish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11middleIrishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11middleIrishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11middleIrishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11middleIrishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "makhuwaMeetto", + "printedName": "makhuwaMeetto", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13makhuwaMeettoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13makhuwaMeettoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13makhuwaMeettoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13makhuwaMeettoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "meta", + "printedName": "meta", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4metaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4metaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4metaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4metaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "marshallese", + "printedName": "marshallese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11marshalleseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11marshalleseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11marshalleseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11marshalleseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maori", + "printedName": "maori", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5maoriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5maoriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5maoriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5maoriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mikmaq", + "printedName": "mikmaq", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6mikmaqAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mikmaqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6mikmaqAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mikmaqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "minangkabau", + "printedName": "minangkabau", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11minangkabauAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11minangkabauAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11minangkabauAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11minangkabauAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macedonian", + "printedName": "macedonian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10macedonianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10macedonianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10macedonianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10macedonianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "malayalam", + "printedName": "malayalam", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9malayalamAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9malayalamAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9malayalamAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9malayalamAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mongolian", + "printedName": "mongolian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9mongolianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9mongolianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9mongolianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9mongolianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "manchu", + "printedName": "manchu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6manchuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6manchuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6manchuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6manchuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "manipuri", + "printedName": "manipuri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8manipuriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8manipuriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8manipuriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8manipuriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mohawk", + "printedName": "mohawk", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6mohawkAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mohawkAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6mohawkAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6mohawkAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mossi", + "printedName": "mossi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5mossiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mossiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5mossiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5mossiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "marathi", + "printedName": "marathi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7marathiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7marathiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7marathiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7marathiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "westernMari", + "printedName": "westernMari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11westernMariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11westernMariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11westernMariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11westernMariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "malay", + "printedName": "malay", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5malayAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5malayAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5malayAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5malayAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maltese", + "printedName": "maltese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7malteseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7malteseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7malteseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7malteseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mundang", + "printedName": "mundang", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7mundangAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7mundangAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7mundangAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7mundangAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "creek", + "printedName": "creek", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5creekAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5creekAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5creekAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5creekAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mirandese", + "printedName": "mirandese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9mirandeseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9mirandeseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9mirandeseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9mirandeseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "marwari", + "printedName": "marwari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7marwariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7marwariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7marwariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7marwariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mentawai", + "printedName": "mentawai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8mentawaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8mentawaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8mentawaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8mentawaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "burmese", + "printedName": "burmese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7burmeseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7burmeseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7burmeseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7burmeseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "myene", + "printedName": "myene", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5myeneAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5myeneAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5myeneAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5myeneAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "erzya", + "printedName": "erzya", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5erzyaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5erzyaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5erzyaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5erzyaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mazanderani", + "printedName": "mazanderani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11mazanderaniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11mazanderaniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11mazanderaniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11mazanderaniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nauru", + "printedName": "nauru", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5nauruAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nauruAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5nauruAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nauruAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "minnanChinese", + "printedName": "minnanChinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13minnanChineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13minnanChineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13minnanChineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13minnanChineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neapolitan", + "printedName": "neapolitan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10neapolitanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10neapolitanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10neapolitanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10neapolitanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nama", + "printedName": "nama", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4namaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4namaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4namaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4namaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "norwegianBokmål", + "printedName": "norwegianBokmål", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV0018norwegianBokml_xibAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0018norwegianBokml_xibAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV0018norwegianBokml_xibAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0018norwegianBokml_xibAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northNdebele", + "printedName": "northNdebele", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12northNdebeleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northNdebeleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12northNdebeleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northNdebeleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lowGerman", + "printedName": "lowGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9lowGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9lowGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9lowGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9lowGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nepali", + "printedName": "nepali", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6nepaliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6nepaliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6nepaliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6nepaliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "newari", + "printedName": "newari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6newariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6newariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6newariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6newariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ndonga", + "printedName": "ndonga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ndongaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ndongaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ndongaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ndongaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nias", + "printedName": "nias", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4niasAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4niasAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4niasAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4niasAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "niuean", + "printedName": "niuean", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6niueanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6niueanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6niueanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6niueanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aoNaga", + "printedName": "aoNaga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6aoNagaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6aoNagaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6aoNagaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6aoNagaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dutch", + "printedName": "dutch", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5dutchAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dutchAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5dutchAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5dutchAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kwasio", + "printedName": "kwasio", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kwasioAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kwasioAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kwasioAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kwasioAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "norwegianNynorsk", + "printedName": "norwegianNynorsk", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV16norwegianNynorskAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16norwegianNynorskAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV16norwegianNynorskAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16norwegianNynorskAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ngiemboon", + "printedName": "ngiemboon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9ngiemboonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9ngiemboonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9ngiemboonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9ngiemboonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "norwegian", + "printedName": "norwegian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9norwegianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9norwegianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9norwegianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9norwegianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nogai", + "printedName": "nogai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5nogaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nogaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5nogaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nogaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldNorse", + "printedName": "oldNorse", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8oldNorseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8oldNorseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8oldNorseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8oldNorseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "novial", + "printedName": "novial", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6novialAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6novialAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6novialAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6novialAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nko", + "printedName": "nko", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3nkoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3nkoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3nkoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3nkoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "southNdebele", + "printedName": "southNdebele", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12southNdebeleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12southNdebeleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12southNdebeleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12southNdebeleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northernSotho", + "printedName": "northernSotho", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13northernSothoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13northernSothoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13northernSothoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13northernSothoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nuer", + "printedName": "nuer", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4nuerAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4nuerAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4nuerAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4nuerAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navajo", + "printedName": "navajo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6navajoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6navajoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6navajoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6navajoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "classicalNewari", + "printedName": "classicalNewari", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15classicalNewariAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15classicalNewariAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15classicalNewariAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15classicalNewariAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nyanja", + "printedName": "nyanja", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6nyanjaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6nyanjaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6nyanjaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6nyanjaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nyamwezi", + "printedName": "nyamwezi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8nyamweziAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8nyamweziAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8nyamweziAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8nyamweziAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nyankole", + "printedName": "nyankole", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8nyankoleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8nyankoleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8nyankoleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8nyankoleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nyoro", + "printedName": "nyoro", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5nyoroAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nyoroAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5nyoroAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nyoroAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nzima", + "printedName": "nzima", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5nzimaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nzimaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5nzimaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5nzimaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "occitan", + "printedName": "occitan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7occitanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7occitanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7occitanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7occitanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ojibwa", + "printedName": "ojibwa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ojibwaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ojibwaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ojibwaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ojibwaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oromo", + "printedName": "oromo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5oromoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5oromoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5oromoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5oromoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "odia", + "printedName": "odia", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4odiaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4odiaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4odiaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4odiaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ossetic", + "printedName": "ossetic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7osseticAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7osseticAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7osseticAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7osseticAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "osage", + "printedName": "osage", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5osageAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5osageAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5osageAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5osageAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ottomanTurkish", + "printedName": "ottomanTurkish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14ottomanTurkishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14ottomanTurkishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14ottomanTurkishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14ottomanTurkishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "punjabi", + "printedName": "punjabi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7punjabiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7punjabiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7punjabiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7punjabiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pangasinan", + "printedName": "pangasinan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10pangasinanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10pangasinanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10pangasinanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10pangasinanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pahlavi", + "printedName": "pahlavi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7pahlaviAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7pahlaviAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7pahlaviAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7pahlaviAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pampanga", + "printedName": "pampanga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8pampangaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8pampangaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8pampangaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8pampangaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "papiamento", + "printedName": "papiamento", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10papiamentoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10papiamentoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10papiamentoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10papiamentoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "palauan", + "printedName": "palauan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7palauanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7palauanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7palauanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7palauanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picard", + "printedName": "picard", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6picardAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6picardAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6picardAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6picardAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pennsylvaniaGerman", + "printedName": "pennsylvaniaGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV18pennsylvaniaGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV18pennsylvaniaGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV18pennsylvaniaGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV18pennsylvaniaGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "plautdietsch", + "printedName": "plautdietsch", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12plautdietschAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12plautdietschAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12plautdietschAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12plautdietschAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldPersian", + "printedName": "oldPersian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10oldPersianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10oldPersianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10oldPersianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10oldPersianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "palatineGerman", + "printedName": "palatineGerman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14palatineGermanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14palatineGermanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14palatineGermanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14palatineGermanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "phoenician", + "printedName": "phoenician", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10phoenicianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10phoenicianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10phoenicianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10phoenicianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pali", + "printedName": "pali", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4paliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4paliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4paliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4paliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polish", + "printedName": "polish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6polishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6polishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6polishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6polishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piedmontese", + "printedName": "piedmontese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11piedmonteseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11piedmonteseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11piedmonteseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11piedmonteseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pontic", + "printedName": "pontic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6ponticAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ponticAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6ponticAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6ponticAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pohnpeian", + "printedName": "pohnpeian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9pohnpeianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9pohnpeianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9pohnpeianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9pohnpeianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "prussian", + "printedName": "prussian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8prussianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8prussianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8prussianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8prussianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldProvençal", + "printedName": "oldProvençal", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV0015oldProvenal_uJaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0015oldProvenal_uJaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV0015oldProvenal_uJaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0015oldProvenal_uJaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pashto", + "printedName": "pashto", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6pashtoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6pashtoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6pashtoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6pashtoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "portuguese", + "printedName": "portuguese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10portugueseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10portugueseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10portugueseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10portugueseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "quechua", + "printedName": "quechua", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7quechuaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7quechuaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7quechuaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7quechuaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kʼicheʼ", + "printedName": "kʼicheʼ", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV0010kiche_dCceAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0010kiche_dCceAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV0010kiche_dCceAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0010kiche_dCceAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chimborazoHighlandQuichua", + "printedName": "chimborazoHighlandQuichua", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV25chimborazoHighlandQuichuaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV25chimborazoHighlandQuichuaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV25chimborazoHighlandQuichuaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV25chimborazoHighlandQuichuaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rajasthani", + "printedName": "rajasthani", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10rajasthaniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10rajasthaniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10rajasthaniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10rajasthaniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rapanui", + "printedName": "rapanui", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7rapanuiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rapanuiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7rapanuiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rapanuiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rarotongan", + "printedName": "rarotongan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10rarotonganAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10rarotonganAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10rarotonganAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10rarotonganAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "romagnol", + "printedName": "romagnol", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8romagnolAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8romagnolAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8romagnolAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8romagnolAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "riffian", + "printedName": "riffian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7riffianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7riffianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7riffianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7riffianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "romansh", + "printedName": "romansh", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7romanshAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7romanshAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7romanshAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7romanshAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rundi", + "printedName": "rundi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5rundiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5rundiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5rundiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5rundiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "romanian", + "printedName": "romanian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8romanianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8romanianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8romanianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8romanianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rombo", + "printedName": "rombo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5romboAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5romboAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5romboAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5romboAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "romany", + "printedName": "romany", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6romanyAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6romanyAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6romanyAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6romanyAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rotuman", + "printedName": "rotuman", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7rotumanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rotumanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7rotumanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rotumanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "russian", + "printedName": "russian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7russianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7russianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7russianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7russianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rusyn", + "printedName": "rusyn", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5rusynAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5rusynAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5rusynAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5rusynAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "roviana", + "printedName": "roviana", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7rovianaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rovianaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7rovianaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7rovianaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aromanian", + "printedName": "aromanian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9aromanianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9aromanianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9aromanianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9aromanianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kinyarwanda", + "printedName": "kinyarwanda", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11kinyarwandaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11kinyarwandaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11kinyarwandaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11kinyarwandaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rwa", + "printedName": "rwa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3rwaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3rwaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3rwaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3rwaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sanskrit", + "printedName": "sanskrit", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8sanskritAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sanskritAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8sanskritAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sanskritAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sandawe", + "printedName": "sandawe", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7sandaweAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sandaweAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7sandaweAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sandaweAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sakha", + "printedName": "sakha", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5sakhaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sakhaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5sakhaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sakhaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "samaritanAramaic", + "printedName": "samaritanAramaic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV16samaritanAramaicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16samaritanAramaicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV16samaritanAramaicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16samaritanAramaicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "samburu", + "printedName": "samburu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7samburuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7samburuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7samburuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7samburuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sasak", + "printedName": "sasak", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5sasakAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sasakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5sasakAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sasakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "santali", + "printedName": "santali", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7santaliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7santaliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7santaliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7santaliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "saurashtra", + "printedName": "saurashtra", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10saurashtraAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10saurashtraAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10saurashtraAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10saurashtraAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ngambay", + "printedName": "ngambay", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7ngambayAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ngambayAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7ngambayAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7ngambayAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sangu", + "printedName": "sangu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5sanguAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sanguAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5sanguAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sanguAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sardinian", + "printedName": "sardinian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9sardinianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sardinianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9sardinianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sardinianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sicilian", + "printedName": "sicilian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8sicilianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sicilianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8sicilianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sicilianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scots", + "printedName": "scots", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5scotsAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5scotsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5scotsAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5scotsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sindhi", + "printedName": "sindhi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6sindhiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sindhiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6sindhiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sindhiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sassareseSardinian", + "printedName": "sassareseSardinian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV18sassareseSardinianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV18sassareseSardinianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV18sassareseSardinianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV18sassareseSardinianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "southernKurdish", + "printedName": "southernKurdish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15southernKurdishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15southernKurdishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15southernKurdishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15southernKurdishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "northernSami", + "printedName": "northernSami", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12northernSamiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northernSamiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12northernSamiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12northernSamiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "seneca", + "printedName": "seneca", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6senecaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6senecaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6senecaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6senecaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sena", + "printedName": "sena", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4senaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4senaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4senaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4senaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "seri", + "printedName": "seri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4seriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4seriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4seriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4seriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selkup", + "printedName": "selkup", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6selkupAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6selkupAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6selkupAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6selkupAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "koyraboroSenni", + "printedName": "koyraboroSenni", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14koyraboroSenniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14koyraboroSenniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14koyraboroSenniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14koyraboroSenniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sango", + "printedName": "sango", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5sangoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sangoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5sangoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sangoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oldIrish", + "printedName": "oldIrish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8oldIrishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8oldIrishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8oldIrishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8oldIrishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "samogitian", + "printedName": "samogitian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10samogitianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10samogitianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10samogitianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10samogitianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tachelhit", + "printedName": "tachelhit", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9tachelhitAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tachelhitAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9tachelhitAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tachelhitAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shan", + "printedName": "shan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4shanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4shanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4shanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4shanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chadianArabic", + "printedName": "chadianArabic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13chadianArabicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13chadianArabicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13chadianArabicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13chadianArabicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sinhala", + "printedName": "sinhala", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7sinhalaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sinhalaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7sinhalaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sinhalaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sidamo", + "printedName": "sidamo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6sidamoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sidamoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6sidamoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sidamoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "slovak", + "printedName": "slovak", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6slovakAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6slovakAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6slovakAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6slovakAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "slovenian", + "printedName": "slovenian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9slovenianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9slovenianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9slovenianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9slovenianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lowerSilesian", + "printedName": "lowerSilesian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13lowerSilesianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13lowerSilesianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13lowerSilesianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13lowerSilesianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selayar", + "printedName": "selayar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7selayarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7selayarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7selayarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7selayarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "samoan", + "printedName": "samoan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6samoanAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6samoanAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6samoanAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6samoanAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "southernSami", + "printedName": "southernSami", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12southernSamiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12southernSamiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12southernSamiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12southernSamiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "luleSami", + "printedName": "luleSami", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8luleSamiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8luleSamiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8luleSamiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8luleSamiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inariSami", + "printedName": "inariSami", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9inariSamiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9inariSamiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9inariSamiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9inariSamiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skoltSami", + "printedName": "skoltSami", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9skoltSamiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9skoltSamiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9skoltSamiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9skoltSamiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shona", + "printedName": "shona", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5shonaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5shonaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5shonaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5shonaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "soninke", + "printedName": "soninke", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7soninkeAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7soninkeAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7soninkeAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7soninkeAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "somali", + "printedName": "somali", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6somaliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6somaliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6somaliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6somaliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sogdien", + "printedName": "sogdien", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7sogdienAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sogdienAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7sogdienAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7sogdienAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "albanian", + "printedName": "albanian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8albanianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8albanianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8albanianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8albanianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serbian", + "printedName": "serbian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7serbianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7serbianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7serbianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7serbianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "srananTongo", + "printedName": "srananTongo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11srananTongoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11srananTongoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11srananTongoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11srananTongoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serer", + "printedName": "serer", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5sererAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sererAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5sererAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5sererAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swati", + "printedName": "swati", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5swatiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5swatiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5swatiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5swatiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "saho", + "printedName": "saho", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4sahoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4sahoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4sahoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4sahoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "southernSotho", + "printedName": "southernSotho", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV13southernSothoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13southernSothoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV13southernSothoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV13southernSothoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "saterlandFrisian", + "printedName": "saterlandFrisian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV16saterlandFrisianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16saterlandFrisianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV16saterlandFrisianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV16saterlandFrisianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sundanese", + "printedName": "sundanese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9sundaneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sundaneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9sundaneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9sundaneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sukuma", + "printedName": "sukuma", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6sukumaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sukumaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6sukumaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6sukumaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "susu", + "printedName": "susu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4susuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4susuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4susuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4susuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sumerian", + "printedName": "sumerian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8sumerianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sumerianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8sumerianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8sumerianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swedish", + "printedName": "swedish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7swedishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7swedishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7swedishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7swedishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swahili", + "printedName": "swahili", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7swahiliAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7swahiliAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7swahiliAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7swahiliAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "comorian", + "printedName": "comorian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8comorianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8comorianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8comorianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8comorianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "classicalSyriac", + "printedName": "classicalSyriac", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15classicalSyriacAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15classicalSyriacAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15classicalSyriacAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15classicalSyriacAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syriac", + "printedName": "syriac", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6syriacAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6syriacAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6syriacAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6syriacAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "silesian", + "printedName": "silesian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8silesianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8silesianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8silesianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8silesianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tamil", + "printedName": "tamil", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5tamilAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tamilAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5tamilAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tamilAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tulu", + "printedName": "tulu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4tuluAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tuluAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4tuluAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tuluAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "telugu", + "printedName": "telugu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6teluguAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6teluguAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6teluguAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6teluguAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timne", + "printedName": "timne", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5timneAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5timneAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5timneAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5timneAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "teso", + "printedName": "teso", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4tesoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tesoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4tesoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4tesoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tereno", + "printedName": "tereno", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6terenoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6terenoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6terenoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6terenoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tetum", + "printedName": "tetum", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5tetumAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tetumAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5tetumAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tetumAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tajik", + "printedName": "tajik", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5tajikAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tajikAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5tajikAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tajikAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "thai", + "printedName": "thai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4thaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4thaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4thaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4thaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tigrinya", + "printedName": "tigrinya", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8tigrinyaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tigrinyaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8tigrinyaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tigrinyaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tigre", + "printedName": "tigre", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5tigreAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tigreAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5tigreAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tigreAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tiv", + "printedName": "tiv", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3tivAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3tivAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3tivAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3tivAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "turkmen", + "printedName": "turkmen", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7turkmenAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7turkmenAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7turkmenAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7turkmenAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokelau", + "printedName": "tokelau", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tokelauAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tokelauAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tokelauAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tokelauAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tsakhur", + "printedName": "tsakhur", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tsakhurAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tsakhurAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tsakhurAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tsakhurAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tagalog", + "printedName": "tagalog", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tagalogAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tagalogAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tagalogAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tagalogAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "klingon", + "printedName": "klingon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7klingonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7klingonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7klingonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7klingonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tlingit", + "printedName": "tlingit", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tlingitAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tlingitAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tlingitAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tlingitAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "talysh", + "printedName": "talysh", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6talyshAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6talyshAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6talyshAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6talyshAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tamashek", + "printedName": "tamashek", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8tamashekAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tamashekAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8tamashekAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tamashekAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tswana", + "printedName": "tswana", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6tswanaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tswanaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6tswanaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tswanaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tongan", + "printedName": "tongan", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6tonganAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tonganAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6tonganAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tonganAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nyasaTonga", + "printedName": "nyasaTonga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10nyasaTongaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10nyasaTongaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10nyasaTongaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10nyasaTongaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokPisin", + "printedName": "tokPisin", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8tokPisinAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tokPisinAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8tokPisinAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tokPisinAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "turkish", + "printedName": "turkish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7turkishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7turkishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7turkishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7turkishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "turoyo", + "printedName": "turoyo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6turoyoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6turoyoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6turoyoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6turoyoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taroko", + "printedName": "taroko", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6tarokoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tarokoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6tarokoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tarokoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tsonga", + "printedName": "tsonga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6tsongaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tsongaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6tsongaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tsongaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tsakonian", + "printedName": "tsakonian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9tsakonianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tsakonianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9tsakonianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tsakonianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tsimshian", + "printedName": "tsimshian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9tsimshianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tsimshianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9tsimshianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9tsimshianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tatar", + "printedName": "tatar", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5tatarAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tatarAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5tatarAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5tatarAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "muslimTat", + "printedName": "muslimTat", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9muslimTatAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9muslimTatAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9muslimTatAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9muslimTatAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tumbuka", + "printedName": "tumbuka", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tumbukaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tumbukaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tumbukaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tumbukaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tuvalu", + "printedName": "tuvalu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6tuvaluAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tuvaluAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6tuvaluAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6tuvaluAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "twi", + "printedName": "twi", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3twiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3twiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3twiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3twiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tasawaq", + "printedName": "tasawaq", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7tasawaqAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tasawaqAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7tasawaqAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7tasawaqAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tahitian", + "printedName": "tahitian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8tahitianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tahitianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8tahitianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tahitianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tuvinian", + "printedName": "tuvinian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8tuvinianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tuvinianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8tuvinianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8tuvinianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "centralAtlasTamazight", + "printedName": "centralAtlasTamazight", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV21centralAtlasTamazightAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV21centralAtlasTamazightAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV21centralAtlasTamazightAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV21centralAtlasTamazightAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "udmurt", + "printedName": "udmurt", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6udmurtAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6udmurtAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6udmurtAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6udmurtAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uyghur", + "printedName": "uyghur", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6uyghurAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6uyghurAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6uyghurAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6uyghurAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ugaritic", + "printedName": "ugaritic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8ugariticAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8ugariticAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8ugariticAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8ugariticAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ukrainian", + "printedName": "ukrainian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9ukrainianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9ukrainianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9ukrainianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9ukrainianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "umbundu", + "printedName": "umbundu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7umbunduAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7umbunduAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7umbunduAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7umbunduAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urdu", + "printedName": "urdu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4urduAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4urduAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4urduAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4urduAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uzbek", + "printedName": "uzbek", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5uzbekAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5uzbekAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5uzbekAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5uzbekAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vai", + "printedName": "vai", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3vaiAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3vaiAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3vaiAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3vaiAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "venda", + "printedName": "venda", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5vendaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5vendaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5vendaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5vendaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "venetian", + "printedName": "venetian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8venetianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8venetianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8venetianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8venetianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "veps", + "printedName": "veps", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4vepsAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4vepsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4vepsAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4vepsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vietnamese", + "printedName": "vietnamese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10vietnameseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10vietnameseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10vietnameseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10vietnameseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "westFlemish", + "printedName": "westFlemish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11westFlemishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11westFlemishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11westFlemishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11westFlemishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mainFranconian", + "printedName": "mainFranconian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV14mainFranconianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14mainFranconianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV14mainFranconianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV14mainFranconianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "volapük", + "printedName": "volapük", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV0010volapk_HyaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0010volapk_HyaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV0010volapk_HyaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV0010volapk_HyaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "votic", + "printedName": "votic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5voticAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5voticAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5voticAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5voticAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "võro", + "printedName": "võro", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV007vro_onaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV007vro_onaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV007vro_onaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV007vro_onaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "vunjo", + "printedName": "vunjo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5vunjoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5vunjoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5vunjoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5vunjoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "walloon", + "printedName": "walloon", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7walloonAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7walloonAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7walloonAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7walloonAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "walser", + "printedName": "walser", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6walserAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6walserAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6walserAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6walserAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wolaytta", + "printedName": "wolaytta", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8wolayttaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8wolayttaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8wolayttaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8wolayttaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "waray", + "printedName": "waray", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5warayAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5warayAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5warayAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5warayAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "washo", + "printedName": "washo", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5washoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5washoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5washoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5washoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "warlpiri", + "printedName": "warlpiri", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV8warlpiriAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8warlpiriAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV8warlpiriAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV8warlpiriAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wolof", + "printedName": "wolof", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5wolofAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5wolofAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5wolofAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5wolofAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shanghainese", + "printedName": "shanghainese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12shanghaineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12shanghaineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12shanghaineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12shanghaineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kalmyk", + "printedName": "kalmyk", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6kalmykAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kalmykAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6kalmykAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6kalmykAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "xhosa", + "printedName": "xhosa", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5xhosaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5xhosaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5xhosaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5xhosaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mingrelian", + "printedName": "mingrelian", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV10mingrelianAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10mingrelianAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV10mingrelianAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV10mingrelianAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "soga", + "printedName": "soga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4sogaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4sogaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4sogaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4sogaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yao", + "printedName": "yao", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV3yaoAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3yaoAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV3yaoAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV3yaoAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yapese", + "printedName": "yapese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6yapeseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6yapeseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6yapeseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6yapeseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yangben", + "printedName": "yangben", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7yangbenAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7yangbenAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7yangbenAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7yangbenAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yemba", + "printedName": "yemba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV5yembaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5yembaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV5yembaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV5yembaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yiddish", + "printedName": "yiddish", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7yiddishAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7yiddishAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7yiddishAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7yiddishAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yoruba", + "printedName": "yoruba", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6yorubaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6yorubaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6yorubaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6yorubaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nheengatu", + "printedName": "nheengatu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9nheengatuAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9nheengatuAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9nheengatuAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9nheengatuAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cantonese", + "printedName": "cantonese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9cantoneseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9cantoneseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9cantoneseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9cantoneseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zhuang", + "printedName": "zhuang", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6zhuangAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6zhuangAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6zhuangAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6zhuangAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zapotec", + "printedName": "zapotec", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7zapotecAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7zapotecAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7zapotecAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7zapotecAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "blissymbols", + "printedName": "blissymbols", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV11blissymbolsAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11blissymbolsAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV11blissymbolsAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV11blissymbolsAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zeelandic", + "printedName": "zeelandic", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV9zeelandicAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9zeelandicAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV9zeelandicAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV9zeelandicAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zenaga", + "printedName": "zenaga", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV6zenagaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6zenagaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV6zenagaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6zenagaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardMoroccanTamazight", + "printedName": "standardMoroccanTamazight", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV25standardMoroccanTamazightAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV25standardMoroccanTamazightAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV25standardMoroccanTamazightAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV25standardMoroccanTamazightAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "chinese", + "printedName": "chinese", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV7chineseAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chineseAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV7chineseAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV7chineseAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zulu", + "printedName": "zulu", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4zuluAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zuluAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4zuluAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zuluAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zuni", + "printedName": "zuni", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4zuniAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zuniAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4zuniAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zuniAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "zaza", + "printedName": "zaza", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV4zazaAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zazaAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV4zazaAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4zazaAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "undetermined", + "printedName": "undetermined", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV12undeterminedAEvpZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12undeterminedAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV12undeterminedAEvgZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV12undeterminedAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + }, + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO8LanguageV23__derived_struct_equalsySbAE_AEtFZ", + "mangledName": "$s7Amplify11PredictionsO8LanguageV23__derived_struct_equalsySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8LanguageV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify11PredictionsO8LanguageV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "DetectionResult", + "printedName": "DetectionResult", + "children": [ + { + "kind": "Var", + "name": "languageCode", + "printedName": "languageCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCodeAEvp", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCodeAEvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCodeAEvg", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCodeAEvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "score", + "printedName": "score", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV5scoreSdSgvp", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV5scoreSdSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV5scoreSdSgvg", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV5scoreSdSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(languageCode:score:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Language.DetectionResult", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV" + }, + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCode5scoreAgE_SdSgtcfc", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV12languageCode5scoreAgE_SdSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV", + "mangledName": "$s7Amplify11PredictionsO8LanguageV15DetectionResultV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(locale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + }, + { + "kind": "TypeNominal", + "name": "Locale", + "printedName": "Foundation.Locale", + "usr": "s:10Foundation6LocaleV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8LanguageV6localeAE10Foundation6LocaleV_tcfc", + "mangledName": "$s7Amplify11PredictionsO8LanguageV6localeAE10Foundation6LocaleV_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8LanguageV", + "mangledName": "$s7Amplify11PredictionsO8LanguageV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PartOfSpeech", + "printedName": "PartOfSpeech", + "children": [ + { + "kind": "Var", + "name": "adjective", + "printedName": "adjective", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV9adjectiveAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV9adjectiveAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV9adjectiveAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV9adjectiveAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adposition", + "printedName": "adposition", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10adpositionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10adpositionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10adpositionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10adpositionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "adverb", + "printedName": "adverb", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV6adverbAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV6adverbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV6adverbAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV6adverbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "auxiliary", + "printedName": "auxiliary", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV9auxiliaryAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV9auxiliaryAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV9auxiliaryAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV9auxiliaryAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conjunction", + "printedName": "conjunction", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11conjunctionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11conjunctionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11conjunctionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11conjunctionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "coordinatingConjunction", + "printedName": "coordinatingConjunction", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV23coordinatingConjunctionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV23coordinatingConjunctionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV23coordinatingConjunctionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV23coordinatingConjunctionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "determiner", + "printedName": "determiner", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10determinerAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10determinerAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10determinerAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10determinerAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "interjection", + "printedName": "interjection", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV12interjectionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV12interjectionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV12interjectionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV12interjectionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "noun", + "printedName": "noun", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV4nounAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV4nounAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV4nounAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV4nounAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numeral", + "printedName": "numeral", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7numeralAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7numeralAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7numeralAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7numeralAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV5otherAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV5otherAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV5otherAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV5otherAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "particle", + "printedName": "particle", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV8particleAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV8particleAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV8particleAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV8particleAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pronoun", + "printedName": "pronoun", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7pronounAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7pronounAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7pronounAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7pronounAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "properNoun", + "printedName": "properNoun", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10properNounAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10properNounAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV10properNounAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV10properNounAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "punctuation", + "printedName": "punctuation", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11punctuationAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11punctuationAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11punctuationAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11punctuationAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "preposition", + "printedName": "preposition", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11prepositionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11prepositionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV11prepositionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV11prepositionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "subordinatingConjunction", + "printedName": "subordinatingConjunction", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV24subordinatingConjunctionAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV24subordinatingConjunctionAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV24subordinatingConjunctionAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV24subordinatingConjunctionAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "symbol", + "printedName": "symbol", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV6symbolAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV6symbolAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV6symbolAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV6symbolAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verb", + "printedName": "verb", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV4verbAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV4verbAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV4verbAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV4verbAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7unknownAEvpZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7unknownAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV7unknownAEvgZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV7unknownAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + }, + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV23__derived_struct_equalsySbAE_AEtFZ", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV23__derived_struct_equalsySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "DetectionResult", + "printedName": "DetectionResult", + "children": [ + { + "kind": "Var", + "name": "partOfSpeech", + "printedName": "partOfSpeech", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE0AEvp", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE0AEvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE0AEvg", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE0AEvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "score", + "printedName": "score", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV5scoreSfSgvp", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV5scoreSfSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV5scoreSfSgvg", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV5scoreSfSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(partOfSpeech:score:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.PartOfSpeech.DetectionResult", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV" + }, + { + "kind": "TypeNominal", + "name": "PartOfSpeech", + "printedName": "Amplify.Predictions.PartOfSpeech", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Float?", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE05scoreAgE_SfSgtcfc", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV04partdE05scoreAgE_SfSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV", + "mangledName": "$s7Amplify11PredictionsO12PartOfSpeechV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Polygon", + "printedName": "Polygon", + "children": [ + { + "kind": "Var", + "name": "points", + "printedName": "points", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7PolygonV6pointsSaySo7CGPointVGvp", + "mangledName": "$s7Amplify11PredictionsO7PolygonV6pointsSaySo7CGPointVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7PolygonV6pointsSaySo7CGPointVGvg", + "mangledName": "$s7Amplify11PredictionsO7PolygonV6pointsSaySo7CGPointVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(points:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGPoint]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7PolygonV6pointsAESaySo7CGPointVG_tcfc", + "mangledName": "$s7Amplify11PredictionsO7PolygonV6pointsAESaySo7CGPointVG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7PolygonV", + "mangledName": "$s7Amplify11PredictionsO7PolygonV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Pose", + "printedName": "Pose", + "children": [ + { + "kind": "Var", + "name": "pitch", + "printedName": "pitch", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO4PoseV5pitchSdvp", + "mangledName": "$s7Amplify11PredictionsO4PoseV5pitchSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO4PoseV5pitchSdvg", + "mangledName": "$s7Amplify11PredictionsO4PoseV5pitchSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "roll", + "printedName": "roll", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO4PoseV4rollSdvp", + "mangledName": "$s7Amplify11PredictionsO4PoseV4rollSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO4PoseV4rollSdvg", + "mangledName": "$s7Amplify11PredictionsO4PoseV4rollSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yaw", + "printedName": "yaw", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO4PoseV3yawSdvp", + "mangledName": "$s7Amplify11PredictionsO4PoseV3yawSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO4PoseV3yawSdvg", + "mangledName": "$s7Amplify11PredictionsO4PoseV3yawSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pitch:roll:yaw:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Pose", + "printedName": "Amplify.Predictions.Pose", + "usr": "s:7Amplify11PredictionsO4PoseV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO4PoseV5pitch4roll3yawAESd_S2dtcfc", + "mangledName": "$s7Amplify11PredictionsO4PoseV5pitch4roll3yawAESd_S2dtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO4PoseV", + "mangledName": "$s7Amplify11PredictionsO4PoseV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Selection", + "printedName": "Selection", + "children": [ + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SelectionV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO9SelectionV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SelectionV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO9SelectionV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SelectionV7polygonAC7PolygonVvp", + "mangledName": "$s7Amplify11PredictionsO9SelectionV7polygonAC7PolygonVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SelectionV7polygonAC7PolygonVvg", + "mangledName": "$s7Amplify11PredictionsO9SelectionV7polygonAC7PolygonVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSelected", + "printedName": "isSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SelectionV10isSelectedSbvp", + "mangledName": "$s7Amplify11PredictionsO9SelectionV10isSelectedSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SelectionV10isSelectedSbvg", + "mangledName": "$s7Amplify11PredictionsO9SelectionV10isSelectedSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(boundingBox:polygon:isSelected:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Selection", + "printedName": "Amplify.Predictions.Selection", + "usr": "s:7Amplify11PredictionsO9SelectionV" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9SelectionV11boundingBox7polygon10isSelectedAESo6CGRectV_AC7PolygonVSbtcfc", + "mangledName": "$s7Amplify11PredictionsO9SelectionV11boundingBox7polygon10isSelectedAESo6CGRectV_AC7PolygonVSbtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9SelectionV", + "mangledName": "$s7Amplify11PredictionsO9SelectionV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Sentiment", + "printedName": "Sentiment", + "children": [ + { + "kind": "Var", + "name": "predominantSentiment", + "printedName": "predominantSentiment", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV011predominantC0AE4KindVvp", + "mangledName": "$s7Amplify11PredictionsO9SentimentV011predominantC0AE4KindVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV011predominantC0AE4KindVvg", + "mangledName": "$s7Amplify11PredictionsO9SentimentV011predominantC0AE4KindVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sentimentScores", + "printedName": "sentimentScores", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV15sentimentScoresSDyAE4KindVSdGSgvp", + "mangledName": "$s7Amplify11PredictionsO9SentimentV15sentimentScoresSDyAE4KindVSdGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV15sentimentScoresSDyAE4KindVSdGSgvg", + "mangledName": "$s7Amplify11PredictionsO9SentimentV15sentimentScoresSDyAE4KindVSdGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(predominantSentiment:sentimentScores:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Sentiment", + "printedName": "Amplify.Predictions.Sentiment", + "usr": "s:7Amplify11PredictionsO9SentimentV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Amplify.Predictions.Sentiment.Kind : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9SentimentV011predominantC015sentimentScoresA2E4KindV_SDyAISdGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO9SentimentV011predominantC015sentimentScoresA2E4KindV_SDyAISdGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV7unknownAGvpZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV7unknownAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV7unknownAGvgZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV7unknownAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "positive", + "printedName": "positive", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV8positiveAGvpZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV8positiveAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV8positiveAGvgZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV8positiveAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "negative", + "printedName": "negative", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV8negativeAGvpZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV8negativeAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV8negativeAGvgZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV8negativeAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "neutral", + "printedName": "neutral", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV7neutralAGvpZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV7neutralAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV7neutralAGvgZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV7neutralAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mixed", + "printedName": "mixed", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV5mixedAGvpZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV5mixedAGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV5mixedAGvgZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV5mixedAGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + }, + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Sentiment.Kind", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV23__derived_struct_equalsySbAG_AGtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV4hash4intoys6HasherVz_tF", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV4hash4intoys6HasherVz_tF", + "moduleName": "Amplify", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV9hashValueSivp", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV9hashValueSivp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV9hashValueSivg", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV9hashValueSivg", + "moduleName": "Amplify", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9SentimentV4KindV", + "mangledName": "$s7Amplify11PredictionsO9SentimentV4KindV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9SentimentV", + "mangledName": "$s7Amplify11PredictionsO9SentimentV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "SyntaxToken", + "printedName": "SyntaxToken", + "children": [ + { + "kind": "Var", + "name": "tokenId", + "printedName": "tokenId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV7tokenIdSivp", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV7tokenIdSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV7tokenIdSivg", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV7tokenIdSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "range", + "printedName": "range", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV5rangeSnySS5IndexVGvp", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV5rangeSnySS5IndexVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV5rangeSnySS5IndexVGvg", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV5rangeSnySS5IndexVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "detectedPartOfSpeech", + "printedName": "detectedPartOfSpeech", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.PartOfSpeech.DetectionResult", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV20detectedPartOfSpeechAC0fgH0V15DetectionResultVvp", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV20detectedPartOfSpeechAC0fgH0V15DetectionResultVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.PartOfSpeech.DetectionResult", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV20detectedPartOfSpeechAC0fgH0V15DetectionResultVvg", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV20detectedPartOfSpeechAC0fgH0V15DetectionResultVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenId:text:range:detectedPartOfSpeech:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SyntaxToken", + "printedName": "Amplify.Predictions.SyntaxToken", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ], + "usr": "s:Sn" + }, + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.PartOfSpeech.DetectionResult", + "usr": "s:7Amplify11PredictionsO12PartOfSpeechV15DetectionResultV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV7tokenId4text5range20detectedPartOfSpeechAESi_SSSnySS5IndexVGAC0jkL0V15DetectionResultVtcfc", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV7tokenId4text5range20detectedPartOfSpeechAESi_SSSnySS5IndexVGAC0jkL0V15DetectionResultVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV", + "mangledName": "$s7Amplify11PredictionsO11SyntaxTokenV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Table", + "printedName": "Table", + "children": [ + { + "kind": "Var", + "name": "rows", + "printedName": "rows", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4rowsSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV4rowsSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4rowsSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV4rowsSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4rowsSivs", + "mangledName": "$s7Amplify11PredictionsO5TableV4rowsSivs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "columns", + "printedName": "columns", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV7columnsSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV7columnsSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV7columnsSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV7columnsSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV7columnsSivs", + "mangledName": "$s7Amplify11PredictionsO5TableV7columnsSivs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "cells", + "printedName": "cells", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table.Cell]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cell", + "printedName": "Amplify.Predictions.Table.Cell", + "usr": "s:7Amplify11PredictionsO5TableV4CellV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvp", + "mangledName": "$s7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table.Cell]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cell", + "printedName": "Amplify.Predictions.Table.Cell", + "usr": "s:7Amplify11PredictionsO5TableV4CellV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvg", + "mangledName": "$s7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table.Cell]", + "children": [ + { + "kind": "TypeNominal", + "name": "Cell", + "printedName": "Amplify.Predictions.Table.Cell", + "usr": "s:7Amplify11PredictionsO5TableV4CellV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvs", + "mangledName": "$s7Amplify11PredictionsO5TableV5cellsSayAE4CellVGvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Table", + "printedName": "Amplify.Predictions.Table", + "usr": "s:7Amplify11PredictionsO5TableV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO5TableVAEycfc", + "mangledName": "$s7Amplify11PredictionsO5TableVAEycfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Cell", + "printedName": "Cell", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBox", + "printedName": "boundingBox", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV11boundingBoxSo6CGRectVvp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV11boundingBoxSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV11boundingBoxSo6CGRectVvg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV11boundingBoxSo6CGRectVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "polygon", + "printedName": "polygon", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV7polygonAC7PolygonVvp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV7polygonAC7PolygonVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV7polygonAC7PolygonVvg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV7polygonAC7PolygonVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSelected", + "printedName": "isSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV10isSelectedSbvp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV10isSelectedSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV10isSelectedSbvg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV10isSelectedSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rowIndex", + "printedName": "rowIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV8rowIndexSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV8rowIndexSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV8rowIndexSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV8rowIndexSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "columnIndex", + "printedName": "columnIndex", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV11columnIndexSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV11columnIndexSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV11columnIndexSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV11columnIndexSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rowSpan", + "printedName": "rowSpan", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV7rowSpanSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV7rowSpanSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV7rowSpanSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV7rowSpanSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "columnSpan", + "printedName": "columnSpan", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5TableV4CellV10columnSpanSivp", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV10columnSpanSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV10columnSpanSivg", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV10columnSpanSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(text:boundingBox:polygon:isSelected:rowIndex:columnIndex:rowSpan:columnSpan:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Cell", + "printedName": "Amplify.Predictions.Table.Cell", + "usr": "s:7Amplify11PredictionsO5TableV4CellV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Polygon", + "printedName": "Amplify.Predictions.Polygon", + "usr": "s:7Amplify11PredictionsO7PolygonV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO5TableV4CellV4text11boundingBox7polygon10isSelected8rowIndex06columnL00K4Span0mN0AGSS_So6CGRectVAC7PolygonVSbS4itcfc", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV4text11boundingBox7polygon10isSelected8rowIndex06columnL00K4Span0mN0AGSS_So6CGRectVAC7PolygonVSbS4itcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO5TableV4CellV", + "mangledName": "$s7Amplify11PredictionsO5TableV4CellV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO5TableV", + "mangledName": "$s7Amplify11PredictionsO5TableV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "TextFormatType", + "printedName": "TextFormatType", + "children": [ + { + "kind": "Var", + "name": "all", + "printedName": "all", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV3allAEvpZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV3allAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV3allAEvgZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV3allAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV4formAEvpZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV4formAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV4formAEvgZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV4formAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "table", + "printedName": "table", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV5tableAEvpZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV5tableAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV5tableAEvgZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV5tableAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "plain", + "printedName": "plain", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV5plainAEvpZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV5plainAEvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV5plainAEvgZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV5plainAEvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "__derived_struct_equals", + "printedName": "__derived_struct_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + }, + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV23__derived_struct_equalsySbAE_AEtFZ", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV23__derived_struct_equalsySbAE_AEtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV", + "mangledName": "$s7Amplify11PredictionsO14TextFormatTypeV", + "moduleName": "Amplify", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Voice", + "printedName": "Voice", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5VoiceV2idSSvp", + "mangledName": "$s7Amplify11PredictionsO5VoiceV2idSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5VoiceV2idSSvg", + "mangledName": "$s7Amplify11PredictionsO5VoiceV2idSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(id:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Voice", + "printedName": "Amplify.Predictions.Voice", + "usr": "s:7Amplify11PredictionsO5VoiceV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO5VoiceV2idAESS_tcfc", + "mangledName": "$s7Amplify11PredictionsO5VoiceV2idAESS_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO5VoiceV", + "mangledName": "$s7Amplify11PredictionsO5VoiceV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Convert", + "printedName": "Convert", + "children": [ + { + "kind": "TypeDecl", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "Var", + "name": "input", + "printedName": "input", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV5inputxvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV5inputxvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV5inputxvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV5inputxvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4kindAG4KindOy__xq_q0__Gvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4kindAG4KindOy__xq_q0__Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl", + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4kindAG4KindOy__xq_q0__Gvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4kindAG4KindOy__xq_q0__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "TypeAlias", + "name": "BidirectionalLift", + "printedName": "BidirectionalLift", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "((T) -> U, (U) -> T)", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(T) -> U", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "U" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(T)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(U) -> T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(U)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "U" + } + ] + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO17BidirectionalLifta", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO17BidirectionalLifta", + "moduleName": "Amplify", + "genericSig": "", + "spi_group_names": [ + "PredictionsConvertRequestKind" + ] + }, + { + "kind": "Var", + "name": "textToSpeech", + "printedName": "textToSpeech", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Convert.Request.Kind.Type) -> (Amplify.Predictions.Convert.Request.Kind.Lift) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO12textToSpeechyAIy__xq_q0__GAI4LiftVy__xq_q0___SSxAE04TextgH0O7OptionsVSgq_SgAO6ResultVq0_GcAKmr1_lF", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO12textToSpeechyAIy__xq_q0__GAI4LiftVy__xq_q0___SSxAE04TextgH0O7OptionsVSgq_SgAO6ResultVq0_GcAKmr1_lF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsConvertRequestKind" + ] + }, + { + "kind": "Var", + "name": "speechToText", + "printedName": "speechToText", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Convert.Request.Kind.Type) -> (Amplify.Predictions.Convert.Request.Kind.Lift, Output>) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift, Output>) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift, Output>)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Lift, Output>", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AsyncThrowingStream", + "printedName": "_Concurrency.AsyncThrowingStream", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Scs" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO12speechToTextyAIy__xq_q0__GAI4LiftVy__xq_q0___10Foundation3URLVxAE06SpeechgH0O7OptionsVSgq_SgScsyAR6ResultVs5Error_pGq0_GcAKmr1_lF", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO12speechToTextyAIy__xq_q0__GAI4LiftVy__xq_q0___10Foundation3URLVxAE06SpeechgH0O7OptionsVSgq_SgScsyAR6ResultVs5Error_pGq0_GcAKmr1_lF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsConvertRequestKind" + ] + }, + { + "kind": "Var", + "name": "textToTranslate", + "printedName": "textToTranslate", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Convert.Request.Kind.Type) -> (Amplify.Predictions.Convert.Request.Kind.Lift<(Swift.String, Amplify.Predictions.Language?, Amplify.Predictions.Language?), Input, Amplify.Predictions.Convert.TranslateText.Options?, Options?, Amplify.Predictions.Convert.TranslateText.Result, Output>) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift<(Swift.String, Amplify.Predictions.Language?, Amplify.Predictions.Language?), Input, Amplify.Predictions.Convert.TranslateText.Options?, Options?, Amplify.Predictions.Convert.TranslateText.Result, Output>) -> Amplify.Predictions.Convert.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Lift<(Swift.String, Amplify.Predictions.Language?, Amplify.Predictions.Language?), Input, Amplify.Predictions.Convert.TranslateText.Options?, Options?, Amplify.Predictions.Convert.TranslateText.Result, Output>)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Lift<(Swift.String, Amplify.Predictions.Language?, Amplify.Predictions.Language?), Input, Amplify.Predictions.Convert.TranslateText.Options?, Options?, Amplify.Predictions.Convert.TranslateText.Result, Output>", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Amplify.Predictions.Language?, Amplify.Predictions.Language?)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.TranslateText.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Convert.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Convert.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Convert.Request.Kind", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO15textToTranslateyAIy__xq_q0__GAI4LiftVy__xq_q0___SS_AC8LanguageVSgAPtxAE0H4TextO7OptionsVSgq_SgAR6ResultVq0_GcAKmr1_lF", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO15textToTranslateyAIy__xq_q0__GAI4LiftVy__xq_q0___SS_AC8LanguageVSgAPtxAE0H4TextO7OptionsVSgq_SgAR6ResultVq0_GcAKmr1_lF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsConvertRequestKind" + ] + }, + { + "kind": "TypeDecl", + "name": "Lift", + "printedName": "Lift", + "children": [ + { + "kind": "Var", + "name": "inputSpecificToGeneric", + "printedName": "inputSpecificToGeneric", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificInput) -> GenericInput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericInput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificInput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificInput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputSpecificToGenericyqd_0_qd__cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputSpecificToGenericyqd_0_qd__cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificInput) -> GenericInput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericInput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificInput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificInput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputSpecificToGenericyqd_0_qd__cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputSpecificToGenericyqd_0_qd__cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inputGenericToSpecific", + "printedName": "inputGenericToSpecific", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericInput) -> SpecificInput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificInput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericInput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericInput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputGenericToSpecificyqd__qd_0_cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputGenericToSpecificyqd__qd_0_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericInput) -> SpecificInput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificInput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericInput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericInput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputGenericToSpecificyqd__qd_0_cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV22inputGenericToSpecificyqd__qd_0_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "optionsSpecificToGeneric", + "printedName": "optionsSpecificToGeneric", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOptions) -> GenericOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOptions" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOptions)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOptions" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsSpecificToGenericyqd_2_qd_1_cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsSpecificToGenericyqd_2_qd_1_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOptions) -> GenericOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOptions" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOptions)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOptions" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsSpecificToGenericyqd_2_qd_1_cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsSpecificToGenericyqd_2_qd_1_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "optionsGenericToSpecific", + "printedName": "optionsGenericToSpecific", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOptions) -> SpecificOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOptions" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOptions)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOptions" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsGenericToSpecificyqd_1_qd_2_cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsGenericToSpecificyqd_1_qd_2_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOptions) -> SpecificOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOptions" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOptions)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOptions" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsGenericToSpecificyqd_1_qd_2_cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV24optionsGenericToSpecificyqd_1_qd_2_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outputSpecificToGeneric", + "printedName": "outputSpecificToGeneric", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOutput) -> GenericOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_4_qd_3_cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_4_qd_3_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOutput) -> GenericOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_4_qd_3_cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_4_qd_3_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outputGenericToSpecific", + "printedName": "outputGenericToSpecific", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOutput) -> SpecificOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputGenericToSpecificyqd_3_qd_4_cvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputGenericToSpecificyqd_3_qd_4_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOutput) -> SpecificOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputGenericToSpecificyqd_3_qd_4_cvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV23outputGenericToSpecificyqd_3_qd_4_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO4LiftV", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "SPIAccessControl" + ], + "isFromExtension": true, + "spi_group_names": [ + "PredictionsConvertRequestKind" + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV4KindO", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV4KindO", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "SPIAccessControl" + ], + "isFromExtension": true, + "spi_group_names": [ + "PredictionsConvertRequestKind" + ], + "isEnumExhaustive": true + }, + { + "kind": "Function", + "name": "speechToText", + "printedName": "speechToText(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestVAA10Foundation3URLVRszAE12SpeechToTextO7OptionsVRs_ScsyAL6ResultVs5Error_pGRs0_rlE06speechhI03urlAGy__AjnRGAJ_tFZ", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestVAA10Foundation3URLVRszAE12SpeechToTextO7OptionsVRs_ScsyAL6ResultVs5Error_pGRs0_rlE06speechhI03urlAGy__AjnRGAJ_tFZ", + "moduleName": "Amplify", + "genericSig": ">", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "textToSpeech", + "printedName": "textToSpeech(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestVAASSRszAE12TextToSpeechO7OptionsVRs_AI6ResultVRs0_rlE04textfG0yAGy__SSAkMGSSFZ", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestVAASSRszAE12TextToSpeechO7OptionsVRs_AI6ResultVRs0_rlE04textfG0yAGy__SSAkMGSSFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "translateText", + "printedName": "translateText(_:from:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestVAASS_AC8LanguageVSgAJtRszAE13TranslateTextO7OptionsVRs_AL6ResultVRs0_rlE09translateG0_4from2toAGy__SS_A2JtAnPGSS_A2JtFZ", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestVAASS_AC8LanguageVSgAJtRszAE13TranslateTextO7OptionsVRs_AL6ResultVRs0_rlE09translateG0_4from2toAGy__SS_A2JtAnPGSS_A2JtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO7RequestV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "SpeechToText", + "printedName": "SpeechToText", + "children": [ + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultNetworkPolicy", + "printedName": "defaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "language", + "printedName": "language", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV8languageAC8LanguageVSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV8languageAC8LanguageVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV8languageAC8LanguageVSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV8languageAC8LanguageVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultNetworkPolicy:language:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "hasDefaultArg": true, + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicy8language06pluginG0AiA07DefaultiJ0O_AC8LanguageVSgypSgtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV20defaultNetworkPolicy8language06pluginG0AiA07DefaultiJ0O_AC8LanguageVSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "Var", + "name": "speechToText", + "printedName": "speechToText", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF010Foundation3URLVvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF010Foundation3URLVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF010Foundation3URLVvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF010Foundation3URLVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV7optionsAG7OptionsVvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV7optionsAG7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV7optionsAG7OptionsVvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV7optionsAG7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(speechToText:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Request", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF07optionsAI10Foundation3URLV_AG7OptionsVtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV06speecheF07optionsAI10Foundation3URLV_AG7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO7RequestV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "transcription", + "printedName": "transcription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionSSvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionSSvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(transcription:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.SpeechToText.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionAISS_tcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV13transcriptionAISS_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO7ConvertO12SpeechToTextO", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12SpeechToTextO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "TextToSpeech", + "printedName": "TextToSpeech", + "children": [ + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultNetworkPolicy", + "printedName": "defaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicyAA07DefaultiJ0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "voice", + "printedName": "voice", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Voice?", + "children": [ + { + "kind": "TypeNominal", + "name": "Voice", + "printedName": "Amplify.Predictions.Voice", + "usr": "s:7Amplify11PredictionsO5VoiceV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV5voiceAC5VoiceVSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV5voiceAC5VoiceVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Voice?", + "children": [ + { + "kind": "TypeNominal", + "name": "Voice", + "printedName": "Amplify.Predictions.Voice", + "usr": "s:7Amplify11PredictionsO5VoiceV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV5voiceAC5VoiceVSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV5voiceAC5VoiceVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV06pluginG0ypSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV06pluginG0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV06pluginG0ypSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV06pluginG0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultNetworkPolicy:voice:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "hasDefaultArg": true, + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Voice?", + "children": [ + { + "kind": "TypeNominal", + "name": "Voice", + "printedName": "Amplify.Predictions.Voice", + "usr": "s:7Amplify11PredictionsO5VoiceV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicy5voice06pluginG0AiA07DefaultiJ0O_AC5VoiceVSgypSgtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV20defaultNetworkPolicy5voice06pluginG0AiA07DefaultiJ0O_AC5VoiceVSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "Var", + "name": "textToSpeech", + "printedName": "textToSpeech", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF0SSvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF0SSvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV7optionsAG7OptionsVvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV7optionsAG7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV7optionsAG7OptionsVvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV7optionsAG7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textToSpeech:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Request", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF07optionsAISS_AG7OptionsVtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV04texteF07optionsAISS_AG7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO7RequestV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "audioData", + "printedName": "audioData", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioData10Foundation0I0Vvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioData10Foundation0I0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioData10Foundation0I0Vvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioData10Foundation0I0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(audioData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.TextToSpeech.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioDataAI10Foundation0I0V_tcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV9audioDataAI10Foundation0I0V_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO7ConvertO12TextToSpeechO", + "mangledName": "$s7Amplify11PredictionsO7ConvertO12TextToSpeechO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "TranslateText", + "printedName": "TranslateText", + "children": [ + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultNetworkPolicy", + "printedName": "defaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicyAA07DefaulthI0Ovp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicyAA07DefaulthI0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicyAA07DefaulthI0Ovg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicyAA07DefaulthI0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultNetworkPolicy:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "hasDefaultArg": true, + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicy06pluginF0AiA07DefaulthI0O_ypSgtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV20defaultNetworkPolicy06pluginF0AiA07DefaulthI0O_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "Var", + "name": "textToTranslate", + "printedName": "textToTranslate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD0SSvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD0SSvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetLanguage", + "printedName": "targetLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV14targetLanguageAC0H0VSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV14targetLanguageAC0H0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV14targetLanguageAC0H0VSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV14targetLanguageAC0H0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "language", + "printedName": "language", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV8languageAC8LanguageVSgvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV8languageAC8LanguageVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV8languageAC8LanguageVSgvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV8languageAC8LanguageVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV7optionsAG7OptionsVvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV7optionsAG7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV7optionsAG7OptionsVvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV7optionsAG7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(textToTranslate:targetLanguage:language:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.TranslateText.Request", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language?", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Convert.TranslateText.Options", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD014targetLanguage8language7optionsAISS_AC0J0VSgApG7OptionsVtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV06textToD014targetLanguage8language7optionsAISS_AC0J0VSgApG7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO7RequestV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4textSSvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4textSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4textSSvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4textSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetLanguage", + "printedName": "targetLanguage", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV14targetLanguageAC0H0Vvp", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV14targetLanguageAC0H0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV14targetLanguageAC0H0Vvg", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV14targetLanguageAC0H0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(text:targetLanguage:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Convert.TranslateText.Result", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Language", + "printedName": "Amplify.Predictions.Language", + "usr": "s:7Amplify11PredictionsO8LanguageV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4text14targetLanguageAISS_AC0I0Vtcfc", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV4text14targetLanguageAISS_AC0I0Vtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO7ConvertO13TranslateTextO", + "mangledName": "$s7Amplify11PredictionsO7ConvertO13TranslateTextO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO7ConvertO", + "mangledName": "$s7Amplify11PredictionsO7ConvertO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "Identify", + "printedName": "Identify", + "children": [ + { + "kind": "TypeDecl", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "Var", + "name": "kind", + "printedName": "kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4kindAG4KindOy__x_Gvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4kindAG4KindOy__x_Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl", + "HasStorage" + ], + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4kindAG4KindOy__x_Gvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4kindAG4KindOy__x_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "celebrities", + "printedName": "celebrities", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Celebrities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE11CelebritiesO6ResultVRszlE11celebritiesAGy__AKGvpZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE11CelebritiesO6ResultVRszlE11celebritiesAGy__AKGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Celebrities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE11CelebritiesO6ResultVRszlE11celebritiesAGy__AKGvgZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE11CelebritiesO6ResultVRszlE11celebritiesAGy__AKGvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "textInDocument", + "printedName": "textInDocument(textFormatType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE12DocumentTextO6ResultVRszlE06textInE00H10FormatTypeAGy__AKGAC0fjK0V_tFZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE12DocumentTextO6ResultVRszlE06textInE00H10FormatTypeAGy__AKGAC0fjK0V_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "entities", + "printedName": "entities", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Entities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE8EntitiesO6ResultVRszlE8entitiesAGy__AKGvpZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE8EntitiesO6ResultVRszlE8entitiesAGy__AKGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Entities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE8EntitiesO6ResultVRszlE8entitiesAGy__AKGvgZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE8EntitiesO6ResultVRszlE8entitiesAGy__AKGvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "entitiesFromCollection", + "printedName": "entitiesFromCollection(withID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE13EntityMatchesO6ResultVRszlE22entitiesFromCollection6withIDAGy__AKGSS_tFZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE13EntityMatchesO6ResultVRszlE22entitiesFromCollection6withIDAGy__AKGSS_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "labels", + "printedName": "labels(type:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "hasDefaultArg": true, + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE6LabelsO6ResultVRszlE6labels4typeAGy__AKGAC9LabelTypeV_tFZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE6LabelsO6ResultVRszlE6labels4typeAGy__AKGAC9LabelTypeV_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Kind", + "printedName": "Kind", + "children": [ + { + "kind": "TypeAlias", + "name": "Lifting", + "printedName": "Lifting", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "((T) -> Output, (Output) -> T)", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(T) -> Output", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(T)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Output) -> T", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Output)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ] + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO7Liftinga", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO7Liftinga", + "moduleName": "Amplify", + "genericSig": "", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectCelebrities", + "printedName": "detectCelebrities", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Celebrities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO17detectCelebritiesyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO17detectCelebritiesyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectEntities", + "printedName": "detectEntities", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Entities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO14detectEntitiesyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO14detectEntitiesyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectEntitiesCollection", + "printedName": "detectEntitiesCollection", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Swift.String, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.EntityMatches.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO24detectEntitiesCollectionyAIy__x_GSS_AI4LiftVy__x__AE13EntityMatchesO6ResultVxGtcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO24detectEntitiesCollectionyAIy__x_GSS_AI4LiftVy__x__AE13EntityMatchesO6ResultVxGtcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectLabels", + "printedName": "detectLabels", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Amplify.Predictions.LabelType, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.LabelType, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.Predictions.LabelType, Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "LabelType", + "printedName": "Amplify.Predictions.LabelType", + "usr": "s:7Amplify11PredictionsO9LabelTypeV" + }, + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Labels.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO12detectLabelsyAIy__x_GAC9LabelTypeV_AI4LiftVy__x__AE0G0O6ResultVxGtcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO12detectLabelsyAIy__x_GAC9LabelTypeV_AI4LiftVy__x__AE0G0O6ResultVxGtcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectTextInDocument", + "printedName": "detectTextInDocument", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Amplify.Predictions.TextFormatType, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.TextFormatType, Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.Predictions.TextFormatType, Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "TextFormatType", + "printedName": "Amplify.Predictions.TextFormatType", + "usr": "s:7Amplify11PredictionsO14TextFormatTypeV" + }, + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.DocumentText.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO20detectTextInDocumentyAIy__x_GAC0G10FormatTypeV_AI4LiftVy__x__AE0iG0O6ResultVxGtcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO20detectTextInDocumentyAIy__x_GAC0G10FormatTypeV_AI4LiftVy__x__AE0iG0O6ResultVxGtcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "Var", + "name": "detectText", + "printedName": "detectText", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": " (Amplify.Predictions.Identify.Request.Kind.Type) -> (Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift) -> Amplify.Predictions.Identify.Request.Kind", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Lift)", + "children": [ + { + "kind": "TypeNominal", + "name": "Lift", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Lift", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Text.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.Predictions.Identify.Request.Kind.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.Predictions.Identify.Request.Kind.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Kind", + "printedName": "Amplify.Predictions.Identify.Request.Kind", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO10detectTextyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO10detectTextyAIy__x_GAI4LiftVy__x__AE0G0O6ResultVxGcAKmlF", + "moduleName": "Amplify", + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + }, + { + "kind": "TypeDecl", + "name": "Lift", + "printedName": "Lift", + "children": [ + { + "kind": "Var", + "name": "outputSpecificToGeneric", + "printedName": "outputSpecificToGeneric", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOutput) -> GenericOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_0_qd__cvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_0_qd__cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(SpecificOutput) -> GenericOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(SpecificOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_0_qd__cvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputSpecificToGenericyqd_0_qd__cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outputGenericToSpecific", + "printedName": "outputGenericToSpecific", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOutput) -> SpecificOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputGenericToSpecificyqd__qd_0_cvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputGenericToSpecificyqd__qd_0_cvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(GenericOutput) -> SpecificOutput", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "SpecificOutput" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(GenericOutput)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "GenericOutput" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputGenericToSpecificyqd__qd_0_cvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV23outputGenericToSpecificyqd__qd_0_cvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO4LiftV", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV4KindO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV4KindO", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "SPIAccessControl" + ], + "isFromExtension": true, + "spi_group_names": [ + "PredictionsIdentifyRequestKind" + ], + "isEnumExhaustive": true + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Text.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE4TextO6ResultVRszlE4textAGy__AKGvpZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE4TextO6ResultVRszlE4textAGy__AKGvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Text.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestVAaE4TextO6ResultVRszlE4textAGy__AKGvgZ", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestVAaE4TextO6ResultVRszlE4textAGy__AKGvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7RequestV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultNetworkPolicy", + "printedName": "defaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV06pluginD0ypSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV06pluginD0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV06pluginD0ypSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV06pluginD0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultNetworkPolicy:uploadToRemote:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Identify.Options", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "hasDefaultArg": true, + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicy14uploadToRemote06pluginD0AgA07DefaultfG0O_SbypSgtcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV20defaultNetworkPolicy14uploadToRemote06pluginD0AgA07DefaultfG0O_SbypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO7OptionsV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Celebrities", + "printedName": "Celebrities", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "celebrities", + "printedName": "celebrities", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Celebrity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Celebrity", + "printedName": "Amplify.Predictions.Celebrity", + "usr": "s:7Amplify11PredictionsO9CelebrityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesSayAC9CelebrityVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesSayAC9CelebrityVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Celebrity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Celebrity", + "printedName": "Amplify.Predictions.Celebrity", + "usr": "s:7Amplify11PredictionsO9CelebrityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesSayAC9CelebrityVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesSayAC9CelebrityVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(celebrities:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Celebrities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Celebrity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Celebrity", + "printedName": "Amplify.Predictions.Celebrity", + "usr": "s:7Amplify11PredictionsO9CelebrityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesAISayAC9CelebrityVG_tcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV11celebritiesAISayAC9CelebrityVG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO11CelebritiesO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO11CelebritiesO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO11CelebritiesO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "DocumentText", + "printedName": "DocumentText", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "fullText", + "printedName": "fullText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE0SSvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE0SSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE0SSvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE0SSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "words", + "printedName": "words", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV5wordsSayAC14IdentifiedWordVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV5wordsSayAC14IdentifiedWordVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV5wordsSayAC14IdentifiedWordVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV5wordsSayAC14IdentifiedWordVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawLineText", + "printedName": "rawLineText", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV07rawLineE0SaySSGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV07rawLineE0SaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV07rawLineE0SaySSGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV07rawLineE0SaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifiedLines", + "printedName": "identifiedLines", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selections", + "printedName": "selections", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Selection]", + "children": [ + { + "kind": "TypeNominal", + "name": "Selection", + "printedName": "Amplify.Predictions.Selection", + "usr": "s:7Amplify11PredictionsO9SelectionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV10selectionsSayAC9SelectionVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV10selectionsSayAC9SelectionVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Selection]", + "children": [ + { + "kind": "TypeNominal", + "name": "Selection", + "printedName": "Amplify.Predictions.Selection", + "usr": "s:7Amplify11PredictionsO9SelectionV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV10selectionsSayAC9SelectionVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV10selectionsSayAC9SelectionVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tables", + "printedName": "tables", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table]", + "children": [ + { + "kind": "TypeNominal", + "name": "Table", + "printedName": "Amplify.Predictions.Table", + "usr": "s:7Amplify11PredictionsO5TableV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV6tablesSayAC5TableVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV6tablesSayAC5TableVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table]", + "children": [ + { + "kind": "TypeNominal", + "name": "Table", + "printedName": "Amplify.Predictions.Table", + "usr": "s:7Amplify11PredictionsO5TableV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV6tablesSayAC5TableVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV6tablesSayAC5TableVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyValues", + "printedName": "keyValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.BoundedKeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundedKeyValue", + "printedName": "Amplify.Predictions.BoundedKeyValue", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV9keyValuesSayAC15BoundedKeyValueVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV9keyValuesSayAC15BoundedKeyValueVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.BoundedKeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundedKeyValue", + "printedName": "Amplify.Predictions.BoundedKeyValue", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV9keyValuesSayAC15BoundedKeyValueVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV9keyValuesSayAC15BoundedKeyValueVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fullText:words:rawLineText:identifiedLines:selections:tables:keyValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.DocumentText.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Selection]", + "children": [ + { + "kind": "TypeNominal", + "name": "Selection", + "printedName": "Amplify.Predictions.Selection", + "usr": "s:7Amplify11PredictionsO9SelectionV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Table]", + "children": [ + { + "kind": "TypeNominal", + "name": "Table", + "printedName": "Amplify.Predictions.Table", + "usr": "s:7Amplify11PredictionsO5TableV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.BoundedKeyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "BoundedKeyValue", + "printedName": "Amplify.Predictions.BoundedKeyValue", + "usr": "s:7Amplify11PredictionsO15BoundedKeyValueV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE05words07rawLineE015identifiedLines10selections6tables9keyValuesAISS_SayAC14IdentifiedWordVGSaySSGSayAC0qJ0VGSayAC9SelectionVGSayAC5TableVGSayAC15BoundedKeyValueVGtcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV04fullE05words07rawLineE015identifiedLines10selections6tables9keyValuesAISS_SayAC14IdentifiedWordVGSaySSGSayAC0qJ0VGSayAC9SelectionVGSayAC5TableVGSayAC15BoundedKeyValueVGtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO12DocumentTextO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO12DocumentTextO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "Entities", + "printedName": "Entities", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "entities", + "printedName": "entities", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entity", + "printedName": "Amplify.Predictions.Entity", + "usr": "s:7Amplify11PredictionsO6EntityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesSayAC6EntityVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesSayAC6EntityVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entity", + "printedName": "Amplify.Predictions.Entity", + "usr": "s:7Amplify11PredictionsO6EntityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesSayAC6EntityVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesSayAC6EntityVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entities:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Entities.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity]", + "children": [ + { + "kind": "TypeNominal", + "name": "Entity", + "printedName": "Amplify.Predictions.Entity", + "usr": "s:7Amplify11PredictionsO6EntityV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesAISayAC6EntityVG_tcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV8entitiesAISayAC6EntityVG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO8EntitiesO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO8EntitiesO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO8EntitiesO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "EntityMatches", + "printedName": "EntityMatches", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "entities", + "printedName": "entities", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.Match]", + "children": [ + { + "kind": "TypeNominal", + "name": "Match", + "printedName": "Amplify.Predictions.Entity.Match", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesSayAC0D0V5MatchVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesSayAC0D0V5MatchVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.Match]", + "children": [ + { + "kind": "TypeNominal", + "name": "Match", + "printedName": "Amplify.Predictions.Entity.Match", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesSayAC0D0V5MatchVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesSayAC0D0V5MatchVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(entities:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.EntityMatches.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.Match]", + "children": [ + { + "kind": "TypeNominal", + "name": "Match", + "printedName": "Amplify.Predictions.Entity.Match", + "usr": "s:7Amplify11PredictionsO6EntityV5MatchV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesAISayAC0D0V5MatchVG_tcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV8entitiesAISayAC0D0V5MatchVG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO13EntityMatchesO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO13EntityMatchesO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO13EntityMatchesO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "Labels", + "printedName": "Labels", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "labels", + "printedName": "labels", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "Amplify.Predictions.Label", + "usr": "s:7Amplify11PredictionsO5LabelV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labelsSayAC5LabelVGvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labelsSayAC5LabelVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "Amplify.Predictions.Label", + "usr": "s:7Amplify11PredictionsO5LabelV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labelsSayAC5LabelVGvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labelsSayAC5LabelVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unsafeContent", + "printedName": "unsafeContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV13unsafeContentSbSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV13unsafeContentSbSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV13unsafeContentSbSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV13unsafeContentSbSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(labels:unsafeContent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Labels.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Label]", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "Amplify.Predictions.Label", + "usr": "s:7Amplify11PredictionsO5LabelV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labels13unsafeContentAISayAC5LabelVG_SbSgtcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV6labels13unsafeContentAISayAC5LabelVG_SbSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO6LabelsO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO6LabelsO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "Text", + "printedName": "Text", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "fullText", + "printedName": "fullText", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD0SSSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD0SSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD0SSSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD0SSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "words", + "printedName": "words", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedWord]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV5wordsSayAC14IdentifiedWordVGSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV5wordsSayAC14IdentifiedWordVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedWord]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV5wordsSayAC14IdentifiedWordVGSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV5wordsSayAC14IdentifiedWordVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rawLineText", + "printedName": "rawLineText", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV07rawLineD0SaySSGSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV07rawLineD0SaySSGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV07rawLineD0SaySSGSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV07rawLineD0SaySSGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifiedLines", + "printedName": "identifiedLines", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedLine]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGSgvp", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedLine]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGSgvg", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV15identifiedLinesSayAC14IdentifiedLineVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fullText:words:rawLineText:identifiedLines:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Identify.Text.Result", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedWord]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedWord]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedWord", + "printedName": "Amplify.Predictions.IdentifiedWord", + "usr": "s:7Amplify11PredictionsO14IdentifiedWordV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.IdentifiedLine]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.IdentifiedLine]", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLine", + "printedName": "Amplify.Predictions.IdentifiedLine", + "usr": "s:7Amplify11PredictionsO14IdentifiedLineV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD05words07rawLineD015identifiedLinesAISSSg_SayAC14IdentifiedWordVGSgSaySSGSgSayAC0lI0VGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV04fullD05words07rawLineD015identifiedLinesAISSSg_SayAC14IdentifiedWordVGSgSaySSGSgSayAC0lI0VGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO6ResultV", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO4TextO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO4TextO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO8IdentifyO", + "mangledName": "$s7Amplify11PredictionsO8IdentifyO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "Label", + "printedName": "Label", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5LabelV4nameSSvp", + "mangledName": "$s7Amplify11PredictionsO5LabelV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5LabelV4nameSSvg", + "mangledName": "$s7Amplify11PredictionsO5LabelV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Label.Metadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Label.Metadata", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5LabelV8metadataAE8MetadataVSgvp", + "mangledName": "$s7Amplify11PredictionsO5LabelV8metadataAE8MetadataVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Label.Metadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Label.Metadata", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5LabelV8metadataAE8MetadataVSgvg", + "mangledName": "$s7Amplify11PredictionsO5LabelV8metadataAE8MetadataVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "boundingBoxes", + "printedName": "boundingBoxes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreFoundation.CGRect]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGRect]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5LabelV13boundingBoxesSaySo6CGRectVGSgvp", + "mangledName": "$s7Amplify11PredictionsO5LabelV13boundingBoxesSaySo6CGRectVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreFoundation.CGRect]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGRect]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5LabelV13boundingBoxesSaySo6CGRectVGSgvg", + "mangledName": "$s7Amplify11PredictionsO5LabelV13boundingBoxesSaySo6CGRectVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:metadata:boundingBoxes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Label", + "printedName": "Amplify.Predictions.Label", + "usr": "s:7Amplify11PredictionsO5LabelV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Label.Metadata?", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Label.Metadata", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[CoreFoundation.CGRect]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[CoreFoundation.CGRect]", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO5LabelV4name8metadata13boundingBoxesAESS_AE8MetadataVSgSaySo6CGRectVGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO5LabelV4name8metadata13boundingBoxesAESS_AE8MetadataVSgSaySo6CGRectVGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Metadata", + "printedName": "Metadata", + "children": [ + { + "kind": "Var", + "name": "confidence", + "printedName": "confidence", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV10confidenceSdvp", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV10confidenceSdvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV10confidenceSdvg", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV10confidenceSdvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parents", + "printedName": "parents", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Parent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Parent]", + "children": [ + { + "kind": "TypeNominal", + "name": "Parent", + "printedName": "Amplify.Predictions.Parent", + "usr": "s:7Amplify11PredictionsO6ParentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV7parentsSayAC6ParentVGSgvp", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV7parentsSayAC6ParentVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Parent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Parent]", + "children": [ + { + "kind": "TypeNominal", + "name": "Parent", + "printedName": "Amplify.Predictions.Parent", + "usr": "s:7Amplify11PredictionsO6ParentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV7parentsSayAC6ParentVGSgvg", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV7parentsSayAC6ParentVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(confidence:parents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metadata", + "printedName": "Amplify.Predictions.Label.Metadata", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Parent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Parent]", + "children": [ + { + "kind": "TypeNominal", + "name": "Parent", + "printedName": "Amplify.Predictions.Parent", + "usr": "s:7Amplify11PredictionsO6ParentV" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV10confidence7parentsAGSd_SayAC6ParentVGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV10confidence7parentsAGSd_SayAC6ParentVGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO5LabelV8MetadataV", + "mangledName": "$s7Amplify11PredictionsO5LabelV8MetadataV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO5LabelV", + "mangledName": "$s7Amplify11PredictionsO5LabelV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Parent", + "printedName": "Parent", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO6ParentV4nameSSvp", + "mangledName": "$s7Amplify11PredictionsO6ParentV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO6ParentV4nameSSvg", + "mangledName": "$s7Amplify11PredictionsO6ParentV4nameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Parent", + "printedName": "Amplify.Predictions.Parent", + "usr": "s:7Amplify11PredictionsO6ParentV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO6ParentV4nameAESS_tcfc", + "mangledName": "$s7Amplify11PredictionsO6ParentV4nameAESS_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO6ParentV", + "mangledName": "$s7Amplify11PredictionsO6ParentV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Interpret", + "printedName": "Interpret", + "children": [ + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Var", + "name": "keyPhrases", + "printedName": "keyPhrases", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.KeyPhrase]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.KeyPhrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "KeyPhrase", + "printedName": "Amplify.Predictions.KeyPhrase", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV10keyPhrasesSayAC9KeyPhraseVGSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV10keyPhrasesSayAC9KeyPhraseVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.KeyPhrase]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.KeyPhrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "KeyPhrase", + "printedName": "Amplify.Predictions.KeyPhrase", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV10keyPhrasesSayAC9KeyPhraseVGSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV10keyPhrasesSayAC9KeyPhraseVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sentiment", + "printedName": "sentiment", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Sentiment?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sentiment", + "printedName": "Amplify.Predictions.Sentiment", + "usr": "s:7Amplify11PredictionsO9SentimentV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV9sentimentAC9SentimentVSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV9sentimentAC9SentimentVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Sentiment?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sentiment", + "printedName": "Amplify.Predictions.Sentiment", + "usr": "s:7Amplify11PredictionsO9SentimentV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV9sentimentAC9SentimentVSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV9sentimentAC9SentimentVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "entities", + "printedName": "entities", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Entity.DetectionResult", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV8entitiesSayAC6EntityV09DetectionD0VGSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV8entitiesSayAC6EntityV09DetectionD0VGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Entity.DetectionResult", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV8entitiesSayAC6EntityV09DetectionD0VGSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV8entitiesSayAC6EntityV09DetectionD0VGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "language", + "printedName": "language", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language.DetectionResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Language.DetectionResult", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV8languageAC8LanguageV09DetectionD0VSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV8languageAC8LanguageV09DetectionD0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language.DetectionResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Language.DetectionResult", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV8languageAC8LanguageV09DetectionD0VSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV8languageAC8LanguageV09DetectionD0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "syntax", + "printedName": "syntax", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.SyntaxToken]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.SyntaxToken]", + "children": [ + { + "kind": "TypeNominal", + "name": "SyntaxToken", + "printedName": "Amplify.Predictions.SyntaxToken", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV6syntaxSayAC11SyntaxTokenVGSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV6syntaxSayAC11SyntaxTokenVGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.SyntaxToken]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.SyntaxToken]", + "children": [ + { + "kind": "TypeNominal", + "name": "SyntaxToken", + "printedName": "Amplify.Predictions.SyntaxToken", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV6syntaxSayAC11SyntaxTokenVGSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV6syntaxSayAC11SyntaxTokenVGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(keyPhrases:sentiment:entities:language:syntax:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Interpret.Result", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.KeyPhrase]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.KeyPhrase]", + "children": [ + { + "kind": "TypeNominal", + "name": "KeyPhrase", + "printedName": "Amplify.Predictions.KeyPhrase", + "usr": "s:7Amplify11PredictionsO9KeyPhraseV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Sentiment?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sentiment", + "printedName": "Amplify.Predictions.Sentiment", + "usr": "s:7Amplify11PredictionsO9SentimentV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.Entity.DetectionResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Entity.DetectionResult", + "usr": "s:7Amplify11PredictionsO6EntityV15DetectionResultV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Language.DetectionResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DetectionResult", + "printedName": "Amplify.Predictions.Language.DetectionResult", + "usr": "s:7Amplify11PredictionsO8LanguageV15DetectionResultV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.Predictions.SyntaxToken]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Predictions.SyntaxToken]", + "children": [ + { + "kind": "TypeNominal", + "name": "SyntaxToken", + "printedName": "Amplify.Predictions.SyntaxToken", + "usr": "s:7Amplify11PredictionsO11SyntaxTokenV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV10keyPhrases9sentiment8entities8language6syntaxAGSayAC9KeyPhraseVGSg_AC9SentimentVSgSayAC6EntityV09DetectionD0VGSgAC8LanguageVAVVSgSayAC11SyntaxTokenVGSgtcfc", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV10keyPhrases9sentiment8entities8language6syntaxAGSayAC9KeyPhraseVGSg_AC9SentimentVSgSayAC6EntityV09DetectionD0VGSgAC8LanguageVAVVSgSayAC11SyntaxTokenVGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV", + "mangledName": "$s7Amplify11PredictionsO9InterpretO6ResultV", + "moduleName": "Amplify", + "isFromExtension": true + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultNetworkPolicy", + "printedName": "defaultNetworkPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "usr": "s:7Amplify20DefaultNetworkPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicyAA07DefaultfG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV06pluginD0ypSgvp", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV06pluginD0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV06pluginD0ypSgvg", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV06pluginD0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultNetworkPolicy:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Interpret.Options", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "DefaultNetworkPolicy", + "printedName": "Amplify.DefaultNetworkPolicy", + "hasDefaultArg": true, + "usr": "s:7Amplify20DefaultNetworkPolicyO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicy06pluginD0AgA07DefaultfG0O_ypSgtcfc", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV20defaultNetworkPolicy06pluginD0AgA07DefaultfG0O_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV", + "mangledName": "$s7Amplify11PredictionsO9InterpretO7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO9InterpretO", + "mangledName": "$s7Amplify11PredictionsO9InterpretO", + "moduleName": "Amplify", + "isFromExtension": true, + "isEnumExhaustive": true + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PredictionsO", + "mangledName": "$s7Amplify11PredictionsO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "PredictionsCategory", + "printedName": "PredictionsCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19PredictionsCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify19PredictionsCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19PredictionsCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify19PredictionsCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PredictionsCategoryPlugin", + "printedName": "Amplify.PredictionsCategoryPlugin", + "usr": "s:7Amplify25PredictionsCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify19PredictionsCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategoryPlugin", + "printedName": "Amplify.PredictionsCategoryPlugin", + "usr": "s:7Amplify25PredictionsCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify19PredictionsCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify19PredictionsCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC5resetyyYaF", + "mangledName": "$s7Amplify19PredictionsCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "identify", + "printedName": "identify(_:in:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Identify.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Identify.Options", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC8identify_2in7optionsxAA0B0O8IdentifyO7RequestVy__xG_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "mangledName": "$s7Amplify19PredictionsCategoryC8identify_2in7optionsxAA0B0O8IdentifyO7RequestVy__xG_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC7convert_7optionsq0_AA0B0O7ConvertO7RequestVy__xq_q0_G_q_SgtYaKr1_lF", + "mangledName": "$s7Amplify19PredictionsCategoryC7convert_7optionsq0_AA0B0O7ConvertO7RequestVy__xq_q0_G_q_SgtYaKr1_lF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interpret", + "printedName": "interpret(text:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Interpret.Result", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Interpret.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Interpret.Options", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19PredictionsCategoryC9interpret4text7optionsAA0B0O9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "mangledName": "$s7Amplify19PredictionsCategoryC9interpret4text7optionsAA0B0O9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19PredictionsCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify19PredictionsCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19PredictionsCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify19PredictionsCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19PredictionsCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify19PredictionsCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19PredictionsCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify19PredictionsCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify19PredictionsCategoryC", + "mangledName": "$s7Amplify19PredictionsCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "PredictionsCategoryBehavior", + "printedName": "PredictionsCategoryBehavior", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PredictionsCategoryBehavior", + "printedName": "PredictionsCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "identify", + "printedName": "identify(_:in:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Identify.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Identify.Options", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP8identify_2in7optionsqd__AA0B0O8IdentifyO7RequestVy__qd__G_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP8identify_2in7optionsqd__AA0B0O8IdentifyO7RequestVy__qd__G_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP7convert_7optionsqd_1_AA0B0O7ConvertO7RequestVy__qd__qd_0_qd_1_G_qd_0_SgtYaKr1_lF", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP7convert_7optionsqd_1_AA0B0O7ConvertO7RequestVy__qd__qd_0_qd_1_G_qd_0_SgtYaKr1_lF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interpret", + "printedName": "interpret(text:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Interpret.Result", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Interpret.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Interpret.Options", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP9interpret4text7optionsAA0B0O9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP9interpret4text7optionsAA0B0O9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PredictionsCategoryConfiguration", + "printedName": "PredictionsCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategoryConfiguration", + "printedName": "Amplify.PredictionsCategoryConfiguration", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategoryConfiguration", + "printedName": "Amplify.PredictionsCategoryConfiguration", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV", + "mangledName": "$s7Amplify32PredictionsCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PredictionsCategoryPlugin", + "printedName": "PredictionsCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25PredictionsCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify25PredictionsCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25PredictionsCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify25PredictionsCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify25PredictionsCategoryPluginP", + "mangledName": "$s7Amplify25PredictionsCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "PredictionsCategoryBehavior", + "printedName": "PredictionsCategoryBehavior", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageError", + "printedName": "StorageError", + "children": [ + { + "kind": "Var", + "name": "accessDenied", + "printedName": "accessDenied", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO12accessDeniedyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO12accessDeniedyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "authError", + "printedName": "authError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO04authC0yACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO04authC0yACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO13configurationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "httpStatusError", + "printedName": "httpStatusError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Swift.Int, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Int, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO010httpStatusC0yACSi_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO010httpStatusC0yACSi_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "keyNotFound", + "printedName": "keyNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.Key, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Key, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.Key, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Key", + "printedName": "Amplify.Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO11keyNotFoundyACSS_S2Ss0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO11keyNotFoundyACSS_S2Ss0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "localFileNotFound", + "printedName": "localFileNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO17localFileNotFoundyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO17localFileNotFoundyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "service", + "printedName": "service", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO7serviceyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO7serviceyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.ErrorDescription, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO7unknownyACSS_s0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO7unknownyACSS_s0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "validation", + "printedName": "validation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageError.Type) -> (Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.StorageError", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.Field, Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Field", + "printedName": "Amplify.Field", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12StorageErrorO10validationyACSS_S2Ss0C0_pSgtcACmF", + "mangledName": "$s7Amplify12StorageErrorO10validationyACSS_S2Ss0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify12StorageErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify12StorageErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12StorageErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify12StorageErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify12StorageErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify12StorageErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12StorageErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify12StorageErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12StorageErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify12StorageErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12StorageErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify12StorageErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12StorageErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify12StorageErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify12StorageErrorO", + "mangledName": "$s7Amplify12StorageErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageDownloadDataRequest", + "printedName": "StorageDownloadDataRequest", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV3keySSvp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV3keySSvg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadDataRequestV3key7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV3key7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadDataRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevel16targetIdentityId06pluginF0AeA0b6AccessH0O_SSSgypSgtcfc", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV11accessLevel16targetIdentityId06pluginF0AeA0b6AccessH0O_SSSgypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify26StorageDownloadDataRequestV", + "mangledName": "$s7Amplify26StorageDownloadDataRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageDownloadFileRequest", + "printedName": "StorageDownloadFileRequest", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV3keySSvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV3keySSvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "local", + "printedName": "local", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV5local10Foundation3URLVvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV5local10Foundation3URLVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV5local10Foundation3URLVvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV5local10Foundation3URLVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:local:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadFileRequestV3key5local7optionsACSS_10Foundation3URLVAC7OptionsVtcfc", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV3key5local7optionsACSS_10Foundation3URLVAC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:local:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadFileRequestV4path5local7optionsAcA0B4Path_p_10Foundation3URLVAC7OptionsVtcfc", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV4path5local7optionsAcA0B4Path_p_10Foundation3URLVAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevel16targetIdentityId06pluginF0AeA0b6AccessH0O_SSSgypSgtcfc", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV11accessLevel16targetIdentityId06pluginF0AeA0b6AccessH0O_SSSgypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0AEypSg_tcfc", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV06pluginF0AEypSg_tcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify26StorageDownloadFileRequestV", + "mangledName": "$s7Amplify26StorageDownloadFileRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageGetURLRequest", + "printedName": "StorageGetURLRequest", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV3keySSvp", + "mangledName": "$s7Amplify20StorageGetURLRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV3keySSvg", + "mangledName": "$s7Amplify20StorageGetURLRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify20StorageGetURLRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify20StorageGetURLRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify20StorageGetURLRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify20StorageGetURLRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageGetURLRequest", + "printedName": "Amplify.StorageGetURLRequest", + "usr": "s:7Amplify20StorageGetURLRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageGetURLRequestV3key7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify20StorageGetURLRequestV3key7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageGetURLRequest", + "printedName": "Amplify.StorageGetURLRequest", + "usr": "s:7Amplify20StorageGetURLRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageGetURLRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "mangledName": "$s7Amplify20StorageGetURLRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "defaultExpireInSeconds", + "printedName": "defaultExpireInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV22defaultExpireInSecondsSivpZ", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV22defaultExpireInSecondsSivpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV22defaultExpireInSecondsSivgZ", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV22defaultExpireInSecondsSivgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expires", + "printedName": "expires", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV7expiresSivp", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV7expiresSivp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV7expiresSivg", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV7expiresSivg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV06pluginE0ypSgvp", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV06pluginE0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV06pluginE0ypSgvg", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV06pluginE0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:expires:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV11accessLevel16targetIdentityId7expires06pluginE0AeA0b6AccessG0O_SSSgSiypSgtcfc", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV11accessLevel16targetIdentityId7expires06pluginE0AeA0b6AccessG0O_SSSgSiypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(expires:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV7expires06pluginE0AESi_ypSgtcfc", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV7expires06pluginE0AESi_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV", + "mangledName": "$s7Amplify20StorageGetURLRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20StorageGetURLRequestV", + "mangledName": "$s7Amplify20StorageGetURLRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageListRequest", + "printedName": "StorageListRequest", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify18StorageListRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify18StorageListRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify18StorageListRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify18StorageListRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListRequest", + "printedName": "Amplify.StorageListRequest", + "usr": "s:7Amplify18StorageListRequestV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18StorageListRequestV7optionsA2C7OptionsV_tcfc", + "mangledName": "$s7Amplify18StorageListRequestV7optionsA2C7OptionsV_tcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListRequest", + "printedName": "Amplify.StorageListRequest", + "usr": "s:7Amplify18StorageListRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18StorageListRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "mangledName": "$s7Amplify18StorageListRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV4pathSSSgvp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV4pathSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV4pathSSSgvg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV4pathSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pageSize", + "printedName": "pageSize", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV8pageSizeSuvp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV8pageSizeSuvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV8pageSizeSuvg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV8pageSizeSuvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nextToken", + "printedName": "nextToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV9nextTokenSSSgvp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV9nextTokenSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV9nextTokenSSSgvg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV9nextTokenSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageListRequestV7OptionsV06pluginE0ypSgvp", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV06pluginE0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV06pluginE0ypSgvg", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV06pluginE0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:path:pageSize:nextToken:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18StorageListRequestV7OptionsV11accessLevel16targetIdentityId4path8pageSize9nextToken06pluginE0AeA0b6AccessG0O_SSSgANSuANypSgtcfc", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV11accessLevel16targetIdentityId4path8pageSize9nextToken06pluginE0AeA0b6AccessG0O_SSSgANSuANypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify18StorageListRequestV7OptionsV", + "mangledName": "$s7Amplify18StorageListRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify18StorageListRequestV", + "mangledName": "$s7Amplify18StorageListRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageRemoveRequest", + "printedName": "StorageRemoveRequest", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageRemoveRequestV3keySSvp", + "mangledName": "$s7Amplify20StorageRemoveRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageRemoveRequestV3keySSvg", + "mangledName": "$s7Amplify20StorageRemoveRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageRemoveRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify20StorageRemoveRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageRemoveRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify20StorageRemoveRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageRemoveRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify20StorageRemoveRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageRemoveRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify20StorageRemoveRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageRemoveRequest", + "printedName": "Amplify.StorageRemoveRequest", + "usr": "s:7Amplify20StorageRemoveRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageRemoveRequestV3key7optionsACSS_AC7OptionsVtcfc", + "mangledName": "$s7Amplify20StorageRemoveRequestV3key7optionsACSS_AC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageRemoveRequest", + "printedName": "Amplify.StorageRemoveRequest", + "usr": "s:7Amplify20StorageRemoveRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageRemoveRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "mangledName": "$s7Amplify20StorageRemoveRequestV4path7optionsAcA0B4Path_p_AC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV11accessLevelAA0b6AccessG0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV11accessLevelAA0b6AccessG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV06pluginE0ypSgvp", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV06pluginE0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV06pluginE0ypSgvg", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV06pluginE0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV11accessLevel06pluginE0AeA0b6AccessG0O_ypSgtcfc", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV11accessLevel06pluginE0AeA0b6AccessG0O_ypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV", + "mangledName": "$s7Amplify20StorageRemoveRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify20StorageRemoveRequestV", + "mangledName": "$s7Amplify20StorageRemoveRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageUploadDataRequest", + "printedName": "StorageUploadDataRequest", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV3keySSvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV3keySSvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV4data10Foundation0D0Vvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV4data10Foundation0D0Vvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV4data10Foundation0D0Vvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV4data10Foundation0D0Vvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadDataRequestV3key4data7optionsACSS_10Foundation0D0VAC7OptionsVtcfc", + "mangledName": "$s7Amplify24StorageUploadDataRequestV3key4data7optionsACSS_10Foundation0D0VAC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:data:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadDataRequestV4path4data7optionsAcA0B4Path_p_10Foundation0D0VAC7OptionsVtcfc", + "mangledName": "$s7Amplify24StorageUploadDataRequestV4path4data7optionsAcA0B4Path_p_10Foundation0D0VAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV8metadataSDyS2SGSgvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV8metadataSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV8metadataSDyS2SGSgvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV8metadataSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV11contentTypeSSSgvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV11contentTypeSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV11contentTypeSSSgvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV11contentTypeSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:metadata:contentType:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV11accessLevel16targetIdentityId8metadata11contentType06pluginF0AeA0b6AccessH0O_SSSgSDyS2SGSgAMypSgtcfc", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV11accessLevel16targetIdentityId8metadata11contentType06pluginF0AeA0b6AccessH0O_SSSgSDyS2SGSgAMypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:contentType:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV8metadata11contentType06pluginF0AESDyS2SGSg_SSSgypSgtcfc", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV8metadata11contentType06pluginF0AESDyS2SGSg_SSSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV", + "mangledName": "$s7Amplify24StorageUploadDataRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24StorageUploadDataRequestV", + "mangledName": "$s7Amplify24StorageUploadDataRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageUploadFileRequest", + "printedName": "StorageUploadFileRequest", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV4pathAA0B4Path_pSgvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV4pathAA0B4Path_pSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(Amplify.StoragePath)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StoragePath)", + "children": [ + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:7Amplify11StoragePathP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV4pathAA0B4Path_pSgvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV4pathAA0B4Path_pSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV3keySSvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV3keySSvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "local", + "printedName": "local", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV5local10Foundation3URLVvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV5local10Foundation3URLVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV5local10Foundation3URLVvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV5local10Foundation3URLVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7optionsAC7OptionsVvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7optionsAC7OptionsVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7optionsAC7OptionsVvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7optionsAC7OptionsVvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:local:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadFileRequestV3key5local7optionsACSS_10Foundation3URLVAC7OptionsVtcfc", + "mangledName": "$s7Amplify24StorageUploadFileRequestV3key5local7optionsACSS_10Foundation3URLVAC7OptionsVtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:local:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadFileRequestV4path5local7optionsAcA0B4Path_p_10Foundation3URLVAC7OptionsVtcfc", + "mangledName": "$s7Amplify24StorageUploadFileRequestV4path5local7optionsAcA0B4Path_p_10Foundation3URLVAC7OptionsVtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "Var", + "name": "accessLevel", + "printedName": "accessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV11accessLevelAA0b6AccessH0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targetIdentityId", + "printedName": "targetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV16targetIdentityIdSSSgvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV16targetIdentityIdSSSgvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV16targetIdentityIdSSSgvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV16targetIdentityIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV8metadataSDyS2SGSgvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV8metadataSDyS2SGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV8metadataSDyS2SGSgvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV8metadataSDyS2SGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV11contentTypeSSSgvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV11contentTypeSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV11contentTypeSSSgvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV11contentTypeSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginOptions", + "printedName": "pluginOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV06pluginF0ypSgvp", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV06pluginF0ypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV06pluginF0ypSgvg", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV06pluginF0ypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessLevel:targetIdentityId:metadata:contentType:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "hasDefaultArg": true, + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV11accessLevel16targetIdentityId8metadata11contentType06pluginF0AeA0b6AccessH0O_SSSgSDyS2SGSgAMypSgtcfc", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV11accessLevel16targetIdentityId8metadata11contentType06pluginF0AeA0b6AccessH0O_SSSgSDyS2SGSgAMypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(metadata:contentType:pluginOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV8metadata11contentType06pluginF0AESDyS2SGSg_SSSgypSgtcfc", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV8metadata11contentType06pluginF0AESDyS2SGSg_SSSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV", + "mangledName": "$s7Amplify24StorageUploadFileRequestV7OptionsV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify24StorageUploadFileRequestV", + "mangledName": "$s7Amplify24StorageUploadFileRequestV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "TypeWitness", + "name": "Options", + "printedName": "Options", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ] + } + ], + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageDownloadDataOperation", + "printedName": "StorageDownloadDataOperation", + "declKind": "Protocol", + "usr": "s:7Amplify28StorageDownloadDataOperationP", + "mangledName": "$s7Amplify28StorageDownloadDataOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeAlias", + "name": "StorageDownloadDataTask", + "printedName": "StorageDownloadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23StorageDownloadDataTaska", + "mangledName": "$s7Amplify23StorageDownloadDataTaska", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageDownloadFileOperation", + "printedName": "StorageDownloadFileOperation", + "declKind": "Protocol", + "usr": "s:7Amplify28StorageDownloadFileOperationP", + "mangledName": "$s7Amplify28StorageDownloadFileOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeAlias", + "name": "StorageDownloadFileTask", + "printedName": "StorageDownloadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify23StorageDownloadFileTaska", + "mangledName": "$s7Amplify23StorageDownloadFileTaska", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageGetURLOperation", + "printedName": "StorageGetURLOperation", + "declKind": "Protocol", + "usr": "s:7Amplify22StorageGetURLOperationP", + "mangledName": "$s7Amplify22StorageGetURLOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeDecl", + "name": "StorageListOperation", + "printedName": "StorageListOperation", + "declKind": "Protocol", + "usr": "s:7Amplify20StorageListOperationP", + "mangledName": "$s7Amplify20StorageListOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeDecl", + "name": "StorageRemoveOperation", + "printedName": "StorageRemoveOperation", + "declKind": "Protocol", + "usr": "s:7Amplify22StorageRemoveOperationP", + "mangledName": "$s7Amplify22StorageRemoveOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeDecl", + "name": "StorageUploadDataOperation", + "printedName": "StorageUploadDataOperation", + "declKind": "Protocol", + "usr": "s:7Amplify26StorageUploadDataOperationP", + "mangledName": "$s7Amplify26StorageUploadDataOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeAlias", + "name": "StorageUploadDataTask", + "printedName": "StorageUploadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21StorageUploadDataTaska", + "mangledName": "$s7Amplify21StorageUploadDataTaska", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageUploadFileOperation", + "printedName": "StorageUploadFileOperation", + "declKind": "Protocol", + "usr": "s:7Amplify26StorageUploadFileOperationP", + "mangledName": "$s7Amplify26StorageUploadFileOperationP", + "moduleName": "Amplify", + "genericSig": ">" + }, + { + "kind": "TypeAlias", + "name": "StorageUploadFileTask", + "printedName": "StorageUploadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21StorageUploadFileTaska", + "mangledName": "$s7Amplify21StorageUploadFileTaska", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "ProgressListener", + "printedName": "ProgressListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Progress) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Foundation.Progress)", + "children": [ + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + } + ], + "usr": "c:objc(cs)NSProgress" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16ProgressListenera", + "mangledName": "$s7Amplify16ProgressListenera", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageListResult", + "printedName": "StorageListResult", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(items:nextToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListResult", + "printedName": "Amplify.StorageListResult", + "usr": "s:7Amplify17StorageListResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.StorageListResult.Item]", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17StorageListResultV5items9nextTokenACSayAC4ItemVG_SSSgtcfc", + "mangledName": "$s7Amplify17StorageListResultV5items9nextTokenACSayAC4ItemVG_SSSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.StorageListResult.Item]", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV5itemsSayAC4ItemVGvp", + "mangledName": "$s7Amplify17StorageListResultV5itemsSayAC4ItemVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.StorageListResult.Item]", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV5itemsSayAC4ItemVGvg", + "mangledName": "$s7Amplify17StorageListResultV5itemsSayAC4ItemVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.StorageListResult.Item]", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV5itemsSayAC4ItemVGvs", + "mangledName": "$s7Amplify17StorageListResultV5itemsSayAC4ItemVGvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "nextToken", + "printedName": "nextToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV9nextTokenSSSgvp", + "mangledName": "$s7Amplify17StorageListResultV9nextTokenSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV9nextTokenSSSgvg", + "mangledName": "$s7Amplify17StorageListResultV9nextTokenSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Item", + "printedName": "Item", + "children": [ + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV4pathSSvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4pathSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV4pathSSvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4pathSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV3keySSvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV3keySSvp", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV3keySSvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV3keySSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV4sizeSiSgvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4sizeSiSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV4sizeSiSgvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4sizeSiSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastModified", + "printedName": "lastModified", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV12lastModified10Foundation4DateVSgvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV12lastModified10Foundation4DateVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV12lastModified10Foundation4DateVSgvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV12lastModified10Foundation4DateVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eTag", + "printedName": "eTag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV4eTagSSSgvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4eTagSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV4eTagSSSgvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4eTagSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pluginResults", + "printedName": "pluginResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StorageListResultV4ItemV13pluginResultsypSgvp", + "mangledName": "$s7Amplify17StorageListResultV4ItemV13pluginResultsypSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StorageListResultV4ItemV13pluginResultsypSgvg", + "mangledName": "$s7Amplify17StorageListResultV4ItemV13pluginResultsypSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(key:size:eTag:lastModified:pluginResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17StorageListResultV4ItemV3key4size4eTag12lastModified13pluginResultsAESS_SiSgSSSg10Foundation4DateVSgypSgtcfc", + "mangledName": "$s7Amplify17StorageListResultV4ItemV3key4size4eTag12lastModified13pluginResultsAESS_SiSgSSSg10Foundation4DateVSgypSgtcfc", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(path:size:eTag:lastModified:pluginResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Item", + "printedName": "Amplify.StorageListResult.Item", + "usr": "s:7Amplify17StorageListResultV4ItemV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify17StorageListResultV4ItemV4path4size4eTag12lastModified13pluginResultsAESS_SiSgSSSg10Foundation4DateVSgypSgtcfc", + "mangledName": "$s7Amplify17StorageListResultV4ItemV4path4size4eTag12lastModified13pluginResultsAESS_SiSgSSSg10Foundation4DateVSgypSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17StorageListResultV4ItemV", + "mangledName": "$s7Amplify17StorageListResultV4ItemV", + "moduleName": "Amplify", + "isFromExtension": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17StorageListResultV", + "mangledName": "$s7Amplify17StorageListResultV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageAccessLevel", + "printedName": "StorageAccessLevel", + "children": [ + { + "kind": "Var", + "name": "guest", + "printedName": "guest", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageAccessLevel.Type) -> Amplify.StorageAccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageAccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageAccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18StorageAccessLevelO5guestyA2CmF", + "mangledName": "$s7Amplify18StorageAccessLevelO5guestyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "protected", + "printedName": "protected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageAccessLevel.Type) -> Amplify.StorageAccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageAccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageAccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18StorageAccessLevelO9protectedyA2CmF", + "mangledName": "$s7Amplify18StorageAccessLevelO9protectedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "private", + "printedName": "private", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.StorageAccessLevel.Type) -> Amplify.StorageAccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.StorageAccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.StorageAccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18StorageAccessLevelO7privateyA2CmF", + "mangledName": "$s7Amplify18StorageAccessLevelO7privateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageAccessLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageAccessLevel", + "printedName": "Amplify.StorageAccessLevel", + "usr": "s:7Amplify18StorageAccessLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18StorageAccessLevelO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify18StorageAccessLevelO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify18StorageAccessLevelO8RawValuea", + "mangledName": "$s7Amplify18StorageAccessLevelO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18StorageAccessLevelO8rawValueSSvp", + "mangledName": "$s7Amplify18StorageAccessLevelO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18StorageAccessLevelO8rawValueSSvg", + "mangledName": "$s7Amplify18StorageAccessLevelO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify18StorageAccessLevelO", + "mangledName": "$s7Amplify18StorageAccessLevelO", + "moduleName": "Amplify", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageCategory", + "printedName": "StorageCategory", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15StorageCategoryC12categoryTypeAA0cE0Ovp", + "mangledName": "$s7Amplify15StorageCategoryC12categoryTypeAA0cE0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15StorageCategoryC12categoryTypeAA0cE0Ovg", + "mangledName": "$s7Amplify15StorageCategoryC12categoryTypeAA0cE0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "add", + "printedName": "add(plugin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "StorageCategoryPlugin", + "printedName": "Amplify.StorageCategoryPlugin", + "usr": "s:7Amplify21StorageCategoryPluginP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "mangledName": "$s7Amplify15StorageCategoryC3add6pluginyAA0bC6Plugin_p_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPlugin", + "printedName": "getPlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategoryPlugin", + "printedName": "Amplify.StorageCategoryPlugin", + "usr": "s:7Amplify21StorageCategoryPluginP" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "mangledName": "$s7Amplify15StorageCategoryC9getPlugin3forAA0bcE0_pSS_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC12removePlugin3forySS_tF", + "mangledName": "$s7Amplify15StorageCategoryC12removePlugin3forySS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC5resetyyYaF", + "mangledName": "$s7Amplify15StorageCategoryC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getURL", + "printedName": "getURL(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageGetURLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC6getURL3key7options10Foundation0E0VSS_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify15StorageCategoryC6getURL3key7options10Foundation0E0VSS_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getURL", + "printedName": "getURL(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageGetURLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC6getURL4path7options10Foundation0E0VAA0B4Path_p_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify15StorageCategoryC6getURL4path7options10Foundation0E0VAA0B4Path_p_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadData", + "printedName": "downloadData(key:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadDataTask", + "printedName": "Amplify.StorageDownloadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC12downloadData3key7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressC10Foundation0E0VAA0B5ErrorOGSS_AJ7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC12downloadData3key7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressC10Foundation0E0VAA0B5ErrorOGSS_AJ7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadData", + "printedName": "downloadData(path:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadDataTask", + "printedName": "Amplify.StorageDownloadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC12downloadData4path7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressC10Foundation0E0VAA0B5ErrorOGAA0B4Path_p_AJ7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC12downloadData4path7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressC10Foundation0E0VAA0B5ErrorOGAA0B4Path_p_AJ7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(key:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadFileTask", + "printedName": "Amplify.StorageDownloadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC12downloadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressCytAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC12downloadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressCytAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(path:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadFileTask", + "printedName": "Amplify.StorageDownloadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC12downloadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressCytAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC12downloadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadE7RequestVSo10NSProgressCytAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadData", + "printedName": "uploadData(key:data:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadDataTask", + "printedName": "Amplify.StorageUploadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC10uploadData3key4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation0E0VAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC10uploadData3key4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation0E0VAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadData", + "printedName": "uploadData(path:data:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadDataTask", + "printedName": "Amplify.StorageUploadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC10uploadData4path4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation0E0VAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC10uploadData4path4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation0E0VAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadFile", + "printedName": "uploadFile(key:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadFileTask", + "printedName": "Amplify.StorageUploadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC10uploadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC10uploadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadFile", + "printedName": "uploadFile(path:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadFileTask", + "printedName": "Amplify.StorageUploadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC10uploadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify15StorageCategoryC10uploadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadE7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageRemoveRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC6remove3key7optionsS2S_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify15StorageCategoryC6remove3key7optionsS2S_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageRemoveRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC6remove4path7optionsSSAA0B4Path_p_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify15StorageCategoryC6remove4path7optionsSSAA0B4Path_p_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "list", + "printedName": "list(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListResult", + "printedName": "Amplify.StorageListResult", + "usr": "s:7Amplify17StorageListResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageListRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC4list7optionsAA0B10ListResultVAA0bF7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify15StorageCategoryC4list7optionsAA0B10ListResultVAA0bF7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "list", + "printedName": "list(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListResult", + "printedName": "Amplify.StorageListResult", + "usr": "s:7Amplify17StorageListResultV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageListRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC4list4path7optionsAA0B10ListResultVAA0B4Path_p_AA0bG7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify15StorageCategoryC4list4path7optionsAA0B10ListResultVAA0B4Path_p_AA0bG7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "DiscardableResult" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBackgroundEvents", + "printedName": "handleBackgroundEvents(identifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify15StorageCategoryC22handleBackgroundEvents10identifierSbSS_tYaF", + "mangledName": "$s7Amplify15StorageCategoryC22handleBackgroundEvents10identifierSbSS_tYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15StorageCategoryC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify15StorageCategoryC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15StorageCategoryC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify15StorageCategoryC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify15StorageCategoryC3logAA6Logger_pvp", + "mangledName": "$s7Amplify15StorageCategoryC3logAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify15StorageCategoryC3logAA6Logger_pvg", + "mangledName": "$s7Amplify15StorageCategoryC3logAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify15StorageCategoryC", + "mangledName": "$s7Amplify15StorageCategoryC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Category", + "printedName": "Category", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "StorageCategoryBehavior", + "printedName": "StorageCategoryBehavior", + "usr": "s:7Amplify23StorageCategoryBehaviorP", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageCategoryBehavior", + "printedName": "StorageCategoryBehavior", + "children": [ + { + "kind": "Function", + "name": "getURL", + "printedName": "getURL(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageGetURLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP6getURL3key7options10Foundation0F0VSS_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP6getURL3key7options10Foundation0F0VSS_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getURL", + "printedName": "getURL(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageGetURLRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageGetURLRequest.Options", + "usr": "s:7Amplify20StorageGetURLRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP6getURL4path7options10Foundation0F0VAA0B4Path_p_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP6getURL4path7options10Foundation0F0VAA0B4Path_p_AA0B13GetURLRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadData", + "printedName": "downloadData(key:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadDataTask", + "printedName": "Amplify.StorageDownloadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP12downloadData3key7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressC10Foundation0F0VAA0B5ErrorOGSS_AJ7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP12downloadData3key7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressC10Foundation0F0VAA0B5ErrorOGSS_AJ7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadData", + "printedName": "downloadData(path:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadDataTask", + "printedName": "Amplify.StorageDownloadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadDataRequest", + "printedName": "Amplify.StorageDownloadDataRequest", + "usr": "s:7Amplify26StorageDownloadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadDataRequest.Options", + "usr": "s:7Amplify26StorageDownloadDataRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP12downloadData4path7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressC10Foundation0F0VAA0B5ErrorOGAA0B4Path_p_AJ7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP12downloadData4path7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressC10Foundation0F0VAA0B5ErrorOGAA0B4Path_p_AJ7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(key:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadFileTask", + "printedName": "Amplify.StorageDownloadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP12downloadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressCytAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP12downloadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressCytAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(path:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageDownloadFileTask", + "printedName": "Amplify.StorageDownloadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageDownloadFileRequest", + "printedName": "Amplify.StorageDownloadFileRequest", + "usr": "s:7Amplify26StorageDownloadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageDownloadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageDownloadFileRequest.Options", + "usr": "s:7Amplify26StorageDownloadFileRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP12downloadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressCytAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP12downloadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b8DownloadF7RequestVSo10NSProgressCytAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadData", + "printedName": "uploadData(key:data:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadDataTask", + "printedName": "Amplify.StorageUploadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP10uploadData3key4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation0F0VAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP10uploadData3key4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation0F0VAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadData", + "printedName": "uploadData(path:data:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadDataTask", + "printedName": "Amplify.StorageUploadDataTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadDataRequest", + "printedName": "Amplify.StorageUploadDataRequest", + "usr": "s:7Amplify24StorageUploadDataRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadDataRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadDataRequest.Options", + "usr": "s:7Amplify24StorageUploadDataRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP10uploadData4path4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation0F0VAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP10uploadData4path4data7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation0F0VAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadFile", + "printedName": "uploadFile(key:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadFileTask", + "printedName": "Amplify.StorageUploadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP10uploadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP10uploadFile3key5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGSS_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadFile", + "printedName": "uploadFile(path:local:options:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StorageUploadFileTask", + "printedName": "Amplify.StorageUploadFileTask", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageUploadFileRequest", + "printedName": "Amplify.StorageUploadFileRequest", + "usr": "s:7Amplify24StorageUploadFileRequestV" + }, + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StorageError", + "printedName": "Amplify.StorageError", + "usr": "s:7Amplify12StorageErrorO" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + } + ] + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageUploadFileRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageUploadFileRequest.Options", + "usr": "s:7Amplify24StorageUploadFileRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP10uploadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP10uploadFile4path5local7optionsAA0A38InProcessReportingOperationTaskAdapterCyAA0b6UploadF7RequestVSo10NSProgressCSSAA0B5ErrorOGAA0B4Path_p_10Foundation3URLVAK7OptionsVSgtF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(key:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageRemoveRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP6remove3key7optionsS2S_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP6remove3key7optionsS2S_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "remove", + "printedName": "remove(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageRemoveRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageRemoveRequest.Options", + "usr": "s:7Amplify20StorageRemoveRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP6remove4path7optionsSSAA0B4Path_p_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP6remove4path7optionsSSAA0B4Path_p_AA0B13RemoveRequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "list", + "printedName": "list(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListResult", + "printedName": "Amplify.StorageListResult", + "usr": "s:7Amplify17StorageListResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageListRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP4list7optionsAA0B10ListResultVAA0bG7RequestV7OptionsVSg_tYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP4list7optionsAA0B10ListResultVAA0bG7RequestV7OptionsVSg_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "Available" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "list", + "printedName": "list(path:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageListResult", + "printedName": "Amplify.StorageListResult", + "usr": "s:7Amplify17StorageListResultV" + }, + { + "kind": "TypeNominal", + "name": "StoragePath", + "printedName": "Amplify.StoragePath", + "usr": "s:7Amplify11StoragePathP" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageListRequest.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.StorageListRequest.Options", + "usr": "s:7Amplify18StorageListRequestV7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP4list4path7optionsAA0B10ListResultVAA0B4Path_p_AA0bH7RequestV7OptionsVSgtYaKF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP4list4path7optionsAA0B10ListResultVAA0B4Path_p_AA0bH7RequestV7OptionsVSgtYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBackgroundEvents", + "printedName": "handleBackgroundEvents(identifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23StorageCategoryBehaviorP22handleBackgroundEvents10identifierSbSS_tYaF", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP22handleBackgroundEvents10identifierSbSS_tYaF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify23StorageCategoryBehaviorP", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StorageCategoryConfiguration", + "printedName": "StorageCategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify28StorageCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify28StorageCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(plugins:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategoryConfiguration", + "printedName": "Amplify.StorageCategoryConfiguration", + "usr": "s:7Amplify28StorageCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify28StorageCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV7pluginsACSDySSAA9JSONValueOG_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify28StorageCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategoryConfiguration", + "printedName": "Amplify.StorageCategoryConfiguration", + "usr": "s:7Amplify28StorageCategoryConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify28StorageCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify28StorageCategoryConfigurationV", + "mangledName": "$s7Amplify28StorageCategoryConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "StorageCategoryPlugin", + "printedName": "StorageCategoryPlugin", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21StorageCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "mangledName": "$s7Amplify21StorageCategoryPluginPAAE12categoryTypeAA0cF0Ovp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21StorageCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "mangledName": "$s7Amplify21StorageCategoryPluginPAAE12categoryTypeAA0cF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21StorageCategoryPluginP", + "mangledName": "$s7Amplify21StorageCategoryPluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "StorageCategoryBehavior", + "printedName": "StorageCategoryBehavior", + "usr": "s:7Amplify23StorageCategoryBehaviorP", + "mangledName": "$s7Amplify23StorageCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "IdentityIDPathResolver", + "printedName": "IdentityIDPathResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify22IdentityIDPathResolvera", + "mangledName": "$s7Amplify22IdentityIDPathResolvera", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StoragePath", + "printedName": "StoragePath", + "children": [ + { + "kind": "AssociatedType", + "name": "Input", + "printedName": "Input", + "declKind": "AssociatedType", + "usr": "s:7Amplify11StoragePathP5InputQa", + "mangledName": "$s7Amplify11StoragePathP5InputQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "resolve", + "printedName": "resolve", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.Input) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.Input)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Input" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11StoragePathP7resolveySS5InputQzcvp", + "mangledName": "$s7Amplify11StoragePathP7resolveySS5InputQzcvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.Input) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.Input)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Input" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11StoragePathP7resolveySS5InputQzcvg", + "mangledName": "$s7Amplify11StoragePathP7resolveySS5InputQzcvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "fromString", + "printedName": "fromString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11StoragePathPA2A06StringbC0VRszrlE04fromD0yAESSFZ", + "mangledName": "$s7Amplify11StoragePathPA2A06StringbC0VRszrlE04fromD0yAESSFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fromIdentityID", + "printedName": "fromIdentityID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNameAlias", + "name": "IdentityIDPathResolver", + "printedName": "Amplify.IdentityIDPathResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11StoragePathPA2A017IdentityIDStorageC0VRszrlE04fromD2IDyAES2ScFZ", + "mangledName": "$s7Amplify11StoragePathPA2A017IdentityIDStorageC0VRszrlE04fromD2IDyAES2ScFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify11StoragePathP", + "mangledName": "$s7Amplify11StoragePathP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "StringStoragePath", + "printedName": "StringStoragePath", + "children": [ + { + "kind": "Var", + "name": "resolve", + "printedName": "resolve", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify17StringStoragePathV7resolveyS2Scvp", + "mangledName": "$s7Amplify17StringStoragePathV7resolveyS2Scvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17StringStoragePathV7resolveyS2Scvg", + "mangledName": "$s7Amplify17StringStoragePathV7resolveyS2Scvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "Input", + "printedName": "Input", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify17StringStoragePathV5Inputa", + "mangledName": "$s7Amplify17StringStoragePathV5Inputa", + "moduleName": "Amplify", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify17StringStoragePathV", + "mangledName": "$s7Amplify17StringStoragePathV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "StoragePath", + "printedName": "StoragePath", + "children": [ + { + "kind": "TypeWitness", + "name": "Input", + "printedName": "Input", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:7Amplify11StoragePathP", + "mangledName": "$s7Amplify11StoragePathP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IdentityIDStoragePath", + "printedName": "IdentityIDStoragePath", + "children": [ + { + "kind": "Var", + "name": "resolve", + "printedName": "resolve", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IdentityIDPathResolver", + "printedName": "Amplify.IdentityIDPathResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify21IdentityIDStoragePathV7resolveyS2Scvp", + "mangledName": "$s7Amplify21IdentityIDStoragePathV7resolveyS2Scvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IdentityIDPathResolver", + "printedName": "Amplify.IdentityIDPathResolver", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21IdentityIDStoragePathV7resolveyS2Scvg", + "mangledName": "$s7Amplify21IdentityIDStoragePathV7resolveyS2Scvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "Input", + "printedName": "Input", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21IdentityIDStoragePathV5Inputa", + "mangledName": "$s7Amplify21IdentityIDStoragePathV5Inputa", + "moduleName": "Amplify", + "implicit": true + } + ], + "declKind": "Struct", + "usr": "s:7Amplify21IdentityIDStoragePathV", + "mangledName": "$s7Amplify21IdentityIDStoragePathV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "StoragePath", + "printedName": "StoragePath", + "children": [ + { + "kind": "TypeWitness", + "name": "Input", + "printedName": "Input", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:7Amplify11StoragePathP", + "mangledName": "$s7Amplify11StoragePathP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Category", + "printedName": "Category", + "children": [ + { + "kind": "Function", + "name": "removePlugin", + "printedName": "removePlugin(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify8CategoryP12removePlugin3forySS_tF", + "mangledName": "$s7Amplify8CategoryP12removePlugin3forySS_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify8CategoryPAAE3logAA6Logger_pvp", + "mangledName": "$s7Amplify8CategoryPAAE3logAA6Logger_pvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify8CategoryPAAE3logAA6Logger_pvg", + "mangledName": "$s7Amplify8CategoryPAAE3logAA6Logger_pvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify8CategoryP", + "mangledName": "$s7Amplify8CategoryP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "DefaultLogger", + "printedName": "DefaultLogger", + "usr": "s:7Amplify13DefaultLoggerP", + "mangledName": "$s7Amplify13DefaultLoggerP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "children": [ + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16CategoryTypeableP12categoryTypeAA0bE0Ovp", + "mangledName": "$s7Amplify16CategoryTypeableP12categoryTypeAA0bE0Ovp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16CategoryTypeableP12categoryTypeAA0bE0Ovg", + "mangledName": "$s7Amplify16CategoryTypeableP12categoryTypeAA0bE0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "CategoryType", + "printedName": "CategoryType", + "children": [ + { + "kind": "Var", + "name": "analytics", + "printedName": "analytics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO9analyticsyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO9analyticsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "api", + "printedName": "api", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO3apiyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO3apiyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "auth", + "printedName": "auth", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO4authyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO4authyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO9dataStoreyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO9dataStoreyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "geo", + "printedName": "geo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO3geoyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO3geoyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "hub", + "printedName": "hub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO3hubyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO3hubyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "logging", + "printedName": "logging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO7loggingyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO7loggingyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "predictions", + "printedName": "predictions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO11predictionsyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO11predictionsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "pushNotifications", + "printedName": "pushNotifications", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO17pushNotificationsyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO17pushNotificationsyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CategoryType.Type) -> Amplify.CategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CategoryType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CategoryType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify12CategoryTypeO7storageyA2CmF", + "mangledName": "$s7Amplify12CategoryTypeO7storageyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.CategoryType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify12CategoryTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify12CategoryTypeO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify12CategoryTypeO8RawValuea", + "mangledName": "$s7Amplify12CategoryTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12CategoryTypeO8rawValueSSvp", + "mangledName": "$s7Amplify12CategoryTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12CategoryTypeO8rawValueSSvg", + "mangledName": "$s7Amplify12CategoryTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.CategoryType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify12CategoryTypeO8AllCasesa", + "mangledName": "$s7Amplify12CategoryTypeO8AllCasesa", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.CategoryType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12CategoryTypeO8allCasesSayACGvpZ", + "mangledName": "$s7Amplify12CategoryTypeO8allCasesSayACGvpZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.CategoryType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12CategoryTypeO8allCasesSayACGvgZ", + "mangledName": "$s7Amplify12CategoryTypeO8allCasesSayACGvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12CategoryTypeO11displayNameSSvp", + "mangledName": "$s7Amplify12CategoryTypeO11displayNameSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12CategoryTypeO11displayNameSSvg", + "mangledName": "$s7Amplify12CategoryTypeO11displayNameSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "category", + "printedName": "category", + "children": [ + { + "kind": "TypeNominal", + "name": "Category", + "printedName": "Amplify.Category", + "usr": "s:7Amplify8CategoryP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12CategoryTypeO8categoryAA0B0_pvp", + "mangledName": "$s7Amplify12CategoryTypeO8categoryAA0B0_pvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Category", + "printedName": "Amplify.Category", + "usr": "s:7Amplify8CategoryP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12CategoryTypeO8categoryAA0B0_pvg", + "mangledName": "$s7Amplify12CategoryTypeO8categoryAA0B0_pvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify12CategoryTypeO", + "mangledName": "$s7Amplify12CategoryTypeO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.CategoryType]", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyConfiguration", + "printedName": "AmplifyConfiguration", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(analytics:api:auth:dataStore:geo:hub:logging:notifications:predictions:storage:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyConfiguration", + "printedName": "Amplify.AmplifyConfiguration", + "usr": "s:7Amplify0A13ConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AnalyticsCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnalyticsCategoryConfiguration", + "printedName": "Amplify.AnalyticsCategoryConfiguration", + "usr": "s:7Amplify30AnalyticsCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.APICategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "APICategoryConfiguration", + "printedName": "Amplify.APICategoryConfiguration", + "usr": "s:7Amplify24APICategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AuthCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthCategoryConfiguration", + "printedName": "Amplify.AuthCategoryConfiguration", + "usr": "s:7Amplify25AuthCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.DataStoreCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataStoreCategoryConfiguration", + "printedName": "Amplify.DataStoreCategoryConfiguration", + "usr": "s:7Amplify30DataStoreCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.GeoCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "GeoCategoryConfiguration", + "printedName": "Amplify.GeoCategoryConfiguration", + "usr": "s:7Amplify24GeoCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.HubCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "HubCategoryConfiguration", + "printedName": "Amplify.HubCategoryConfiguration", + "usr": "s:7Amplify24HubCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.LoggingCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingCategoryConfiguration", + "printedName": "Amplify.LoggingCategoryConfiguration", + "usr": "s:7Amplify28LoggingCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.NotificationsCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationsCategoryConfiguration", + "printedName": "Amplify.NotificationsCategoryConfiguration", + "usr": "s:7Amplify34NotificationsCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.PredictionsCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "PredictionsCategoryConfiguration", + "printedName": "Amplify.PredictionsCategoryConfiguration", + "usr": "s:7Amplify32PredictionsCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.StorageCategoryConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "StorageCategoryConfiguration", + "printedName": "Amplify.StorageCategoryConfiguration", + "usr": "s:7Amplify28StorageCategoryConfigurationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A13ConfigurationV9analytics3api4auth9dataStore3geo3hub7logging13notifications11predictions7storageAcA017AnalyticsCategoryB0VSg_AA011APICategoryB0VSgAA04AuthoB0VSgAA04DatagoB0VSgAA03GeooB0VSgAA03HuboB0VSgAA07LoggingoB0VSgAA013NotificationsoB0VSgAA011PredictionsoB0VSgAA07StorageoB0VSgtcfc", + "mangledName": "$s7Amplify0A13ConfigurationV9analytics3api4auth9dataStore3geo3hub7logging13notifications11predictions7storageAcA017AnalyticsCategoryB0VSg_AA011APICategoryB0VSgAA04AuthoB0VSgAA04DatagoB0VSgAA03GeooB0VSgAA03HuboB0VSgAA07LoggingoB0VSgAA013NotificationsoB0VSgAA011PredictionsoB0VSgAA07StorageoB0VSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(configurationFile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyConfiguration", + "printedName": "Amplify.AmplifyConfiguration", + "usr": "s:7Amplify0A13ConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A13ConfigurationV17configurationFileAC10Foundation3URLV_tKcfc", + "mangledName": "$s7Amplify0A13ConfigurationV17configurationFileAC10Foundation3URLV_tKcfc", + "moduleName": "Amplify", + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13ConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A13ConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyConfiguration", + "printedName": "Amplify.AmplifyConfiguration", + "usr": "s:7Amplify0A13ConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A13ConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A13ConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A13ConfigurationV", + "mangledName": "$s7Amplify0A13ConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyOutputsData", + "printedName": "AmplifyOutputsData", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV7versionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV7versionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV7versionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV7versionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analytics", + "printedName": "analytics", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Analytics?", + "children": [ + { + "kind": "TypeNominal", + "name": "Analytics", + "printedName": "Amplify.AmplifyOutputsData.Analytics", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV9analyticsAC9AnalyticsVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV9analyticsAC9AnalyticsVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Analytics?", + "children": [ + { + "kind": "TypeNominal", + "name": "Analytics", + "printedName": "Amplify.AmplifyOutputsData.Analytics", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV9analyticsAC9AnalyticsVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV9analyticsAC9AnalyticsVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "auth", + "printedName": "auth", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth?", + "children": [ + { + "kind": "TypeNominal", + "name": "Auth", + "printedName": "Amplify.AmplifyOutputsData.Auth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4authAC4AuthVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4authAC4AuthVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth?", + "children": [ + { + "kind": "TypeNominal", + "name": "Auth", + "printedName": "Amplify.AmplifyOutputsData.Auth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4authAC4AuthVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4authAC4AuthVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.DataCategory?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataCategory", + "printedName": "Amplify.AmplifyOutputsData.DataCategory", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4dataAC0C8CategoryVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4dataAC0C8CategoryVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.DataCategory?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataCategory", + "printedName": "Amplify.AmplifyOutputsData.DataCategory", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4dataAC0C8CategoryVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4dataAC0C8CategoryVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geo", + "printedName": "geo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo?", + "children": [ + { + "kind": "TypeNominal", + "name": "Geo", + "printedName": "Amplify.AmplifyOutputsData.Geo", + "usr": "s:7Amplify0A11OutputsDataV3GeoV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3geoAC3GeoVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV3geoAC3GeoVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo?", + "children": [ + { + "kind": "TypeNominal", + "name": "Geo", + "printedName": "Amplify.AmplifyOutputsData.Geo", + "usr": "s:7Amplify0A11OutputsDataV3GeoV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3geoAC3GeoVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV3geoAC3GeoVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notifications", + "printedName": "notifications", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Notifications?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notifications", + "printedName": "Amplify.AmplifyOutputsData.Notifications", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV13notificationsAC13NotificationsVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV13notificationsAC13NotificationsVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Notifications?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notifications", + "printedName": "Amplify.AmplifyOutputsData.Notifications", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV13notificationsAC13NotificationsVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV13notificationsAC13NotificationsVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "storage", + "printedName": "storage", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Storage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Storage", + "printedName": "Amplify.AmplifyOutputsData.Storage", + "usr": "s:7Amplify0A11OutputsDataV7StorageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV7storageAC7StorageVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV7storageAC7StorageVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Storage?", + "children": [ + { + "kind": "TypeNominal", + "name": "Storage", + "printedName": "Amplify.AmplifyOutputsData.Storage", + "usr": "s:7Amplify0A11OutputsDataV7StorageV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV7storageAC7StorageVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV7storageAC7StorageVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.CustomOutput?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomOutput", + "printedName": "Amplify.AmplifyOutputsData.CustomOutput", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV6customAC12CustomOutputVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV6customAC12CustomOutputVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.CustomOutput?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomOutput", + "printedName": "Amplify.AmplifyOutputsData.CustomOutput", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV6customAC12CustomOutputVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV6customAC12CustomOutputVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Analytics", + "printedName": "Analytics", + "children": [ + { + "kind": "Var", + "name": "amazonPinpoint", + "printedName": "amazonPinpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Analytics.AmazonPinpoint?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpoint", + "printedName": "Amplify.AmplifyOutputsData.Analytics.AmazonPinpoint", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14amazonPinpointAE06AmazonF0VSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14amazonPinpointAE06AmazonF0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Analytics.AmazonPinpoint?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpoint", + "printedName": "Amplify.AmplifyOutputsData.Analytics.AmazonPinpoint", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14amazonPinpointAE06AmazonF0VSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14amazonPinpointAE06AmazonF0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmazonPinpoint", + "printedName": "AmazonPinpoint", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appId", + "printedName": "appId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV5appIdSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV5appIdSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV5appIdSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV5appIdSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpoint", + "printedName": "Amplify.AmplifyOutputsData.Analytics.AmazonPinpoint", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV14AmazonPinpointV", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Analytics", + "printedName": "Amplify.AmplifyOutputsData.Analytics", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV9AnalyticsV", + "mangledName": "$s7Amplify0A11OutputsDataV9AnalyticsV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Auth", + "printedName": "Auth", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userPoolId", + "printedName": "userPoolId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV10userPoolIdSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV10userPoolIdSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV10userPoolIdSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV10userPoolIdSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userPoolClientId", + "printedName": "userPoolClientId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV16userPoolClientIdSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV16userPoolClientIdSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV16userPoolClientIdSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV16userPoolClientIdSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identityPoolId", + "printedName": "identityPoolId", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14identityPoolIdSSSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14identityPoolIdSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14identityPoolIdSSSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14identityPoolIdSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordPolicy", + "printedName": "passwordPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.PasswordPolicy?", + "children": [ + { + "kind": "TypeNominal", + "name": "PasswordPolicy", + "printedName": "Amplify.AmplifyOutputsData.Auth.PasswordPolicy", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14passwordPolicyAE08PasswordF0VSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14passwordPolicyAE08PasswordF0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.PasswordPolicy?", + "children": [ + { + "kind": "TypeNominal", + "name": "PasswordPolicy", + "printedName": "Amplify.AmplifyOutputsData.Auth.PasswordPolicy", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14passwordPolicyAE08PasswordF0VSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14passwordPolicyAE08PasswordF0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "oauth", + "printedName": "oauth", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.OAuth?", + "children": [ + { + "kind": "TypeNominal", + "name": "OAuth", + "printedName": "Amplify.AmplifyOutputsData.Auth.OAuth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5oauthAE5OAuthVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5oauthAE5OAuthVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.OAuth?", + "children": [ + { + "kind": "TypeNominal", + "name": "OAuth", + "printedName": "Amplify.AmplifyOutputsData.Auth.OAuth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5oauthAE5OAuthVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5oauthAE5OAuthVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardRequiredAttributes", + "printedName": "standardRequiredAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV26standardRequiredAttributesSayAC021AmazonCognitoStandardG0OGSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV26standardRequiredAttributesSayAC021AmazonCognitoStandardG0OGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV26standardRequiredAttributesSayAC021AmazonCognitoStandardG0OGSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV26standardRequiredAttributesSayAC021AmazonCognitoStandardG0OGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usernameAttributes", + "printedName": "usernameAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UsernameAttributes]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UsernameAttributes]", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18usernameAttributesSayAE08UsernameF0OGSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18usernameAttributesSayAE08UsernameF0OGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UsernameAttributes]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UsernameAttributes]", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18usernameAttributesSayAE08UsernameF0OGSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18usernameAttributesSayAE08UsernameF0OGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userVerificationTypes", + "printedName": "userVerificationTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UserVerificationType]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UserVerificationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV21userVerificationTypesSayAE04UserF4TypeOGSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV21userVerificationTypesSayAE04UserF4TypeOGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UserVerificationType]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.Auth.UserVerificationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV21userVerificationTypesSayAE04UserF4TypeOGSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV21userVerificationTypesSayAE04UserF4TypeOGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unauthenticatedIdentitiesEnabled", + "printedName": "unauthenticatedIdentitiesEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV32unauthenticatedIdentitiesEnabledSbSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV32unauthenticatedIdentitiesEnabledSbSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV32unauthenticatedIdentitiesEnabledSbSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV32unauthenticatedIdentitiesEnabledSbSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mfaConfiguration", + "printedName": "mfaConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV16mfaConfigurationSSSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV16mfaConfigurationSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV16mfaConfigurationSSSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV16mfaConfigurationSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mfaMethods", + "printedName": "mfaMethods", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV10mfaMethodsSaySSGSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV10mfaMethodsSaySSGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV10mfaMethodsSaySSGSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV10mfaMethodsSaySSGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PasswordPolicy", + "printedName": "PasswordPolicy", + "children": [ + { + "kind": "Var", + "name": "minLength", + "printedName": "minLength", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV9minLengthSuvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV9minLengthSuvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV9minLengthSuvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV9minLengthSuvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requireNumbers", + "printedName": "requireNumbers", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireNumbersSbvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireNumbersSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireNumbersSbvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireNumbersSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requireLowercase", + "printedName": "requireLowercase", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireLowercaseSbvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireLowercaseSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireLowercaseSbvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireLowercaseSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requireUppercase", + "printedName": "requireUppercase", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireUppercaseSbvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireUppercaseSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireUppercaseSbvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV16requireUppercaseSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requireSymbols", + "printedName": "requireSymbols", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireSymbolsSbvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireSymbolsSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireSymbolsSbvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV14requireSymbolsSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PasswordPolicy", + "printedName": "Amplify.AmplifyOutputsData.Auth.PasswordPolicy", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV14PasswordPolicyV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OAuth", + "printedName": "OAuth", + "children": [ + { + "kind": "Var", + "name": "identityProviders", + "printedName": "identityProviders", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV17identityProvidersSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV17identityProvidersSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV17identityProvidersSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV17identityProvidersSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "domain", + "printedName": "domain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV6domainSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV6domainSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV6domainSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV6domainSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scopes", + "printedName": "scopes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV6scopesSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV6scopesSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV6scopesSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV6scopesSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectSignInUri", + "printedName": "redirectSignInUri", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV17redirectSignInUriSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV17redirectSignInUriSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV17redirectSignInUriSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV17redirectSignInUriSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectSignOutUri", + "printedName": "redirectSignOutUri", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV18redirectSignOutUriSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV18redirectSignOutUriSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV18redirectSignOutUriSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV18redirectSignOutUriSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "responseType", + "printedName": "responseType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV12responseTypeSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV12responseTypeSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV12responseTypeSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV12responseTypeSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "OAuth", + "printedName": "Amplify.AmplifyOutputsData.Auth.OAuth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV4AuthV5OAuthV", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV5OAuthV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UsernameAttributes", + "printedName": "UsernameAttributes", + "children": [ + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type) -> Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO5emailyA2GmF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO5emailyA2GmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "phoneNumber", + "printedName": "phoneNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type) -> Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO11phoneNumberyA2GmF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO11phoneNumberyA2GmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "UsernameAttributes", + "printedName": "Amplify.AmplifyOutputsData.Auth.UsernameAttributes", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueAGSgSS_tcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueAGSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8RawValuea", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8RawValuea", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV18UsernameAttributesO", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UserVerificationType", + "printedName": "UserVerificationType", + "children": [ + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type) -> Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO5emailyA2GmF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO5emailyA2GmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "phoneNumber", + "printedName": "phoneNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type) -> Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO11phoneNumberyA2GmF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO11phoneNumberyA2GmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserVerificationType", + "printedName": "Amplify.AmplifyOutputsData.Auth.UserVerificationType", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueAGSgSS_tcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueAGSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8RawValuea", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV20UserVerificationTypeO", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV4AuthV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Auth", + "printedName": "Amplify.AmplifyOutputsData.Auth", + "usr": "s:7Amplify0A11OutputsDataV4AuthV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4AuthV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV4AuthV", + "mangledName": "$s7Amplify0A11OutputsDataV4AuthV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataCategory", + "printedName": "DataCategory", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV3urlSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV3urlSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV3urlSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV3urlSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelIntrospection", + "printedName": "modelIntrospection", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV18modelIntrospectionAA9JSONValueOSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV18modelIntrospectionAA9JSONValueOSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV18modelIntrospectionAA9JSONValueOSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV18modelIntrospectionAA9JSONValueOSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV6apiKeySSSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV6apiKeySSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV6apiKeySSSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV6apiKeySSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultAuthorizationType", + "printedName": "defaultAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV24defaultAuthorizationTypeAC010AWSAppSyncfG0Ovp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV24defaultAuthorizationTypeAC010AWSAppSyncfG0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV24defaultAuthorizationTypeAC010AWSAppSyncfG0Ovg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV24defaultAuthorizationTypeAC010AWSAppSyncfG0Ovg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationTypes", + "printedName": "authorizationTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV18authorizationTypesSayAC27AWSAppSyncAuthorizationTypeOGvp", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV18authorizationTypesSayAC27AWSAppSyncAuthorizationTypeOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV18authorizationTypesSayAC27AWSAppSyncAuthorizationTypeOGvg", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV18authorizationTypesSayAC27AWSAppSyncAuthorizationTypeOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DataCategory", + "printedName": "Amplify.AmplifyOutputsData.DataCategory", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV0C8CategoryV", + "mangledName": "$s7Amplify0A11OutputsDataV0C8CategoryV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Geo", + "printedName": "Geo", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maps", + "printedName": "maps", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps?", + "children": [ + { + "kind": "TypeNominal", + "name": "Maps", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4mapsAE4MapsVSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4mapsAE4MapsVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps?", + "children": [ + { + "kind": "TypeNominal", + "name": "Maps", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4mapsAE4MapsVSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4mapsAE4MapsVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "searchIndices", + "printedName": "searchIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.SearchIndices?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchIndices", + "printedName": "Amplify.AmplifyOutputsData.Geo.SearchIndices", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13searchIndicesAE06SearchF0VSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13searchIndicesAE06SearchF0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.SearchIndices?", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchIndices", + "printedName": "Amplify.AmplifyOutputsData.Geo.SearchIndices", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13searchIndicesAE06SearchF0VSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13searchIndicesAE06SearchF0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "geofenceCollections", + "printedName": "geofenceCollections", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.GeofenceCollections?", + "children": [ + { + "kind": "TypeNominal", + "name": "GeofenceCollections", + "printedName": "Amplify.AmplifyOutputsData.Geo.GeofenceCollections", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19geofenceCollectionsAE08GeofenceF0VSgvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19geofenceCollectionsAE08GeofenceF0VSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.Geo.GeofenceCollections?", + "children": [ + { + "kind": "TypeNominal", + "name": "GeofenceCollections", + "printedName": "Amplify.AmplifyOutputsData.Geo.GeofenceCollections", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19geofenceCollectionsAE08GeofenceF0VSgvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19geofenceCollectionsAE08GeofenceF0VSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Maps", + "printedName": "Maps", + "children": [ + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AmplifyOutputsData.Geo.Maps.AmazonLocationServiceConfig]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AmazonLocationServiceConfig", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps.AmazonLocationServiceConfig", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV5itemsSDySSAG27AmazonLocationServiceConfigVGvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV5itemsSDySSAG27AmazonLocationServiceConfigVGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.AmplifyOutputsData.Geo.Maps.AmazonLocationServiceConfig]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AmazonLocationServiceConfig", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps.AmazonLocationServiceConfig", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV5itemsSDySSAG27AmazonLocationServiceConfigVGvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV5itemsSDySSAG27AmazonLocationServiceConfigVGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV7defaultSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV7defaultSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV7defaultSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV7defaultSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmazonLocationServiceConfig", + "printedName": "AmazonLocationServiceConfig", + "children": [ + { + "kind": "Var", + "name": "style", + "printedName": "style", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV5styleSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV5styleSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV5styleSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV5styleSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonLocationServiceConfig", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps.AmazonLocationServiceConfig", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV4fromAIs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV4fromAIs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV27AmazonLocationServiceConfigV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Maps", + "printedName": "Amplify.AmplifyOutputsData.Geo.Maps", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4MapsV", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4MapsV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SearchIndices", + "printedName": "SearchIndices", + "children": [ + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV5itemsSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV5itemsSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV5itemsSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV5itemsSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV7defaultSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV7defaultSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV7defaultSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV7defaultSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SearchIndices", + "printedName": "Amplify.AmplifyOutputsData.Geo.SearchIndices", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV3GeoV13SearchIndicesV", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV13SearchIndicesV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GeofenceCollections", + "printedName": "GeofenceCollections", + "children": [ + { + "kind": "Var", + "name": "items", + "printedName": "items", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV5itemsSaySSGvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV5itemsSaySSGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV5itemsSaySSGvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV5itemsSaySSGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV7defaultSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV7defaultSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV7defaultSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV7defaultSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GeofenceCollections", + "printedName": "Amplify.AmplifyOutputsData.Geo.GeofenceCollections", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV4fromAGs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV4fromAGs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV19GeofenceCollectionsV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV3GeoV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Geo", + "printedName": "Amplify.AmplifyOutputsData.Geo", + "usr": "s:7Amplify0A11OutputsDataV3GeoV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV3GeoV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV3GeoV", + "mangledName": "$s7Amplify0A11OutputsDataV3GeoV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Notifications", + "printedName": "Notifications", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "amazonPinpointAppId", + "printedName": "amazonPinpointAppId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV19amazonPinpointAppIdSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV19amazonPinpointAppIdSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV19amazonPinpointAppIdSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV19amazonPinpointAppIdSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "channels", + "printedName": "channels", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AmazonPinpointChannelType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV8channelsSayAC25AmazonPinpointChannelTypeOGvp", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV8channelsSayAC25AmazonPinpointChannelTypeOGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.AmplifyOutputsData.AmazonPinpointChannelType]", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV8channelsSayAC25AmazonPinpointChannelTypeOGvg", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV8channelsSayAC25AmazonPinpointChannelTypeOGvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Notifications", + "printedName": "Amplify.AmplifyOutputsData.Notifications", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV13NotificationsV", + "mangledName": "$s7Amplify0A11OutputsDataV13NotificationsV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Storage", + "printedName": "Storage", + "children": [ + { + "kind": "Var", + "name": "awsRegion", + "printedName": "awsRegion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV7StorageV9awsRegionSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV9awsRegionSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AWSRegion", + "printedName": "Amplify.AmplifyOutputsData.AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV7StorageV9awsRegionSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV9awsRegionSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bucketName", + "printedName": "bucketName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV7StorageV10bucketNameSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV10bucketNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV7StorageV10bucketNameSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV10bucketNameSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV7StorageV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Storage", + "printedName": "Amplify.AmplifyOutputsData.Storage", + "usr": "s:7Amplify0A11OutputsDataV7StorageV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV7StorageV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV7StorageV", + "mangledName": "$s7Amplify0A11OutputsDataV7StorageV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomOutput", + "printedName": "CustomOutput", + "children": [ + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV12CustomOutputV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomOutput", + "printedName": "Amplify.AmplifyOutputsData.CustomOutput", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV12CustomOutputV4fromAEs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV12CustomOutputV", + "mangledName": "$s7Amplify0A11OutputsDataV12CustomOutputV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeAlias", + "name": "AWSRegion", + "printedName": "AWSRegion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV9AWSRegiona", + "mangledName": "$s7Amplify0A11OutputsDataV9AWSRegiona", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "TypeDecl", + "name": "AmazonCognitoStandardAttributes", + "printedName": "AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "Var", + "name": "address", + "printedName": "address", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7addressyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7addressyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "birthdate", + "printedName": "birthdate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9birthdateyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9birthdateyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO5emailyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO5emailyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO10familyNameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO10familyNameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO6genderyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO6genderyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9givenNameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9givenNameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "locale", + "printedName": "locale", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO6localeyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO6localeyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO10middleNameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO10middleNameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO4nameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO4nameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "nickname", + "printedName": "nickname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8nicknameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8nicknameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "phoneNumber", + "printedName": "phoneNumber", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO11phoneNumberyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO11phoneNumberyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7pictureyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7pictureyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "preferredUsername", + "printedName": "preferredUsername", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO17preferredUsernameyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO17preferredUsernameyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7profileyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7profileyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO3subyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO3subyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "updatedAt", + "printedName": "updatedAt", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9updatedAtyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO9updatedAtyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "website", + "printedName": "website", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7websiteyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO7websiteyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "zoneinfo", + "printedName": "zoneinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type) -> Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8zoneinfoyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8zoneinfoyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonCognitoStandardAttributes", + "printedName": "Amplify.AmplifyOutputsData.AmazonCognitoStandardAttributes", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueAESgSS_tcfc", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8RawValuea", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8RawValuea", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO", + "mangledName": "$s7Amplify0A11OutputsDataV31AmazonCognitoStandardAttributesO", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSAppSyncAuthorizationType", + "printedName": "AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "Var", + "name": "amazonCognitoUserPools", + "printedName": "amazonCognitoUserPools", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type) -> Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO22amazonCognitoUserPoolsyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO22amazonCognitoUserPoolsyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "apiKey", + "printedName": "apiKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type) -> Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO6apiKeyyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO6apiKeyyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "awsIAM", + "printedName": "awsIAM", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type) -> Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO6awsIAMyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO6awsIAMyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "awsLambda", + "printedName": "awsLambda", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type) -> Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO9awsLambdayA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO9awsLambdayA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "openIDConnect", + "printedName": "openIDConnect", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type) -> Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO13openIDConnectyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO13openIDConnectyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSAppSyncAuthorizationType", + "printedName": "Amplify.AmplifyOutputsData.AWSAppSyncAuthorizationType", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueAESgSS_tcfc", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8RawValuea", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO", + "mangledName": "$s7Amplify0A11OutputsDataV27AWSAppSyncAuthorizationTypeO", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmazonPinpointChannelType", + "printedName": "AmazonPinpointChannelType", + "children": [ + { + "kind": "Var", + "name": "inAppMessaging", + "printedName": "inAppMessaging", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type) -> Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO14inAppMessagingyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO14inAppMessagingyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "fcm", + "printedName": "fcm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type) -> Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO3fcmyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO3fcmyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "apns", + "printedName": "apns", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type) -> Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO4apnsyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO4apnsyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type) -> Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO5emailyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO5emailyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "sms", + "printedName": "sms", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type) -> Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO3smsyA2EmF", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO3smsyA2EmF", + "moduleName": "Amplify", + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmazonPinpointChannelType", + "printedName": "Amplify.AmplifyOutputsData.AmazonPinpointChannelType", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueAESgSS_tcfc", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueAESgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8RawValuea", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8RawValuea", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ] + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueSSvp", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueSSvg", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO", + "mangledName": "$s7Amplify0A11OutputsDataV25AmazonPinpointChannelTypeO", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A11OutputsDataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify0A11OutputsDataV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOutputsData", + "printedName": "Amplify.AmplifyOutputsData", + "usr": "s:7Amplify0A11OutputsDataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A11OutputsDataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify0A11OutputsDataV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A11OutputsDataV", + "mangledName": "$s7Amplify0A11OutputsDataV", + "moduleName": "Amplify", + "declAttributes": [ + "SPIAccessControl" + ], + "spi_group_names": [ + "InternalAmplifyConfiguration" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyOutputs", + "printedName": "AmplifyOutputs", + "children": [ + { + "kind": "Var", + "name": "amplifyOutputs", + "printedName": "amplifyOutputs", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOutputs", + "printedName": "Amplify.AmplifyOutputs", + "usr": "s:7Amplify0A7OutputsV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A7OutputsV07amplifyB0ACvpZ", + "mangledName": "$s7Amplify0A7OutputsV07amplifyB0ACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOutputs", + "printedName": "Amplify.AmplifyOutputs", + "usr": "s:7Amplify0A7OutputsV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A7OutputsV07amplifyB0ACvgZ", + "mangledName": "$s7Amplify0A7OutputsV07amplifyB0ACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "data", + "printedName": "data(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOutputs", + "printedName": "Amplify.AmplifyOutputs", + "usr": "s:7Amplify0A7OutputsV" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A7OutputsV4datayAC10Foundation4DataVFZ", + "mangledName": "$s7Amplify0A7OutputsV4datayAC10Foundation4DataVFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resource", + "printedName": "resource(named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOutputs", + "printedName": "Amplify.AmplifyOutputs", + "usr": "s:7Amplify0A7OutputsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A7OutputsV8resource5namedACSS_tFZ", + "mangledName": "$s7Amplify0A7OutputsV8resource5namedACSS_tFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A7OutputsV", + "mangledName": "$s7Amplify0A7OutputsV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "CategoryConfiguration", + "printedName": "CategoryConfiguration", + "children": [ + { + "kind": "Var", + "name": "plugins", + "printedName": "plugins", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21CategoryConfigurationP7pluginsSDySSAA9JSONValueOGvp", + "mangledName": "$s7Amplify21CategoryConfigurationP7pluginsSDySSAA9JSONValueOGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21CategoryConfigurationP7pluginsSDySSAA9JSONValueOGvg", + "mangledName": "$s7Amplify21CategoryConfigurationP7pluginsSDySSAA9JSONValueOGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21CategoryConfigurationP", + "mangledName": "$s7Amplify21CategoryConfigurationP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationError", + "printedName": "ConfigurationError", + "children": [ + { + "kind": "Var", + "name": "amplifyAlreadyConfigured", + "printedName": "amplifyAlreadyConfigured", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ConfigurationError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ConfigurationError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ConfigurationError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ConfigurationErrorO24amplifyAlreadyConfiguredyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify18ConfigurationErrorO24amplifyAlreadyConfiguredyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidAmplifyConfigurationFile", + "printedName": "invalidAmplifyConfigurationFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ConfigurationError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ConfigurationError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ConfigurationError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ConfigurationErrorO07invalidaB4FileyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify18ConfigurationErrorO07invalidaB4FileyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "invalidAmplifyOutputsFile", + "printedName": "invalidAmplifyOutputsFile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ConfigurationError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ConfigurationError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ConfigurationError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ConfigurationErrorO07invalidA11OutputsFileyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify18ConfigurationErrorO07invalidA11OutputsFileyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unableToDecode", + "printedName": "unableToDecode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ConfigurationError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ConfigurationError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ConfigurationError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ConfigurationErrorO14unableToDecodeyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify18ConfigurationErrorO14unableToDecodeyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ConfigurationError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.ConfigurationError", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.ConfigurationError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.ConfigurationError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify18ConfigurationErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify18ConfigurationErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify18ConfigurationErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify18ConfigurationErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18ConfigurationErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify18ConfigurationErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify18ConfigurationErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify18ConfigurationErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18ConfigurationErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify18ConfigurationErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18ConfigurationErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify18ConfigurationErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18ConfigurationErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify18ConfigurationErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationError", + "printedName": "Amplify.ConfigurationError", + "usr": "s:7Amplify18ConfigurationErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify18ConfigurationErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify18ConfigurationErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify18ConfigurationErrorO", + "mangledName": "$s7Amplify18ConfigurationErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreError", + "printedName": "CoreError", + "children": [ + { + "kind": "Var", + "name": "listOperation", + "printedName": "listOperation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.CoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.CoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9CoreErrorO13listOperationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9CoreErrorO13listOperationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "clientValidation", + "printedName": "clientValidation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.CoreError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.CoreError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.CoreError", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.CoreError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.CoreError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9CoreErrorO16clientValidationyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify9CoreErrorO16clientValidationyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify9CoreErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify9CoreErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9CoreErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify9CoreErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify9CoreErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify9CoreErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9CoreErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify9CoreErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9CoreErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify9CoreErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9CoreErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify9CoreErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreError", + "printedName": "Amplify.CoreError", + "usr": "s:7Amplify9CoreErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9CoreErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify9CoreErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify9CoreErrorO", + "mangledName": "$s7Amplify9CoreErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BasicUserProfile", + "printedName": "BasicUserProfile", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16BasicUserProfileV4nameSSSgvp", + "mangledName": "$s7Amplify16BasicUserProfileV4nameSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV4nameSSSgvg", + "mangledName": "$s7Amplify16BasicUserProfileV4nameSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV4nameSSSgvs", + "mangledName": "$s7Amplify16BasicUserProfileV4nameSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16BasicUserProfileV5emailSSSgvp", + "mangledName": "$s7Amplify16BasicUserProfileV5emailSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV5emailSSSgvg", + "mangledName": "$s7Amplify16BasicUserProfileV5emailSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV5emailSSSgvs", + "mangledName": "$s7Amplify16BasicUserProfileV5emailSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "plan", + "printedName": "plan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16BasicUserProfileV4planSSSgvp", + "mangledName": "$s7Amplify16BasicUserProfileV4planSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV4planSSSgvg", + "mangledName": "$s7Amplify16BasicUserProfileV4planSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV4planSSSgvs", + "mangledName": "$s7Amplify16BasicUserProfileV4planSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvp", + "mangledName": "$s7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvg", + "mangledName": "$s7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvs", + "mangledName": "$s7Amplify16BasicUserProfileV8locationAA0cD8LocationVSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "customProperties", + "printedName": "customProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvs", + "mangledName": "$s7Amplify16BasicUserProfileV16customPropertiesSDySSAA0cD13PropertyValue_pGSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:email:plan:location:customProperties:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BasicUserProfile", + "printedName": "Amplify.BasicUserProfile", + "usr": "s:7Amplify16BasicUserProfileV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16BasicUserProfileV4name5email4plan8location16customPropertiesACSSSg_A2iA0cD8LocationVSgSDySSAA0cD13PropertyValue_pGSgtcfc", + "mangledName": "$s7Amplify16BasicUserProfileV4name5email4plan8location16customPropertiesACSSSg_A2iA0cD8LocationVSgSDySSAA0cD13PropertyValue_pGSgtcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify16BasicUserProfileV", + "mangledName": "$s7Amplify16BasicUserProfileV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "UserProfile", + "printedName": "UserProfile", + "usr": "s:7Amplify11UserProfileP", + "mangledName": "$s7Amplify11UserProfileP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UserProfile", + "printedName": "UserProfile", + "children": [ + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11UserProfileP4nameSSSgvp", + "mangledName": "$s7Amplify11UserProfileP4nameSSSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11UserProfileP4nameSSSgvg", + "mangledName": "$s7Amplify11UserProfileP4nameSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11UserProfileP5emailSSSgvp", + "mangledName": "$s7Amplify11UserProfileP5emailSSSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11UserProfileP5emailSSSgvg", + "mangledName": "$s7Amplify11UserProfileP5emailSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "plan", + "printedName": "plan", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11UserProfileP4planSSSgvp", + "mangledName": "$s7Amplify11UserProfileP4planSSSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11UserProfileP4planSSSgvg", + "mangledName": "$s7Amplify11UserProfileP4planSSSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11UserProfileP8locationAA0bC8LocationVSgvp", + "mangledName": "$s7Amplify11UserProfileP8locationAA0bC8LocationVSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.UserProfileLocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11UserProfileP8locationAA0bC8LocationVSgvg", + "mangledName": "$s7Amplify11UserProfileP8locationAA0bC8LocationVSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customProperties", + "printedName": "customProperties", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11UserProfileP16customPropertiesSDySSAA0bC13PropertyValue_pGSgvp", + "mangledName": "$s7Amplify11UserProfileP16customPropertiesSDySSAA0bC13PropertyValue_pGSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.UserProfilePropertyValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UserProfilePropertyValue", + "printedName": "Amplify.UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11UserProfileP16customPropertiesSDySSAA0bC13PropertyValue_pGSgvg", + "mangledName": "$s7Amplify11UserProfileP16customPropertiesSDySSAA0bC13PropertyValue_pGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify11UserProfileP", + "mangledName": "$s7Amplify11UserProfileP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "UserProfileLocation", + "printedName": "UserProfileLocation", + "children": [ + { + "kind": "Var", + "name": "latitude", + "printedName": "latitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV8latitudeSdSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV8latitudeSdSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV8latitudeSdSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV8latitudeSdSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV8latitudeSdSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV8latitudeSdSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "longitude", + "printedName": "longitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV9longitudeSdSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV9longitudeSdSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV9longitudeSdSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV9longitudeSdSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV9longitudeSdSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV9longitudeSdSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "postalCode", + "printedName": "postalCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV10postalCodeSSSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV10postalCodeSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV10postalCodeSSSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV10postalCodeSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV10postalCodeSSSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV10postalCodeSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "city", + "printedName": "city", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV4citySSSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV4citySSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV4citySSSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV4citySSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV4citySSSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV4citySSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "region", + "printedName": "region", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV6regionSSSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV6regionSSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV6regionSSSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV6regionSSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV6regionSSSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV6regionSSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify19UserProfileLocationV7countrySSSgvp", + "mangledName": "$s7Amplify19UserProfileLocationV7countrySSSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV7countrySSSgvg", + "mangledName": "$s7Amplify19UserProfileLocationV7countrySSSgvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify19UserProfileLocationV7countrySSSgvs", + "mangledName": "$s7Amplify19UserProfileLocationV7countrySSSgvs", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(latitude:longitude:postalCode:city:region:country:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UserProfileLocation", + "printedName": "Amplify.UserProfileLocation", + "usr": "s:7Amplify19UserProfileLocationV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify19UserProfileLocationV8latitude9longitude10postalCode4city6region7countryACSdSg_AJSSSgA3Ktcfc", + "mangledName": "$s7Amplify19UserProfileLocationV8latitude9longitude10postalCode4city6region7countryACSdSg_AJSSSgA3Ktcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify19UserProfileLocationV", + "mangledName": "$s7Amplify19UserProfileLocationV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "declKind": "Protocol", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Resettable", + "printedName": "Resettable", + "children": [ + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10ResettableP5resetyyYaF", + "mangledName": "$s7Amplify10ResettableP5resetyyYaF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify10ResettablePA2A6PluginRzrlE5resetyyYaF", + "mangledName": "$s7Amplify10ResettablePA2A6PluginRzrlE5resetyyYaF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Plugin", + "printedName": "Plugin", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify6PluginP3keySSvp", + "mangledName": "$s7Amplify6PluginP3keySSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify6PluginP3keySSvg", + "mangledName": "$s7Amplify6PluginP3keySSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(using:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify6PluginP9configure5usingyypSg_tKF", + "mangledName": "$s7Amplify6PluginP9configure5usingyypSg_tKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "PluginKey", + "printedName": "PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9PluginKeya", + "mangledName": "$s7Amplify9PluginKeya", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PluginInitializable", + "printedName": "PluginInitializable", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(instance:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "P" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify19PluginInitializableP8instancexqd___tcAA0B0Rd__lufc", + "mangledName": "$s7Amplify19PluginInitializableP8instancexqd___tcAA0B0Rd__lufc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19PluginInitializableP", + "mangledName": "$s7Amplify19PluginInitializableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "PluginError", + "printedName": "PluginError", + "children": [ + { + "kind": "Var", + "name": "mismatchedPlugin", + "printedName": "mismatchedPlugin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PluginError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PluginError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PluginError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PluginErrorO010mismatchedB0yACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify11PluginErrorO010mismatchedB0yACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "noSuchPlugin", + "printedName": "noSuchPlugin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PluginError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PluginError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PluginError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PluginErrorO06noSuchB0yACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify11PluginErrorO06noSuchB0yACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "pluginConfigurationError", + "printedName": "pluginConfigurationError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PluginError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PluginError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PluginError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PluginErrorO019pluginConfigurationC0yACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify11PluginErrorO019pluginConfigurationC0yACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.PluginError.Type) -> (Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?) -> Amplify.PluginError", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Amplify.ErrorDescription, Amplify.RecoverySuggestion, Swift.Error?)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.PluginError.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.PluginError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11PluginErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "mangledName": "$s7Amplify11PluginErrorO7unknownyACSS_SSs0C0_pSgtcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PluginErrorO16errorDescriptionSSvp", + "mangledName": "$s7Amplify11PluginErrorO16errorDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PluginErrorO16errorDescriptionSSvg", + "mangledName": "$s7Amplify11PluginErrorO16errorDescriptionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PluginErrorO18recoverySuggestionSSvp", + "mangledName": "$s7Amplify11PluginErrorO18recoverySuggestionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PluginErrorO18recoverySuggestionSSvg", + "mangledName": "$s7Amplify11PluginErrorO18recoverySuggestionSSvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11PluginErrorO010underlyingC0s0C0_pSgvp", + "mangledName": "$s7Amplify11PluginErrorO010underlyingC0s0C0_pSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11PluginErrorO010underlyingC0s0C0_pSgvg", + "mangledName": "$s7Amplify11PluginErrorO010underlyingC0s0C0_pSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PluginError", + "printedName": "Amplify.PluginError", + "usr": "s:7Amplify11PluginErrorO" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11PluginErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "mangledName": "$s7Amplify11PluginErrorO16errorDescription18recoverySuggestion0D0ACSS_SSs0C0_ptcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11PluginErrorO", + "mangledName": "$s7Amplify11PluginErrorO", + "moduleName": "Amplify", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyError", + "printedName": "AmplifyError", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessLevel", + "printedName": "AccessLevel", + "children": [ + { + "kind": "Var", + "name": "public", + "printedName": "public", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AccessLevel.Type) -> Amplify.AccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11AccessLevelO6publicyA2CmF", + "mangledName": "$s7Amplify11AccessLevelO6publicyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "protected", + "printedName": "protected", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AccessLevel.Type) -> Amplify.AccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11AccessLevelO9protectedyA2CmF", + "mangledName": "$s7Amplify11AccessLevelO9protectedyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "private", + "printedName": "private", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AccessLevel.Type) -> Amplify.AccessLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AccessLevel.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.AccessLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify11AccessLevelO7privateyA2CmF", + "mangledName": "$s7Amplify11AccessLevelO7privateyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AccessLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessLevel", + "printedName": "Amplify.AccessLevel", + "usr": "s:7Amplify11AccessLevelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11AccessLevelO8rawValueACSgSS_tcfc", + "mangledName": "$s7Amplify11AccessLevelO8rawValueACSgSS_tcfc", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify11AccessLevelO8RawValuea", + "mangledName": "$s7Amplify11AccessLevelO8RawValuea", + "moduleName": "Amplify", + "implicit": true + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify11AccessLevelO8rawValueSSvp", + "mangledName": "$s7Amplify11AccessLevelO8rawValueSSvp", + "moduleName": "Amplify", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11AccessLevelO8rawValueSSvg", + "mangledName": "$s7Amplify11AccessLevelO8rawValueSSvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Inlinable" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify11AccessLevelO", + "mangledName": "$s7Amplify11AccessLevelO", + "moduleName": "Amplify", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "TypeAlias", + "name": "WeakAmplifyAsyncSequenceRef", + "printedName": "WeakAmplifyAsyncSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify04WeakA16AsyncSequenceRefa", + "mangledName": "$s7Amplify04WeakA16AsyncSequenceRefa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AmplifyAsyncSequence", + "printedName": "AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeAlias", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncStream.Iterator", + "usr": "s:ScS8IteratorV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A13AsyncSequenceC8Iteratora", + "mangledName": "$s7Amplify0A13AsyncSequenceC8Iteratora", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A13AsyncSequenceC11isCancelledSbvp", + "mangledName": "$s7Amplify0A13AsyncSequenceC11isCancelledSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A13AsyncSequenceC11isCancelledSbvg", + "mangledName": "$s7Amplify0A13AsyncSequenceC11isCancelledSbvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parent:bufferingPolicy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Cancellable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Cancellable", + "printedName": "Amplify.Cancellable", + "usr": "s:7Amplify11CancellableP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "hasDefaultArg": true, + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A13AsyncSequenceC6parent15bufferingPolicyACyxGAA11Cancellable_pSg_ScS12ContinuationV09BufferingF0Oyx__Gtcfc", + "mangledName": "$s7Amplify0A13AsyncSequenceC6parent15bufferingPolicyACyxGAA11Cancellable_pSg_ScS12ContinuationV09BufferingF0Oyx__Gtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeAsyncIterator", + "printedName": "makeAsyncIterator()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncStream.Iterator", + "usr": "s:ScS8IteratorV" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13AsyncSequenceC04makeB8IteratorScS0E0Vyx_GyF", + "mangledName": "$s7Amplify0A13AsyncSequenceC04makeB8IteratorScS0E0Vyx_GyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13AsyncSequenceC4sendyyxF", + "mangledName": "$s7Amplify0A13AsyncSequenceC4sendyyxF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13AsyncSequenceC6finishyyF", + "mangledName": "$s7Amplify0A13AsyncSequenceC6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13AsyncSequenceC6cancelyyF", + "mangledName": "$s7Amplify0A13AsyncSequenceC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "AsyncIterator", + "printedName": "AsyncIterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncStream.Iterator", + "usr": "s:ScS8IteratorV" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A13AsyncSequenceC0B8Iteratora", + "mangledName": "$s7Amplify0A13AsyncSequenceC0B8Iteratora", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A13AsyncSequenceC7Elementa", + "mangledName": "$s7Amplify0A13AsyncSequenceC7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A13AsyncSequenceC", + "mangledName": "$s7Amplify0A13AsyncSequenceC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "TypeWitness", + "name": "AsyncIterator", + "printedName": "AsyncIterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncStream.Iterator", + "usr": "s:ScS8IteratorV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:Sci", + "mangledName": "$sSci" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "WeakAmplifyAsyncThrowingSequenceRef", + "printedName": "WeakAmplifyAsyncThrowingSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify04WeakA24AsyncThrowingSequenceRefa", + "mangledName": "$s7Amplify04WeakA24AsyncThrowingSequenceRefa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeAlias", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncThrowingStream.Iterator", + "usr": "s:Scs8IteratorV" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC8Iteratora", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC8Iteratora", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC11isCancelledSbvp", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC11isCancelledSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "SetterAccess", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC11isCancelledSbvg", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC11isCancelledSbvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parent:bufferingPolicy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Cancellable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Cancellable", + "printedName": "Amplify.Cancellable", + "usr": "s:7Amplify11CancellableP" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncThrowingStream.Continuation.BufferingPolicy", + "hasDefaultArg": true, + "usr": "s:Scs12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC6parent15bufferingPolicyACyxGAA11Cancellable_pSg_Scs12ContinuationV09BufferingG0Oyxs5Error_p__Gtcfc", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC6parent15bufferingPolicyACyxGAA11Cancellable_pSg_Scs12ContinuationV09BufferingG0Oyxs5Error_p__Gtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeAsyncIterator", + "printedName": "makeAsyncIterator()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncThrowingSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncThrowingStream.Iterator", + "usr": "s:Scs8IteratorV" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC04makeB8IteratorScs0F0Vyxs5Error_p_GyF", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC04makeB8IteratorScs0F0Vyxs5Error_p_GyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC4sendyyxF", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC4sendyyxF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC4failyys5Error_pF", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC4failyys5Error_pF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC6finishyyF", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC6cancelyyF", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "AsyncIterator", + "printedName": "AsyncIterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncThrowingSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncThrowingStream.Iterator", + "usr": "s:Scs8IteratorV" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC0B8Iteratora", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC0B8Iteratora", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC7Elementa", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A21AsyncThrowingSequenceC", + "mangledName": "$s7Amplify0A21AsyncThrowingSequenceC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "TypeWitness", + "name": "AsyncIterator", + "printedName": "AsyncIterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Amplify.AmplifyAsyncThrowingSequence.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "_Concurrency.AsyncThrowingStream.Iterator", + "usr": "s:Scs8IteratorV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ], + "usr": "s:Sci", + "mangledName": "$sSci" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeAlias", + "name": "ErrorDescription", + "printedName": "ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16ErrorDescriptiona", + "mangledName": "$s7Amplify16ErrorDescriptiona", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "RecoverySuggestion", + "printedName": "RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify18RecoverySuggestiona", + "mangledName": "$s7Amplify18RecoverySuggestiona", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "ErrorName", + "printedName": "ErrorName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9ErrorNamea", + "mangledName": "$s7Amplify9ErrorNamea", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "Field", + "printedName": "Field", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify5Fielda", + "mangledName": "$s7Amplify5Fielda", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify3Keya", + "mangledName": "$s7Amplify3Keya", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "TargetIdentityId", + "printedName": "TargetIdentityId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16TargetIdentityIda", + "mangledName": "$s7Amplify16TargetIdentityIda", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AmplifyError", + "printedName": "AmplifyError", + "children": [ + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A5ErrorP16errorDescriptionSSvp", + "mangledName": "$s7Amplify0A5ErrorP16errorDescriptionSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A5ErrorP16errorDescriptionSSvg", + "mangledName": "$s7Amplify0A5ErrorP16errorDescriptionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recoverySuggestion", + "printedName": "recoverySuggestion", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A5ErrorP18recoverySuggestionSSvp", + "mangledName": "$s7Amplify0A5ErrorP18recoverySuggestionSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A5ErrorP18recoverySuggestionSSvg", + "mangledName": "$s7Amplify0A5ErrorP18recoverySuggestionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "underlyingError", + "printedName": "underlyingError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A5ErrorP010underlyingB0s0B0_pSgvp", + "mangledName": "$s7Amplify0A5ErrorP010underlyingB0s0B0_pSgvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A5ErrorP010underlyingB0s0B0_pSgvg", + "mangledName": "$s7Amplify0A5ErrorP010underlyingB0s0B0_pSgvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorDescription:recoverySuggestion:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNameAlias", + "name": "ErrorDescription", + "printedName": "Amplify.ErrorDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "RecoverySuggestion", + "printedName": "Amplify.RecoverySuggestion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A5ErrorP16errorDescription18recoverySuggestion0C0xSS_SSs0B0_ptcfc", + "mangledName": "$s7Amplify0A5ErrorP16errorDescription18recoverySuggestion0C0xSS_SSs0B0_ptcfc", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "debugDescription", + "printedName": "debugDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A5ErrorPAAE16debugDescriptionSSvp", + "mangledName": "$s7Amplify0A5ErrorPAAE16debugDescriptionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A5ErrorPAAE16debugDescriptionSSvg", + "mangledName": "$s7Amplify0A5ErrorPAAE16debugDescriptionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isOperationCancelledError", + "printedName": "isOperationCancelledError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A5ErrorPAAE020isOperationCancelledB0Sbvp", + "mangledName": "$s7Amplify0A5ErrorPAAE020isOperationCancelledB0Sbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A5ErrorPAAE020isOperationCancelledB0Sbvg", + "mangledName": "$s7Amplify0A5ErrorPAAE020isOperationCancelledB0Sbvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A5ErrorP", + "mangledName": "$s7Amplify0A5ErrorP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyErrorMessages", + "printedName": "AmplifyErrorMessages", + "children": [ + { + "kind": "Function", + "name": "reportBugToAWS", + "printedName": "reportBugToAWS(file:function:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13ErrorMessagesV14reportBugToAWS4file8function4lineSSs12StaticStringV_AISutFZ", + "mangledName": "$s7Amplify0A13ErrorMessagesV14reportBugToAWS4file8function4lineSSs12StaticStringV_AISutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldNotHappenReportBugToAWS", + "printedName": "shouldNotHappenReportBugToAWS(file:function:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13ErrorMessagesV29shouldNotHappenReportBugToAWS4file8function4lineSSs12StaticStringV_AISutFZ", + "mangledName": "$s7Amplify0A13ErrorMessagesV29shouldNotHappenReportBugToAWS4file8function4lineSSs12StaticStringV_AISutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldNotHappenReportBugToAWSWithoutLineInfo", + "printedName": "shouldNotHappenReportBugToAWSWithoutLineInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13ErrorMessagesV44shouldNotHappenReportBugToAWSWithoutLineInfoSSyFZ", + "mangledName": "$s7Amplify0A13ErrorMessagesV44shouldNotHappenReportBugToAWSWithoutLineInfoSSyFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A13ErrorMessagesV", + "mangledName": "$s7Amplify0A13ErrorMessagesV", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AmplifyInProcessReportingOperation", + "printedName": "AmplifyInProcessReportingOperation", + "children": [ + { + "kind": "TypeAlias", + "name": "InProcess", + "printedName": "InProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A27InProcessReportingOperationC0bC0a", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC0bC0a", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(categoryType:eventName:request:inProcessListener:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperation", + "printedName": "Amplify.AmplifyInProcessReportingOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A27InProcessReportingOperationC" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyInProcessReportingOperation.InProcessListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Amplify.AmplifyInProcessReportingOperation.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ] + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyInProcessReportingOperation.ResultListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyInProcessReportingOperation.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A27InProcessReportingOperationC12categoryType9eventName7request02inC8Listener06resultL0ACyxq_q0_q1_GAA08CategoryG0O_SSxyq_cSgys6ResultOyq0_q1_GcSgtcfc", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC12categoryType9eventName7request02inC8Listener06resultL0ACyxq_q0_q1_GAA08CategoryG0O_SSxyq_cSgys6ResultOyq0_q1_GcSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A27InProcessReportingOperationC6cancelyyF", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "isOpen": true, + "objc_name": "cancel", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyInProcessReportingOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A27InProcessReportingOperationC8dispatch6resultys6ResultOyq0_q1_G_tF", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC8dispatch6resultys6ResultOyq0_q1_G_tF", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "declAttributes": [ + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(categoryType:eventName:request:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperation", + "printedName": "Amplify.AmplifyInProcessReportingOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A27InProcessReportingOperationC" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOperation.ResultListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyOperation.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A27InProcessReportingOperationC12categoryType9eventName7request14resultListenerACyxq_q0_q1_GAA08CategoryG0O_SSxys6ResultOyq0_q1_GcSgtcfc", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC12categoryType9eventName7request14resultListenerACyxq_q0_q1_GAA08CategoryG0O_SSxys6ResultOyq0_q1_GcSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "InProcessListener", + "printedName": "InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A27InProcessReportingOperationC0bC8Listenera", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC0bC8Listenera", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true + }, + { + "kind": "Function", + "name": "dispatchInProcess", + "printedName": "dispatchInProcess(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A27InProcessReportingOperationC08dispatchbC04datayq__tF", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC08dispatchbC04datayq__tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeInProcessResultListener", + "printedName": "removeInProcessResultListener()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A27InProcessReportingOperationC06removebC14ResultListeneryyF", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC06removebC14ResultListeneryyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "inProcessPublisher", + "printedName": "inProcessPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A27InProcessReportingOperationC02inC9Publisher7Combine03AnyG0Vyq_s5NeverOGvp", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC02inC9Publisher7Combine03AnyG0Vyq_s5NeverOGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A27InProcessReportingOperationC02inC9Publisher7Combine03AnyG0Vyq_s5NeverOGvg", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC02inC9Publisher7Combine03AnyG0Vyq_s5NeverOGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A27InProcessReportingOperationC", + "mangledName": "$s7Amplify0A27InProcessReportingOperationC", + "moduleName": "Amplify", + "genericSig": "", + "isOpen": true, + "superclassUsr": "s:7Amplify0A9OperationC", + "superclassNames": [ + "Amplify.AmplifyOperation<τ_0_0, τ_0_2, τ_0_3>", + "Amplify.AsynchronousOperation", + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "HubPayloadEventNameable", + "printedName": "HubPayloadEventNameable", + "usr": "s:7Amplify23HubPayloadEventNameableP", + "mangledName": "$s7Amplify23HubPayloadEventNameableP" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyOperation", + "printedName": "AmplifyOperation", + "children": [ + { + "kind": "TypeAlias", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A9OperationC7Requesta", + "mangledName": "$s7Amplify0A9OperationC7Requesta", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "Success", + "printedName": "Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A9OperationC7Successa", + "mangledName": "$s7Amplify0A9OperationC7Successa", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "Failure", + "printedName": "Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A9OperationC7Failurea", + "mangledName": "$s7Amplify0A9OperationC7Failurea", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "OperationResult", + "printedName": "OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A9OperationC0B6Resulta", + "mangledName": "$s7Amplify0A9OperationC0B6Resulta", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "ResultListener", + "printedName": "ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A9OperationC14ResultListenera", + "mangledName": "$s7Amplify0A9OperationC14ResultListenera", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A9OperationC2id10Foundation4UUIDVvp", + "mangledName": "$s7Amplify0A9OperationC2id10Foundation4UUIDVvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A9OperationC2id10Foundation4UUIDVvg", + "mangledName": "$s7Amplify0A9OperationC2id10Foundation4UUIDVvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A9OperationC7requestxvp", + "mangledName": "$s7Amplify0A9OperationC7requestxvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A9OperationC7requestxvg", + "mangledName": "$s7Amplify0A9OperationC7requestxvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A9OperationC12categoryTypeAA08CategoryD0Ovp", + "mangledName": "$s7Amplify0A9OperationC12categoryTypeAA08CategoryD0Ovp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A9OperationC12categoryTypeAA08CategoryD0Ovg", + "mangledName": "$s7Amplify0A9OperationC12categoryTypeAA08CategoryD0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A9OperationC9eventNameSSvp", + "mangledName": "$s7Amplify0A9OperationC9eventNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A9OperationC9eventNameSSvg", + "mangledName": "$s7Amplify0A9OperationC9eventNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(categoryType:eventName:request:resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperation", + "printedName": "Amplify.AmplifyOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A9OperationC" + }, + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyOperation.ResultListener?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Amplify.AmplifyOperation.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.AmplifyOperation.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.AmplifyOperation.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A9OperationC12categoryType9eventName7request14resultListenerACyxq_q0_GAA08CategoryD0O_SSxys6ResultOyq_q0_GcSgtcfc", + "mangledName": "$s7Amplify0A9OperationC12categoryType9eventName7request14resultListenerACyxq_q0_GAA08CategoryD0O_SSxys6ResultOyq_q0_GcSgtcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A9OperationC6cancelyyF", + "mangledName": "$s7Amplify0A9OperationC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "isOpen": true, + "objc_name": "cancel", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Amplify.AmplifyOperation.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A9OperationC8dispatch6resultys6ResultOyq_q0_G_tF", + "mangledName": "$s7Amplify0A9OperationC8dispatch6resultys6ResultOyq_q0_G_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeResultListener", + "printedName": "removeResultListener()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A9OperationC20removeResultListeneryyF", + "mangledName": "$s7Amplify0A9OperationC20removeResultListeneryyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperation", + "printedName": "Amplify.AmplifyOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A9OperationC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A9OperationCACyxq_q0_Gycfc", + "mangledName": "$s7Amplify0A9OperationCACyxq_q0_Gycfc", + "moduleName": "Amplify", + "genericSig": "", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "resultPublisher", + "printedName": "resultPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A9OperationC15resultPublisher7Combine03AnyD0Vyq_q0_Gvp", + "mangledName": "$s7Amplify0A9OperationC15resultPublisher7Combine03AnyD0Vyq_q0_Gvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A9OperationC15resultPublisher7Combine03AnyD0Vyq_q0_Gvg", + "mangledName": "$s7Amplify0A9OperationC15resultPublisher7Combine03AnyD0Vyq_q0_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A9OperationC", + "mangledName": "$s7Amplify0A9OperationC", + "moduleName": "Amplify", + "genericSig": "", + "isOpen": true, + "superclassUsr": "c:@M@Amplify@objc(cs)AsynchronousOperation", + "superclassNames": [ + "Amplify.AsynchronousOperation", + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "HubPayloadEventNameable", + "printedName": "HubPayloadEventNameable", + "usr": "s:7Amplify23HubPayloadEventNameableP", + "mangledName": "$s7Amplify23HubPayloadEventNameableP" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyOperationRequest", + "printedName": "AmplifyOperationRequest", + "children": [ + { + "kind": "AssociatedType", + "name": "Options", + "printedName": "Options", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A16OperationRequestP7OptionsQa", + "mangledName": "$s7Amplify0A16OperationRequestP7OptionsQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Options" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A16OperationRequestP7options7OptionsQzvp", + "mangledName": "$s7Amplify0A16OperationRequestP7options7OptionsQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Options" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A16OperationRequestP7options7OptionsQzvg", + "mangledName": "$s7Amplify0A16OperationRequestP7options7OptionsQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A16OperationRequestP", + "mangledName": "$s7Amplify0A16OperationRequestP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AmplifyOperationContext", + "printedName": "AmplifyOperationContext", + "children": [ + { + "kind": "Var", + "name": "operationId", + "printedName": "operationId", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A16OperationContextV11operationId10Foundation4UUIDVvp", + "mangledName": "$s7Amplify0A16OperationContextV11operationId10Foundation4UUIDVvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A16OperationContextV11operationId10Foundation4UUIDVvg", + "mangledName": "$s7Amplify0A16OperationContextV11operationId10Foundation4UUIDVvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A16OperationContextV7requestxvp", + "mangledName": "$s7Amplify0A16OperationContextV7requestxvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A16OperationContextV7requestxvg", + "mangledName": "$s7Amplify0A16OperationContextV7requestxvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify0A16OperationContextV", + "mangledName": "$s7Amplify0A16OperationContextV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AmplifyOperationTaskAdapter", + "printedName": "AmplifyOperationTaskAdapter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyOperationTaskAdapter", + "printedName": "Amplify.AmplifyOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A20OperationTaskAdapterC" + }, + { + "kind": "TypeNominal", + "name": "AmplifyOperation", + "printedName": "Amplify.AmplifyOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A9OperationC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A20OperationTaskAdapterC9operationACyxq_q0_GAA0aB0Cyxq_q0_G_tcfc", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC9operationACyxq_q0_GAA0aB0Cyxq_q0_G_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A20OperationTaskAdapterC5valueq_vp", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC5valueq_vp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A20OperationTaskAdapterC5valueq_vg", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC5valueq_vg", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A20OperationTaskAdapterC5pauseyyF", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC5pauseyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A20OperationTaskAdapterC6resumeyyF", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC6resumeyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A20OperationTaskAdapterC6cancelyyF", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "resultPublisher", + "printedName": "resultPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A20OperationTaskAdapterC15resultPublisher7Combine03AnyF0Vyq_q0_Gvp", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC15resultPublisher7Combine03AnyF0Vyq_q0_Gvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A20OperationTaskAdapterC15resultPublisher7Combine03AnyF0Vyq_q0_Gvg", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC15resultPublisher7Combine03AnyF0Vyq_q0_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "Failure", + "printedName": "Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A20OperationTaskAdapterC7Failurea", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC7Failurea", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A20OperationTaskAdapterC7Requesta", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC7Requesta", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Success", + "printedName": "Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A20OperationTaskAdapterC7Successa", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC7Successa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "Var", + "name": "requestID", + "printedName": "requestID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A20OperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvp", + "mangledName": "$s7Amplify0A20OperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A20OperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvg", + "mangledName": "$s7Amplify0A20OperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A20OperationTaskAdapterC", + "mangledName": "$s7Amplify0A20OperationTaskAdapterC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyTask", + "printedName": "AmplifyTask", + "children": [ + { + "kind": "TypeWitness", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Success", + "printedName": "Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Failure", + "printedName": "Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ] + } + ], + "usr": "s:7Amplify0A4TaskP", + "mangledName": "$s7Amplify0A4TaskP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperationTaskAdapter", + "printedName": "Amplify.AmplifyInProcessReportingOperationTaskAdapter", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC" + }, + { + "kind": "TypeNominal", + "name": "AmplifyInProcessReportingOperation", + "printedName": "Amplify.AmplifyInProcessReportingOperation", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Amplify0A27InProcessReportingOperationC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC9operationACyxq_q0_q1_GAA0abcdE0Cyxq_q0_q1_G_tcfc", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC9operationACyxq_q0_q1_GAA0abcdE0Cyxq_q0_q1_G_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC5valueq0_vp", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC5valueq0_vp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC5valueq0_vg", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC5valueq0_vg", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inProcess", + "printedName": "inProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC02inC0AA0A13AsyncSequenceCyq_Gvp", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC02inC0AA0A13AsyncSequenceCyq_Gvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC02inC0AA0A13AsyncSequenceCyq_Gvg", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC02inC0AA0A13AsyncSequenceCyq_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC5pauseyyF", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC5pauseyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC6resumeyyF", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC6resumeyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC6cancelyyF", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "resultPublisher", + "printedName": "resultPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC15resultPublisher7Combine03AnyI0Vyq0_q1_Gvp", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC15resultPublisher7Combine03AnyI0Vyq0_q1_Gvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC15resultPublisher7Combine03AnyI0Vyq0_q1_Gvg", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC15resultPublisher7Combine03AnyI0Vyq0_q1_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inProcessPublisher", + "printedName": "inProcessPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC02inC9Publisher7Combine03AnyI0Vyq_s5NeverOGvp", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC02inC9Publisher7Combine03AnyI0Vyq_s5NeverOGvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC02inC9Publisher7Combine03AnyI0Vyq_s5NeverOGvg", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC02inC9Publisher7Combine03AnyI0Vyq_s5NeverOGvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeAlias", + "name": "Failure", + "printedName": "Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC7Failurea", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC7Failurea", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "InProcess", + "printedName": "InProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC0bC0a", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC0bC0a", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC7Requesta", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC7Requesta", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "TypeAlias", + "name": "Success", + "printedName": "Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC7Successa", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC7Successa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true + }, + { + "kind": "Var", + "name": "requestID", + "printedName": "requestID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvp", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvg", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterCA2A17RequestIdentifierRzrlE9requestIDSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify0A38InProcessReportingOperationTaskAdapterC", + "mangledName": "$s7Amplify0A38InProcessReportingOperationTaskAdapterC", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "AmplifyTask", + "printedName": "AmplifyTask", + "children": [ + { + "kind": "TypeWitness", + "name": "Request", + "printedName": "Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Request" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Success", + "printedName": "Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Failure", + "printedName": "Failure", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ] + } + ], + "usr": "s:7Amplify0A4TaskP", + "mangledName": "$s7Amplify0A4TaskP" + }, + { + "kind": "Conformance", + "name": "AmplifyInProcessReportingTask", + "printedName": "AmplifyInProcessReportingTask", + "children": [ + { + "kind": "TypeWitness", + "name": "InProcess", + "printedName": "InProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ] + } + ], + "usr": "s:7Amplify0A22InProcessReportingTaskP", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyTask", + "printedName": "AmplifyTask", + "children": [ + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A4TaskP7RequestQa", + "mangledName": "$s7Amplify0A4TaskP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Success", + "printedName": "Success", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A4TaskP7SuccessQa", + "mangledName": "$s7Amplify0A4TaskP7SuccessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Failure", + "printedName": "Failure", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A4TaskP7FailureQa", + "mangledName": "$s7Amplify0A4TaskP7FailureQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A4TaskP5value7SuccessQzvp", + "mangledName": "$s7Amplify0A4TaskP5value7SuccessQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A4TaskP5value7SuccessQzvg", + "mangledName": "$s7Amplify0A4TaskP5value7SuccessQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A4TaskP5pauseyyF", + "mangledName": "$s7Amplify0A4TaskP5pauseyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A4TaskP6resumeyyF", + "mangledName": "$s7Amplify0A4TaskP6resumeyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A4TaskP6cancelyyF", + "mangledName": "$s7Amplify0A4TaskP6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "resultPublisher", + "printedName": "resultPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A4TaskP15resultPublisher7Combine03AnyD0Vy7SuccessQz7FailureQzGvp", + "mangledName": "$s7Amplify0A4TaskP15resultPublisher7Combine03AnyD0Vy7SuccessQz7FailureQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A4TaskP15resultPublisher7Combine03AnyD0Vy7SuccessQz7FailureQzGvg", + "mangledName": "$s7Amplify0A4TaskP15resultPublisher7Combine03AnyD0Vy7SuccessQz7FailureQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A4TaskP", + "mangledName": "$s7Amplify0A4TaskP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AmplifyInProcessReportingTask", + "printedName": "AmplifyInProcessReportingTask", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A22InProcessReportingTaskP0bC0Qa", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP0bC0Qa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "inProcess", + "printedName": "inProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A22InProcessReportingTaskP02inC0AA0A13AsyncSequenceCy0bC0QzGvp", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP02inC0AA0A13AsyncSequenceCy0bC0QzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A22InProcessReportingTaskP02inC0AA0A13AsyncSequenceCy0bC0QzGvg", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP02inC0AA0A13AsyncSequenceCy0bC0QzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "inProcessPublisher", + "printedName": "inProcessPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A22InProcessReportingTaskP02inC9Publisher7Combine03AnyG0Vy0bC0Qzs5NeverOGvp", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP02inC9Publisher7Combine03AnyG0Vy0bC0Qzs5NeverOGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyPublisher", + "printedName": "Combine.AnyPublisher", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + }, + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ], + "usr": "s:7Combine12AnyPublisherV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A22InProcessReportingTaskP02inC9Publisher7Combine03AnyG0Vy0bC0Qzs5NeverOGvg", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP02inC9Publisher7Combine03AnyG0Vy0bC0Qzs5NeverOGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A22InProcessReportingTaskPAASo10NSProgressC0bC0RtzrlE8progressAA0A13AsyncSequenceCyAEGvp", + "mangledName": "$s7Amplify0A22InProcessReportingTaskPAASo10NSProgressC0bC0RtzrlE8progressAA0A13AsyncSequenceCyAEGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Progress", + "printedName": "Foundation.Progress", + "usr": "c:objc(cs)NSProgress" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A22InProcessReportingTaskPAASo10NSProgressC0bC0RtzrlE8progressAA0A13AsyncSequenceCyAEGvg", + "mangledName": "$s7Amplify0A22InProcessReportingTaskPAASo10NSProgressC0bC0RtzrlE8progressAA0A13AsyncSequenceCyAEGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A22InProcessReportingTaskP", + "mangledName": "$s7Amplify0A22InProcessReportingTaskP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AmplifyTaskExecution", + "printedName": "AmplifyTaskExecution", + "children": [ + { + "kind": "AssociatedType", + "name": "Success", + "printedName": "Success", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A13TaskExecutionP7SuccessQa", + "mangledName": "$s7Amplify0A13TaskExecutionP7SuccessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A13TaskExecutionP7RequestQa", + "mangledName": "$s7Amplify0A13TaskExecutionP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Failure", + "printedName": "Failure", + "declKind": "AssociatedType", + "usr": "s:7Amplify0A13TaskExecutionP7FailureQa", + "mangledName": "$s7Amplify0A13TaskExecutionP7FailureQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "TypeAlias", + "name": "AmplifyTaskExecutionResult", + "printedName": "AmplifyTaskExecutionResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A13TaskExecutionP0abC6Resulta", + "mangledName": "$s7Amplify0A13TaskExecutionP0abC6Resulta", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A13TaskExecutionP5value7SuccessQzvp", + "mangledName": "$s7Amplify0A13TaskExecutionP5value7SuccessQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A13TaskExecutionP5value7SuccessQzvg", + "mangledName": "$s7Amplify0A13TaskExecutionP5value7SuccessQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A13TaskExecutionP9eventNameSSvp", + "mangledName": "$s7Amplify0A13TaskExecutionP9eventNameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A13TaskExecutionP9eventNameSSvg", + "mangledName": "$s7Amplify0A13TaskExecutionP9eventNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventNameCategoryType", + "printedName": "eventNameCategoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A13TaskExecutionP21eventNameCategoryTypeAA0fG0Ovp", + "mangledName": "$s7Amplify0A13TaskExecutionP21eventNameCategoryTypeAA0fG0Ovp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A13TaskExecutionP21eventNameCategoryTypeAA0fG0Ovg", + "mangledName": "$s7Amplify0A13TaskExecutionP21eventNameCategoryTypeAA0fG0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13TaskExecutionP7execute7SuccessQzyYaKF", + "mangledName": "$s7Amplify0A13TaskExecutionP7execute7SuccessQzyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "AmplifyTaskExecutionResult", + "printedName": "Self.AmplifyTaskExecutionResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13TaskExecutionP8dispatch6resultys6ResultOy7SuccessQz7FailureQzG_tF", + "mangledName": "$s7Amplify0A13TaskExecutionP8dispatch6resultys6ResultOy7SuccessQz7FailureQzG_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE5value7SuccessACQzvp", + "mangledName": "$s7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE5value7SuccessACQzvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE5value7SuccessACQzvg", + "mangledName": "$s7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE5value7SuccessACQzvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "AmplifyTaskExecutionResult", + "printedName": "Self.AmplifyTaskExecutionResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE8dispatch6resultys6ResultOy7SuccessACQz7FailureACQzG_tF", + "mangledName": "$s7Amplify0A13TaskExecutionPA2A13DefaultLoggerRzrlE8dispatch6resultys6ResultOy7SuccessACQz7FailureACQzG_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A13TaskExecutionP", + "mangledName": "$s7Amplify0A13TaskExecutionP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AsynchronousOperation", + "printedName": "AsynchronousOperation", + "children": [ + { + "kind": "Var", + "name": "isReady", + "printedName": "isReady", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(py)ready", + "mangledName": "$s7Amplify21AsynchronousOperationC7isReadySbvp", + "moduleName": "Amplify", + "overriding": true, + "isOpen": true, + "objc_name": "ready", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)isReady", + "mangledName": "$s7Amplify21AsynchronousOperationC7isReadySbvg", + "moduleName": "Amplify", + "overriding": true, + "isOpen": true, + "objc_name": "isReady", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isExecuting", + "printedName": "isExecuting", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(py)executing", + "mangledName": "$s7Amplify21AsynchronousOperationC11isExecutingSbvp", + "moduleName": "Amplify", + "overriding": true, + "objc_name": "executing", + "declAttributes": [ + "ObjC", + "Final", + "Override" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)isExecuting", + "mangledName": "$s7Amplify21AsynchronousOperationC11isExecutingSbvg", + "moduleName": "Amplify", + "overriding": true, + "objc_name": "isExecuting", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isFinished", + "printedName": "isFinished", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(py)finished", + "mangledName": "$s7Amplify21AsynchronousOperationC10isFinishedSbvp", + "moduleName": "Amplify", + "overriding": true, + "objc_name": "finished", + "declAttributes": [ + "ObjC", + "Final", + "Override" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)isFinished", + "mangledName": "$s7Amplify21AsynchronousOperationC10isFinishedSbvg", + "moduleName": "Amplify", + "overriding": true, + "objc_name": "isFinished", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "keyPathsForValuesAffectingValue", + "printedName": "keyPathsForValuesAffectingValue(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(cm)keyPathsForValuesAffectingValueForKey:", + "mangledName": "$s7Amplify21AsynchronousOperationC31keyPathsForValuesAffectingValue6forKeyShySSGSS_tFZ", + "moduleName": "Amplify", + "static": true, + "overriding": true, + "isOpen": true, + "objc_name": "keyPathsForValuesAffectingValueForKey:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)start", + "mangledName": "$s7Amplify21AsynchronousOperationC5startyyF", + "moduleName": "Amplify", + "overriding": true, + "objc_name": "start", + "declAttributes": [ + "ObjC", + "Final", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "main", + "printedName": "main()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)main", + "mangledName": "$s7Amplify21AsynchronousOperationC4mainyyF", + "moduleName": "Amplify", + "overriding": true, + "isOpen": true, + "objc_name": "main", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21AsynchronousOperationC5pauseyyF", + "mangledName": "$s7Amplify21AsynchronousOperationC5pauseyyF", + "moduleName": "Amplify", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21AsynchronousOperationC6resumeyyF", + "mangledName": "$s7Amplify21AsynchronousOperationC6resumeyyF", + "moduleName": "Amplify", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21AsynchronousOperationC6finishyyF", + "mangledName": "$s7Amplify21AsynchronousOperationC6finishyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AsynchronousOperation", + "printedName": "Amplify.AsynchronousOperation", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation(im)init", + "mangledName": "$s7Amplify21AsynchronousOperationCACycfc", + "moduleName": "Amplify", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@Amplify@objc(cs)AsynchronousOperation", + "mangledName": "$s7Amplify21AsynchronousOperationC", + "moduleName": "Amplify", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSOperation", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "Foundation.Operation", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AtomicDictionary", + "printedName": "AtomicDictionary", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(initialValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AtomicDictionary", + "printedName": "Amplify.AtomicDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:7Amplify16AtomicDictionaryC" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Key : Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16AtomicDictionaryC12initialValueACyxq_GSDyxq_G_tcfc", + "mangledName": "$s7Amplify16AtomicDictionaryC12initialValueACyxq_GSDyxq_G_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "count", + "printedName": "count", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AtomicDictionaryC5countSivp", + "mangledName": "$s7Amplify16AtomicDictionaryC5countSivp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AtomicDictionaryC5countSivg", + "mangledName": "$s7Amplify16AtomicDictionaryC5countSivg", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Key]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AtomicDictionaryC4keysSayxGvp", + "mangledName": "$s7Amplify16AtomicDictionaryC4keysSayxGvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Key]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AtomicDictionaryC4keysSayxGvg", + "mangledName": "$s7Amplify16AtomicDictionaryC4keysSayxGvg", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify16AtomicDictionaryC6valuesSayq_Gvp", + "mangledName": "$s7Amplify16AtomicDictionaryC6valuesSayq_Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Value]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AtomicDictionaryC6valuesSayq_Gvg", + "mangledName": "$s7Amplify16AtomicDictionaryC6valuesSayq_Gvg", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getValue", + "printedName": "getValue(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AtomicDictionaryC8getValue6forKeyq_Sgx_tF", + "mangledName": "$s7Amplify16AtomicDictionaryC8getValue6forKeyq_Sgx_tF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeAll", + "printedName": "removeAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AtomicDictionaryC9removeAllyyF", + "mangledName": "$s7Amplify16AtomicDictionaryC9removeAllyyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(value:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AtomicDictionaryC3set5value6forKeyyq__xtF", + "mangledName": "$s7Amplify16AtomicDictionaryC3set5value6forKeyyq__xtF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify16AtomicDictionaryCyq_Sgxcip", + "mangledName": "$s7Amplify16AtomicDictionaryCyq_Sgxcip", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AtomicDictionaryCyq_Sgxcig", + "mangledName": "$s7Amplify16AtomicDictionaryCyq_Sgxcig", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Value?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify16AtomicDictionaryCyq_Sgxcis", + "mangledName": "$s7Amplify16AtomicDictionaryCyq_Sgxcis", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AtomicDictionary", + "printedName": "Amplify.AtomicDictionary", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:7Amplify16AtomicDictionaryC" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "(Key, Value)...", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Key, Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify16AtomicDictionaryC17dictionaryLiteralACyxq_Gx_q_td_tcfc", + "mangledName": "$s7Amplify16AtomicDictionaryC17dictionaryLiteralACyxq_Gx_q_td_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "TypeAlias", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16AtomicDictionaryC3Keya", + "mangledName": "$s7Amplify16AtomicDictionaryC3Keya", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16AtomicDictionaryC5Valuea", + "mangledName": "$s7Amplify16AtomicDictionaryC5Valuea", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Function", + "name": "makeIterator", + "printedName": "makeIterator()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DictionaryIterator", + "printedName": "Swift.DictionaryIterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify16AtomicDictionaryC12makeIteratorSD0E0Vyxq__GyF", + "mangledName": "$s7Amplify16AtomicDictionaryC12makeIteratorSD0E0Vyxq__GyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeAlias", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Dictionary.Iterator.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: Key, value: Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16AtomicDictionaryC7Elementa", + "mangledName": "$s7Amplify16AtomicDictionaryC7Elementa", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DictionaryIterator", + "printedName": "Swift.DictionaryIterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify16AtomicDictionaryC8Iteratora", + "mangledName": "$s7Amplify16AtomicDictionaryC8Iteratora", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:7Amplify16AtomicDictionaryC", + "mangledName": "$s7Amplify16AtomicDictionaryC", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Dictionary.Iterator.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(key: Key, value: Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Key" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DictionaryIterator", + "printedName": "Swift.DictionaryIterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.Dictionary.Iterator", + "usr": "s:SD8IteratorV" + } + ] + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AtomicValue", + "printedName": "AtomicValue", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(initialValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AtomicValue", + "printedName": "Amplify.AtomicValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "usr": "s:7Amplify11AtomicValueC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify11AtomicValueC07initialC0ACyxGx_tcfc", + "mangledName": "$s7Amplify11AtomicValueC07initialC0ACyxGx_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "get", + "printedName": "get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueC3getxyF", + "mangledName": "$s7Amplify11AtomicValueC3getxyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueC3setyyxF", + "mangledName": "$s7Amplify11AtomicValueC3setyyxF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAndSet", + "printedName": "getAndSet(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueC9getAndSetyxxF", + "mangledName": "$s7Amplify11AtomicValueC9getAndSetyxxF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "atomicallyPerform", + "printedName": "atomicallyPerform(block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Value) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueC17atomicallyPerform5blockyyxXE_tF", + "mangledName": "$s7Amplify11AtomicValueC17atomicallyPerform5blockyyxXE_tF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "with", + "printedName": "with(block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(inout Value) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Value)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ] + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueC4with5blockyyxzXE_tF", + "mangledName": "$s7Amplify11AtomicValueC4with5blockyyxzXE_tF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAndToggle", + "printedName": "getAndToggle()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASbRszlE12getAndToggleSbyF", + "mangledName": "$s7Amplify11AtomicValueCAASbRszlE12getAndToggleSbyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "increment", + "printedName": "increment(by:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value", + "hasDefaultArg": true + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASjRzlE9increment2byxx_tF", + "mangledName": "$s7Amplify11AtomicValueCAASjRzlE9increment2byxx_tF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decrement", + "printedName": "decrement(by:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Value", + "hasDefaultArg": true + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASjRzlE9decrement2byxx_tF", + "mangledName": "$s7Amplify11AtomicValueCAASjRzlE9decrement2byxx_tF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Element" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASmRzlE6appendyy7ElementQzF", + "mangledName": "$s7Amplify11AtomicValueCAASmRzlE6appendyy7ElementQzF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "S" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASmRzlE6append10contentsOfyqd___tSTRd__7ElementQyd__AFRtzlF", + "mangledName": "$s7Amplify11AtomicValueCAASmRzlE6append10contentsOfyqd___tSTRd__7ElementQyd__AFRtzlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeFirst", + "printedName": "removeFirst()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Element" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11AtomicValueCAASmRzlE11removeFirst7ElementQzyF", + "mangledName": "$s7Amplify11AtomicValueCAASmRzlE11removeFirst7ElementQzyF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Element" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Index" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify11AtomicValueCAASmRzlEy7ElementQz5IndexQzcip", + "mangledName": "$s7Amplify11AtomicValueCAASmRzlEy7ElementQz5IndexQzcip", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Element" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Value.Index" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify11AtomicValueCAASmRzlEy7ElementQz5IndexQzcig", + "mangledName": "$s7Amplify11AtomicValueCAASmRzlEy7ElementQz5IndexQzcig", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify11AtomicValueC", + "mangledName": "$s7Amplify11AtomicValueC", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeAlias", + "name": "BasicClosure", + "printedName": "BasicClosure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify12BasicClosurea", + "mangledName": "$s7Amplify12BasicClosurea", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "BasicThrowableClosure", + "printedName": "BasicThrowableClosure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21BasicThrowableClosurea", + "mangledName": "$s7Amplify21BasicThrowableClosurea", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "BufferingSequence", + "printedName": "BufferingSequence", + "children": [ + { + "kind": "AssociatedType", + "name": "Element", + "printedName": "Element", + "declKind": "AssociatedType", + "usr": "s:7Amplify17BufferingSequenceP7ElementQa", + "mangledName": "$s7Amplify17BufferingSequenceP7ElementQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "bufferingPolicy", + "printedName": "bufferingPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17BufferingSequenceP15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvp", + "mangledName": "$s7Amplify17BufferingSequenceP15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17BufferingSequenceP15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvg", + "mangledName": "$s7Amplify17BufferingSequenceP15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bufferingPolicy", + "printedName": "bufferingPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17BufferingSequencePAAE15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvp", + "mangledName": "$s7Amplify17BufferingSequencePAAE15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17BufferingSequencePAAE15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvg", + "mangledName": "$s7Amplify17BufferingSequencePAAE15bufferingPolicyScS12ContinuationV0bE0Oy7ElementQz__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bufferingPolicy", + "printedName": "bufferingPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17BufferingSequencePAASo10NSProgressC7ElementRtzrlE15bufferingPolicyScS12ContinuationV0bG0OyAE__Gvp", + "mangledName": "$s7Amplify17BufferingSequencePAASo10NSProgressC7ElementRtzrlE15bufferingPolicyScS12ContinuationV0bG0OyAE__Gvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17BufferingSequencePAASo10NSProgressC7ElementRtzrlE15bufferingPolicyScS12ContinuationV0bG0OyAE__Gvg", + "mangledName": "$s7Amplify17BufferingSequencePAASo10NSProgressC7ElementRtzrlE15bufferingPolicyScS12ContinuationV0bG0OyAE__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17BufferingSequenceP", + "mangledName": "$s7Amplify17BufferingSequenceP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Cancellable", + "printedName": "Cancellable", + "children": [ + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify11CancellableP6cancelyyF", + "mangledName": "$s7Amplify11CancellableP6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeAlias", + "name": "AmplifyCancellable", + "printedName": "AmplifyCancellable", + "children": [ + { + "kind": "TypeNominal", + "name": "Cancellable", + "printedName": "Amplify.Cancellable", + "usr": "s:7Amplify11CancellableP" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify0A11Cancellablea", + "mangledName": "$s7Amplify0A11Cancellablea", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "DeviceInfo", + "printedName": "DeviceInfo", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceInfo", + "printedName": "Amplify.DeviceInfo", + "usr": "s:7Amplify10DeviceInfoV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV7currentACvpZ", + "mangledName": "$s7Amplify10DeviceInfoV7currentACvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceInfo", + "printedName": "Amplify.DeviceInfo", + "usr": "s:7Amplify10DeviceInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV7currentACvgZ", + "mangledName": "$s7Amplify10DeviceInfoV7currentACvgZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceInfo", + "printedName": "Amplify.DeviceInfo", + "usr": "s:7Amplify10DeviceInfoV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV7currentACvsZ", + "mangledName": "$s7Amplify10DeviceInfoV7currentACvsZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV4nameSSvp", + "mangledName": "$s7Amplify10DeviceInfoV4nameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV4nameSSvg", + "mangledName": "$s7Amplify10DeviceInfoV4nameSSvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hostName", + "printedName": "hostName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV8hostNameSSvp", + "mangledName": "$s7Amplify10DeviceInfoV8hostNameSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV8hostNameSSvg", + "mangledName": "$s7Amplify10DeviceInfoV8hostNameSSvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "architecture", + "printedName": "architecture", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV12architectureSSvp", + "mangledName": "$s7Amplify10DeviceInfoV12architectureSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV12architectureSSvg", + "mangledName": "$s7Amplify10DeviceInfoV12architectureSSvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV5modelSSvp", + "mangledName": "$s7Amplify10DeviceInfoV5modelSSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV5modelSSvg", + "mangledName": "$s7Amplify10DeviceInfoV5modelSSvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystem", + "printedName": "operatingSystem", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, version: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV15operatingSystemSS4name_SS7versiontvp", + "mangledName": "$s7Amplify10DeviceInfoV15operatingSystemSS4name_SS7versiontvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(name: Swift.String, version: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV15operatingSystemSS4name_SS7versiontvg", + "mangledName": "$s7Amplify10DeviceInfoV15operatingSystemSS4name_SS7versiontvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "identifierForVendor", + "printedName": "identifierForVendor", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.UUID?", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV19identifierForVendor10Foundation4UUIDVSgvp", + "mangledName": "$s7Amplify10DeviceInfoV19identifierForVendor10Foundation4UUIDVSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.UUID?", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV19identifierForVendor10Foundation4UUIDVSgvg", + "mangledName": "$s7Amplify10DeviceInfoV19identifierForVendor10Foundation4UUIDVSgvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "screenBounds", + "printedName": "screenBounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "s:7Amplify10DeviceInfoV12screenBoundsSo6CGRectVvp", + "mangledName": "$s7Amplify10DeviceInfoV12screenBoundsSo6CGRectVvp", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify10DeviceInfoV12screenBoundsSo6CGRectVvg", + "mangledName": "$s7Amplify10DeviceInfoV12screenBoundsSo6CGRectVvg", + "moduleName": "Amplify", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:7Amplify10DeviceInfoV", + "mangledName": "$s7Amplify10DeviceInfoV", + "moduleName": "Amplify", + "declAttributes": [ + "Custom" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AnyEncodable", + "printedName": "AnyEncodable", + "children": [ + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AnyEncodableV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify12AnyEncodableV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify12AnyEncodableV", + "mangledName": "$s7Amplify12AnyEncodableV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Fatal", + "printedName": "Fatal", + "children": [ + { + "kind": "Function", + "name": "preconditionFailure", + "printedName": "preconditionFailure(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.String", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ], + "hasDefaultArg": true + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO19preconditionFailure_4file4linexSSyXK_s12StaticStringVSutlFZ", + "mangledName": "$s7Amplify5FatalO19preconditionFailure_4file4linexSSyXK_s12StaticStringVSutlFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "mustOverride", + "printedName": "mustOverride(function:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO12mustOverride8function4file4lines5NeverOs12StaticStringV_AKSutFZ", + "mangledName": "$s7Amplify5FatalO12mustOverride8function4file4lines5NeverOs12StaticStringV_AKSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unreachable", + "printedName": "unreachable(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO11unreachable_4file4lines5NeverOSS_s12StaticStringVSutFZ", + "mangledName": "$s7Amplify5FatalO11unreachable_4file4lines5NeverOSS_s12StaticStringVSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notImplemented", + "printedName": "notImplemented(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO14notImplemented_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "mangledName": "$s7Amplify5FatalO14notImplemented_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "require", + "printedName": "require(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO7require_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "mangledName": "$s7Amplify5FatalO7require_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "TODO", + "printedName": "TODO(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO4TODO_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "mangledName": "$s7Amplify5FatalO4TODO_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:file:line:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "StaticString", + "printedName": "Swift.StaticString", + "hasDefaultArg": true, + "usr": "s:s12StaticStringV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "hasDefaultArg": true, + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "s:7Amplify5FatalO5error_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "mangledName": "$s7Amplify5FatalO5error_4file4lines5NeverOSSSg_s12StaticStringVSutFZ", + "moduleName": "Amplify", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:7Amplify5FatalO", + "mangledName": "$s7Amplify5FatalO", + "moduleName": "Amplify", + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "InternalTaskResult", + "printedName": "InternalTaskResult", + "children": [ + { + "kind": "AssociatedType", + "name": "Success", + "printedName": "Success", + "declKind": "AssociatedType", + "usr": "s:7Amplify18InternalTaskResultP7SuccessQa", + "mangledName": "$s7Amplify18InternalTaskResultP7SuccessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Failure", + "printedName": "Failure", + "declKind": "AssociatedType", + "usr": "s:7Amplify18InternalTaskResultP7FailureQa", + "mangledName": "$s7Amplify18InternalTaskResultP7FailureQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "TypeAlias", + "name": "TaskResult", + "printedName": "TaskResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify18InternalTaskResultP0cD0a", + "mangledName": "$s7Amplify18InternalTaskResultP0cD0a", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TaskResult", + "printedName": "Self.TaskResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify18InternalTaskResultP6results0D0Oy7SuccessQz7FailureQzGvp", + "mangledName": "$s7Amplify18InternalTaskResultP6results0D0Oy7SuccessQz7FailureQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TaskResult", + "printedName": "Self.TaskResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18InternalTaskResultP6results0D0Oy7SuccessQz7FailureQzGvg", + "mangledName": "$s7Amplify18InternalTaskResultP6results0D0Oy7SuccessQz7FailureQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify18InternalTaskResultP", + "mangledName": "$s7Amplify18InternalTaskResultP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskValue", + "printedName": "InternalTaskValue", + "children": [ + { + "kind": "AssociatedType", + "name": "Success", + "printedName": "Success", + "declKind": "AssociatedType", + "usr": "s:7Amplify17InternalTaskValueP7SuccessQa", + "mangledName": "$s7Amplify17InternalTaskValueP7SuccessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Failure", + "printedName": "Failure", + "declKind": "AssociatedType", + "usr": "s:7Amplify17InternalTaskValueP7FailureQa", + "mangledName": "$s7Amplify17InternalTaskValueP7FailureQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17InternalTaskValueP5value7SuccessQzvp", + "mangledName": "$s7Amplify17InternalTaskValueP5value7SuccessQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17InternalTaskValueP5value7SuccessQzvg", + "mangledName": "$s7Amplify17InternalTaskValueP5value7SuccessQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17InternalTaskValuePA2A0bC6ResultRzrlE5value7SuccessAaDPQzvp", + "mangledName": "$s7Amplify17InternalTaskValuePA2A0bC6ResultRzrlE5value7SuccessAaDPQzvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17InternalTaskValuePA2A0bC6ResultRzrlE5value7SuccessAaDPQzvg", + "mangledName": "$s7Amplify17InternalTaskValuePA2A0bC6ResultRzrlE5value7SuccessAaDPQzvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17InternalTaskValueP", + "mangledName": "$s7Amplify17InternalTaskValueP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskInProcess", + "printedName": "InternalTaskInProcess", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify21InternalTaskInProcessP0dE0Qa", + "mangledName": "$s7Amplify21InternalTaskInProcessP0dE0Qa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "inProcess", + "printedName": "inProcess", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify21InternalTaskInProcessP02inE0AA0A13AsyncSequenceCy0dE0QzGvp", + "mangledName": "$s7Amplify21InternalTaskInProcessP02inE0AA0A13AsyncSequenceCy0dE0QzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify21InternalTaskInProcessP02inE0AA0A13AsyncSequenceCy0dE0QzGvg", + "mangledName": "$s7Amplify21InternalTaskInProcessP02inE0AA0A13AsyncSequenceCy0dE0QzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21InternalTaskInProcessP", + "mangledName": "$s7Amplify21InternalTaskInProcessP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskAsyncSequenceContext", + "printedName": "InternalTaskAsyncSequenceContext", + "children": [ + { + "kind": "Var", + "name": "bufferingPolicy", + "printedName": "bufferingPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyScS12ContinuationV09BufferingH0Oyx__Gvp", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyScS12ContinuationV09BufferingH0Oyx__Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyScS12ContinuationV09BufferingH0Oyx__Gvg", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyScS12ContinuationV09BufferingH0Oyx__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "weakSequenceRef", + "printedName": "weakSequenceRef", + "children": [ + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvp", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvg", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvs", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV04weakE3RefAA04WeakH0CyAA0adE0CyxGGvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "task", + "printedName": "task", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvp", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvg", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvs", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV4taskScTyyts5Error_pGSgvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvp", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvg", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvs", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV8sequenceAA0adE0CyxGSgvs", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bufferingPolicy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncSequenceContext", + "printedName": "Amplify.InternalTaskAsyncSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV" + }, + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncStream.Continuation.BufferingPolicy", + "hasDefaultArg": true, + "usr": "s:ScS12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyACyxGScS12ContinuationV09BufferingH0Oyx__G_tcfc", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV15bufferingPolicyACyxGScS12ContinuationV09BufferingH0Oyx__G_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV", + "mangledName": "$s7Amplify32InternalTaskAsyncSequenceContextV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskAsyncSequence", + "printedName": "InternalTaskAsyncSequence", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP9InProcessQa", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP9InProcessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncSequenceContext", + "printedName": "Amplify.InternalTaskAsyncSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvp", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncSequenceContext", + "printedName": "Amplify.InternalTaskAsyncSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvg", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncSequenceContext", + "printedName": "Amplify.InternalTaskAsyncSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify32InternalTaskAsyncSequenceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvs", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP7contextAA0bcdE7ContextVy9InProcessQzGvs", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP8sequenceAA0adE0Cy9InProcessQzGvp", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP8sequenceAA0adE0Cy9InProcessQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP8sequenceAA0adE0Cy9InProcessQzGvg", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP8sequenceAA0adE0Cy9InProcessQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE8sequenceAA0adE0Cy9InProcessACQzGvp", + "mangledName": "$s7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE8sequenceAA0adE0Cy9InProcessACQzGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncSequence", + "printedName": "Amplify.AmplifyAsyncSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A13AsyncSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE8sequenceAA0adE0Cy9InProcessACQzGvg", + "mangledName": "$s7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE8sequenceAA0adE0Cy9InProcessACQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE6cancelyyF", + "mangledName": "$s7Amplify25InternalTaskAsyncSequencePA2A0bC6RunnerRzrlE6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify25InternalTaskAsyncSequenceP", + "mangledName": "$s7Amplify25InternalTaskAsyncSequenceP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskAsyncThrowingSequenceContext", + "printedName": "InternalTaskAsyncThrowingSequenceContext", + "children": [ + { + "kind": "Var", + "name": "bufferingPolicy", + "printedName": "bufferingPolicy", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncThrowingStream.Continuation.BufferingPolicy", + "usr": "s:Scs12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyScs12ContinuationV09BufferingI0Oyxs5Error_p__Gvp", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyScs12ContinuationV09BufferingI0Oyxs5Error_p__Gvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncThrowingStream.Continuation.BufferingPolicy", + "usr": "s:Scs12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyScs12ContinuationV09BufferingI0Oyxs5Error_p__Gvg", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyScs12ContinuationV09BufferingI0Oyxs5Error_p__Gvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "weakSequenceRef", + "printedName": "weakSequenceRef", + "children": [ + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncThrowingSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncThrowingSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvp", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncThrowingSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncThrowingSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvg", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "WeakAmplifyAsyncThrowingSequenceRef", + "printedName": "Amplify.WeakAmplifyAsyncThrowingSequenceRef", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef>", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:7Amplify7WeakRefC" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvs", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV04weakF3RefAA04WeakI0CyAA0adeF0CyxGGvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "task", + "printedName": "task", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvp", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvg", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "_Concurrency.Task?", + "children": [ + { + "kind": "TypeNominal", + "name": "Task", + "printedName": "_Concurrency.Task", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:ScT" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvs", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV4taskScTyyts5Error_pGSgvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncThrowingSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvp", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvp", + "moduleName": "Amplify", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncThrowingSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvg", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.AmplifyAsyncThrowingSequence?", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvs", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV8sequenceAA0adeF0CyxGSgvs", + "moduleName": "Amplify", + "genericSig": "", + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bufferingPolicy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncThrowingSequenceContext", + "printedName": "Amplify.InternalTaskAsyncThrowingSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "InProcess" + } + ], + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV" + }, + { + "kind": "TypeNominal", + "name": "BufferingPolicy", + "printedName": "_Concurrency.AsyncThrowingStream.Continuation.BufferingPolicy", + "hasDefaultArg": true, + "usr": "s:Scs12ContinuationV15BufferingPolicyO" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyACyxGScs12ContinuationV09BufferingI0Oyxs5Error_p__G_tcfc", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV15bufferingPolicyACyxGScs12ContinuationV09BufferingI0Oyxs5Error_p__G_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV", + "mangledName": "$s7Amplify40InternalTaskAsyncThrowingSequenceContextV", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskAsyncThrowingSequence", + "printedName": "InternalTaskAsyncThrowingSequence", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP9InProcessQa", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP9InProcessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "context", + "printedName": "context", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncThrowingSequenceContext", + "printedName": "Amplify.InternalTaskAsyncThrowingSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvp", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncThrowingSequenceContext", + "printedName": "Amplify.InternalTaskAsyncThrowingSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvg", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalTaskAsyncThrowingSequenceContext", + "printedName": "Amplify.InternalTaskAsyncThrowingSequenceContext", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify40InternalTaskAsyncThrowingSequenceContextV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvs", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP7contextAA0bcdeF7ContextVy9InProcessQzGvs", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP8sequenceAA0adeF0Cy9InProcessQzGvp", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP8sequenceAA0adeF0Cy9InProcessQzGvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP8sequenceAA0adeF0Cy9InProcessQzGvg", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP8sequenceAA0adeF0Cy9InProcessQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sequence", + "printedName": "sequence", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "declKind": "Var", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE8sequenceAA0adeF0Cy9InProcessACQzGvp", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE8sequenceAA0adeF0Cy9InProcessACQzGvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AmplifyAsyncThrowingSequence", + "printedName": "Amplify.AmplifyAsyncThrowingSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "usr": "s:7Amplify0A21AsyncThrowingSequenceC" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE8sequenceAA0adeF0Cy9InProcessACQzGvg", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE8sequenceAA0adeF0Cy9InProcessACQzGvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE6cancelyyF", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequencePA2A0bC6RunnerRzrlE6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify33InternalTaskAsyncThrowingSequenceP", + "mangledName": "$s7Amplify33InternalTaskAsyncThrowingSequenceP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskChannel", + "printedName": "InternalTaskChannel", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify19InternalTaskChannelP9InProcessQa", + "mangledName": "$s7Amplify19InternalTaskChannelP9InProcessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19InternalTaskChannelP4sendyy9InProcessQzF", + "mangledName": "$s7Amplify19InternalTaskChannelP4sendyy9InProcessQzF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19InternalTaskChannelP6finishyyF", + "mangledName": "$s7Amplify19InternalTaskChannelP6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19InternalTaskChannelPA2A0bC13AsyncSequenceRzAA0bC6RunnerRzrlE4sendyy9InProcessAaDPQzF", + "mangledName": "$s7Amplify19InternalTaskChannelPA2A0bC13AsyncSequenceRzAA0bC6RunnerRzrlE4sendyy9InProcessAaDPQzF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify19InternalTaskChannelPA2A0bC13AsyncSequenceRzAA0bC6RunnerRzrlE6finishyyF", + "mangledName": "$s7Amplify19InternalTaskChannelPA2A0bC13AsyncSequenceRzAA0bC6RunnerRzrlE6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify19InternalTaskChannelP", + "mangledName": "$s7Amplify19InternalTaskChannelP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskThrowingChannel", + "printedName": "InternalTaskThrowingChannel", + "children": [ + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify27InternalTaskThrowingChannelP9InProcessQa", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelP9InProcessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelP4sendyy9InProcessQzF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelP4sendyy9InProcessQzF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelP4failyys5Error_pF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelP4failyys5Error_pF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelP6finishyyF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelP6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "send", + "printedName": "send(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE4sendyy9InProcessAaDPQzF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE4sendyy9InProcessAaDPQzF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "finish", + "printedName": "finish()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE6finishyyF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE6finishyyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE4failyys5Error_pF", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelPA2A0bc5AsyncD8SequenceRzAA0bC6RunnerRzrlE4failyys5Error_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify27InternalTaskThrowingChannelP", + "mangledName": "$s7Amplify27InternalTaskThrowingChannelP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskRunner", + "printedName": "InternalTaskRunner", + "children": [ + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify18InternalTaskRunnerP7RequestQa", + "mangledName": "$s7Amplify18InternalTaskRunnerP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Request" + } + ], + "declKind": "Var", + "usr": "s:7Amplify18InternalTaskRunnerP7request7RequestQzvp", + "mangledName": "$s7Amplify18InternalTaskRunnerP7request7RequestQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Request" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify18InternalTaskRunnerP7request7RequestQzvg", + "mangledName": "$s7Amplify18InternalTaskRunnerP7request7RequestQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "run", + "printedName": "run()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify18InternalTaskRunnerP3runyyYaKF", + "mangledName": "$s7Amplify18InternalTaskRunnerP3runyyYaKF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify18InternalTaskRunnerP", + "mangledName": "$s7Amplify18InternalTaskRunnerP", + "moduleName": "Amplify", + "genericSig": "", + "conformances": [ + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalTaskController", + "printedName": "InternalTaskController", + "children": [ + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22InternalTaskControllerP5pauseyyF", + "mangledName": "$s7Amplify22InternalTaskControllerP5pauseyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22InternalTaskControllerP6resumeyyF", + "mangledName": "$s7Amplify22InternalTaskControllerP6resumeyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify22InternalTaskControllerP6cancelyyF", + "mangledName": "$s7Amplify22InternalTaskControllerP6cancelyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify22InternalTaskControllerP", + "mangledName": "$s7Amplify22InternalTaskControllerP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskIdentifiable", + "printedName": "InternalTaskIdentifiable", + "children": [ + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify24InternalTaskIdentifiableP7RequestQa", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24InternalTaskIdentifiableP2id10Foundation4UUIDVvp", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP2id10Foundation4UUIDVvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24InternalTaskIdentifiableP2id10Foundation4UUIDVvg", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP2id10Foundation4UUIDVvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "request", + "printedName": "request", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Request" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24InternalTaskIdentifiableP7request7RequestQzvp", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP7request7RequestQzvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Request" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24InternalTaskIdentifiableP7request7RequestQzvg", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP7request7RequestQzvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "categoryType", + "printedName": "categoryType", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Var", + "usr": "s:7Amplify24InternalTaskIdentifiableP12categoryTypeAA08CategoryF0Ovp", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP12categoryTypeAA08CategoryF0Ovp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CategoryType", + "printedName": "Amplify.CategoryType", + "usr": "s:7Amplify12CategoryTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24InternalTaskIdentifiableP12categoryTypeAA08CategoryF0Ovg", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP12categoryTypeAA08CategoryF0Ovg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify24InternalTaskIdentifiableP9eventNameSSvp", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP9eventNameSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24InternalTaskIdentifiableP9eventNameSSvg", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP9eventNameSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "idFilter", + "printedName": "idFilter", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:7Amplify24InternalTaskIdentifiablePAAE8idFilterySbAA10HubPayloadVcvp", + "mangledName": "$s7Amplify24InternalTaskIdentifiablePAAE8idFilterySbAA10HubPayloadVcvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify24InternalTaskIdentifiablePAAE8idFilterySbAA10HubPayloadVcvg", + "mangledName": "$s7Amplify24InternalTaskIdentifiablePAAE8idFilterySbAA10HubPayloadVcvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify24InternalTaskIdentifiableP", + "mangledName": "$s7Amplify24InternalTaskIdentifiableP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskHubResult", + "printedName": "InternalTaskHubResult", + "children": [ + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify21InternalTaskHubResultP7RequestQa", + "mangledName": "$s7Amplify21InternalTaskHubResultP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Success", + "printedName": "Success", + "declKind": "AssociatedType", + "usr": "s:7Amplify21InternalTaskHubResultP7SuccessQa", + "mangledName": "$s7Amplify21InternalTaskHubResultP7SuccessQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "Failure", + "printedName": "Failure", + "declKind": "AssociatedType", + "usr": "s:7Amplify21InternalTaskHubResultP7FailureQa", + "mangledName": "$s7Amplify21InternalTaskHubResultP7FailureQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "TypeAlias", + "name": "OperationResult", + "printedName": "OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21InternalTaskHubResultP09OperationE0a", + "mangledName": "$s7Amplify21InternalTaskHubResultP09OperationE0a", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeAlias", + "name": "ResultListener", + "printedName": "ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Self.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify21InternalTaskHubResultP0E8Listenera", + "mangledName": "$s7Amplify21InternalTaskHubResultP0E8Listenera", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Self.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Self.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultP9subscribe14resultListenerAA16UnsubscribeTokenVys0E0Oy7SuccessQz7FailureQzGc_tF", + "mangledName": "$s7Amplify21InternalTaskHubResultP9subscribe14resultListenerAA16UnsubscribeTokenVys0E0Oy7SuccessQz7FailureQzGc_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultP11unsubscribeyyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify21InternalTaskHubResultP11unsubscribeyyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Self.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultP8dispatch6resultys0E0Oy7SuccessQz7FailureQzG_tF", + "mangledName": "$s7Amplify21InternalTaskHubResultP8dispatch6resultys0E0Oy7SuccessQz7FailureQzG_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultPAAE11unsubscribeyyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify21InternalTaskHubResultPAAE11unsubscribeyyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(resultListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "ResultListener", + "printedName": "Self.ResultListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.OperationResult) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.OperationResult)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "OperationResult", + "printedName": "Self.OperationResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "usr": "s:s6ResultO" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultPA2A0bC12IdentifiableRzAA0bcE0RzrlE9subscribe14resultListenerAA16UnsubscribeTokenVys0E0Oy7SuccessACQz7FailureACQzGc_tF", + "mangledName": "$s7Amplify21InternalTaskHubResultPA2A0bC12IdentifiableRzAA0bcE0RzrlE9subscribe14resultListenerAA16UnsubscribeTokenVys0E0Oy7SuccessACQz7FailureACQzGc_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNameAlias", + "name": "TaskResult", + "printedName": "Self.TaskResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Success" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Failure" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify21InternalTaskHubResultPA2A0bC12IdentifiableRzAA0bcE0RzrlE8dispatch6resultys0E0Oy7SuccessACQz7FailureACQzG_tF", + "mangledName": "$s7Amplify21InternalTaskHubResultPA2A0bC12IdentifiableRzAA0bcE0RzrlE8dispatch6resultys0E0Oy7SuccessACQz7FailureACQzG_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify21InternalTaskHubResultP", + "mangledName": "$s7Amplify21InternalTaskHubResultP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "InternalTaskHubInProcess", + "printedName": "InternalTaskHubInProcess", + "children": [ + { + "kind": "AssociatedType", + "name": "Request", + "printedName": "Request", + "declKind": "AssociatedType", + "usr": "s:7Amplify24InternalTaskHubInProcessP7RequestQa", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP7RequestQa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "AssociatedType", + "name": "InProcess", + "printedName": "InProcess", + "declKind": "AssociatedType", + "usr": "s:7Amplify24InternalTaskHubInProcessP0eF0Qa", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP0eF0Qa", + "moduleName": "Amplify", + "protocolReq": true + }, + { + "kind": "TypeAlias", + "name": "InProcessListener", + "printedName": "InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify24InternalTaskHubInProcessP0eF8Listenera", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP0eF8Listenera", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Self.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessP9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0Qzc_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0Qzc_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessP11unsubscribeyyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP11unsubscribeyyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(inProcess:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessP8dispatch02inF0y0eF0Qz_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP8dispatch02inF0y0eF0Qz_tF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unsubscribe", + "printedName": "unsubscribe(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPAAE11unsubscribeyyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPAAE11unsubscribeyyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Self.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(inProcess:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzrlE8dispatch02inF0y0eF0ACQz_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzrlE8dispatch02inF0y0eF0ACQz_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Self.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzAA0bC6ResultRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bceF0RzAA0bC6ResultRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Self.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(inProcess:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzrlE8dispatch02inF0y0eF0ACQz_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzrlE8dispatch02inF0y0eF0ACQz_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "subscribe", + "printedName": "subscribe(inProcessListener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNameAlias", + "name": "InProcessListener", + "printedName": "Self.InProcessListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.InProcess) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.InProcess)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.InProcess" + } + ] + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bC6ResultRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "mangledName": "$s7Amplify24InternalTaskHubInProcessPA2A0bC12IdentifiableRzAA0bC6ResultRzrlE9subscribe02inF8ListenerAA16UnsubscribeTokenVy0eF0ACQzc_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify24InternalTaskHubInProcessP", + "mangledName": "$s7Amplify24InternalTaskHubInProcessP", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "JSONValue", + "printedName": "JSONValue", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> ([Amplify.JSONValue]) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Amplify.JSONValue]) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Amplify.JSONValue])", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO5arrayyACSayACGcACmF", + "mangledName": "$s7Amplify9JSONValueO5arrayyACSayACGcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "boolean", + "printedName": "boolean", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> (Swift.Bool) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Bool)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sb" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO7booleanyACSbcACmF", + "mangledName": "$s7Amplify9JSONValueO7booleanyACSbcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "number", + "printedName": "number", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> (Swift.Double) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Double)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO6numberyACSdcACmF", + "mangledName": "$s7Amplify9JSONValueO6numberyACSdcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "object", + "printedName": "object", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> ([Swift.String : Amplify.JSONValue]) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Amplify.JSONValue]) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "([Swift.String : Amplify.JSONValue])", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO6objectyACSDySSACGcACmF", + "mangledName": "$s7Amplify9JSONValueO6objectyACSDySSACGcACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "string", + "printedName": "string", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> (Swift.String) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO6stringyACSScACmF", + "mangledName": "$s7Amplify9JSONValueO6stringyACSScACmF", + "moduleName": "Amplify" + }, + { + "kind": "Var", + "name": "null", + "printedName": "null", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.JSONValue.Type) -> Amplify.JSONValue", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.JSONValue.Type)", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "Amplify.JSONValue.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:7Amplify9JSONValueO4nullyA2CmF", + "mangledName": "$s7Amplify9JSONValueO4nullyA2CmF", + "moduleName": "Amplify" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(at:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9JSONValueO5value2atACSgSS_tF", + "mangledName": "$s7Amplify9JSONValueO5value2atACSgSS_tF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(at:separatedBy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9JSONValueO5value2at11separatedByACSgSS_xtSyRzlF", + "mangledName": "$s7Amplify9JSONValueO5value2at11separatedByACSgSS_xtSyRzlF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "value", + "printedName": "value(at:withDefault:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9JSONValueO5value2at11withDefaultACSS_ACtF", + "mangledName": "$s7Amplify9JSONValueO5value2at11withDefaultACSS_ACtF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify9JSONValueOyACSgSScip", + "mangledName": "$s7Amplify9JSONValueOyACSgSScip", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueOyACSgSScig", + "mangledName": "$s7Amplify9JSONValueOyACSgSScig", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify9JSONValueOyACSgSicip", + "mangledName": "$s7Amplify9JSONValueOyACSgSicip", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueOyACSgSicig", + "mangledName": "$s7Amplify9JSONValueOyACSgSicig", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Subscript", + "usr": "s:7Amplify9JSONValueO13dynamicMemberACSgSS_tcip", + "mangledName": "$s7Amplify9JSONValueO13dynamicMemberACSgSS_tcip", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.JSONValue?", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO13dynamicMemberACSgSS_tcig", + "mangledName": "$s7Amplify9JSONValueO13dynamicMemberACSgSS_tcig", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify9JSONValueO4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9JSONValueO6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify9JSONValueO6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "__derived_enum_equals", + "printedName": "__derived_enum_equals(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9JSONValueO21__derived_enum_equalsySbAC_ACtFZ", + "mangledName": "$s7Amplify9JSONValueO21__derived_enum_equalsySbAC_ACtFZ", + "moduleName": "Amplify", + "static": true, + "implicit": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(arrayLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "Amplify.JSONValue...", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO12arrayLiteralA2Cd_tcfc", + "mangledName": "$s7Amplify9JSONValueO12arrayLiteralA2Cd_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO19ArrayLiteralElementa", + "mangledName": "$s7Amplify9JSONValueO19ArrayLiteralElementa", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(booleanLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO14booleanLiteralACSb_tcfc", + "mangledName": "$s7Amplify9JSONValueO14booleanLiteralACSb_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO18BooleanLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO18BooleanLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dictionaryLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "(Swift.String, Amplify.JSONValue)...", + "children": [ + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Amplify.JSONValue)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO17dictionaryLiteralACSS_ACtd_tcfc", + "mangledName": "$s7Amplify9JSONValueO17dictionaryLiteralACSS_ACtd_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO3Keya", + "mangledName": "$s7Amplify9JSONValueO3Keya", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO5Valuea", + "mangledName": "$s7Amplify9JSONValueO5Valuea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO12floatLiteralACSd_tcfc", + "mangledName": "$s7Amplify9JSONValueO12floatLiteralACSd_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO16FloatLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO16FloatLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO14integerLiteralACSi_tcfc", + "mangledName": "$s7Amplify9JSONValueO14integerLiteralACSi_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO18IntegerLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO18IntegerLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nilLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO10nilLiteralACyt_tcfc", + "mangledName": "$s7Amplify9JSONValueO10nilLiteralACyt_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9JSONValueO13stringLiteralACSS_tcfc", + "mangledName": "$s7Amplify9JSONValueO13stringLiteralACSS_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "TypeAlias", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO34ExtendedGraphemeClusterLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO34ExtendedGraphemeClusterLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO17StringLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO17StringLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "TypeAlias", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "TypeAlias", + "usr": "s:7Amplify9JSONValueO24UnicodeScalarLiteralTypea", + "mangledName": "$s7Amplify9JSONValueO24UnicodeScalarLiteralTypea", + "moduleName": "Amplify", + "implicit": true, + "isFromExtension": true + }, + { + "kind": "Var", + "name": "asObject", + "printedName": "asObject", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO8asObjectSDySSACGSgvp", + "mangledName": "$s7Amplify9JSONValueO8asObjectSDySSACGSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO8asObjectSDySSACGSgvg", + "mangledName": "$s7Amplify9JSONValueO8asObjectSDySSACGSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asArray", + "printedName": "asArray", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO7asArraySayACGSgvp", + "mangledName": "$s7Amplify9JSONValueO7asArraySayACGSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Amplify.JSONValue]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.JSONValue]", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO7asArraySayACGSgvg", + "mangledName": "$s7Amplify9JSONValueO7asArraySayACGSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO11stringValueSSSgvp", + "mangledName": "$s7Amplify9JSONValueO11stringValueSSSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO11stringValueSSSgvg", + "mangledName": "$s7Amplify9JSONValueO11stringValueSSSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO8intValueSiSgvp", + "mangledName": "$s7Amplify9JSONValueO8intValueSiSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO8intValueSiSgvg", + "mangledName": "$s7Amplify9JSONValueO8intValueSiSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doubleValue", + "printedName": "doubleValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO11doubleValueSdSgvp", + "mangledName": "$s7Amplify9JSONValueO11doubleValueSdSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO11doubleValueSdSgvg", + "mangledName": "$s7Amplify9JSONValueO11doubleValueSdSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "booleanValue", + "printedName": "booleanValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO12booleanValueSbSgvp", + "mangledName": "$s7Amplify9JSONValueO12booleanValueSbSgvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO12booleanValueSbSgvg", + "mangledName": "$s7Amplify9JSONValueO12booleanValueSbSgvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isNull", + "printedName": "isNull", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9JSONValueO6isNullSbvp", + "mangledName": "$s7Amplify9JSONValueO6isNullSbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9JSONValueO6isNullSbvg", + "mangledName": "$s7Amplify9JSONValueO6isNullSbvg", + "moduleName": "Amplify", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:7Amplify9JSONValueO", + "mangledName": "$s7Amplify9JSONValueO", + "moduleName": "Amplify", + "declAttributes": [ + "DynamicMemberLookup" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByDictionaryLiteral", + "printedName": "ExpressibleByDictionaryLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "Key", + "printedName": "Key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONValue", + "printedName": "Amplify.JSONValue", + "usr": "s:7Amplify9JSONValueO" + } + ] + } + ], + "usr": "s:s30ExpressibleByDictionaryLiteralP", + "mangledName": "$ss30ExpressibleByDictionaryLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByNilLiteral", + "printedName": "ExpressibleByNilLiteral", + "usr": "s:s23ExpressibleByNilLiteralP", + "mangledName": "$ss23ExpressibleByNilLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OperationCancelledError", + "printedName": "OperationCancelledError", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OperationCancelledError", + "printedName": "Amplify.OperationCancelledError", + "usr": "s:7Amplify23OperationCancelledErrorV" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23OperationCancelledErrorVACycfc", + "mangledName": "$s7Amplify23OperationCancelledErrorVACycfc", + "moduleName": "Amplify", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify23OperationCancelledErrorV", + "mangledName": "$s7Amplify23OperationCancelledErrorV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "RequestIdentifier", + "printedName": "RequestIdentifier", + "children": [ + { + "kind": "Var", + "name": "requestID", + "printedName": "requestID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify17RequestIdentifierP9requestIDSSvp", + "mangledName": "$s7Amplify17RequestIdentifierP9requestIDSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify17RequestIdentifierP9requestIDSSvg", + "mangledName": "$s7Amplify17RequestIdentifierP9requestIDSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify17RequestIdentifierP", + "mangledName": "$s7Amplify17RequestIdentifierP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "Resumable", + "printedName": "Resumable", + "children": [ + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ResumableP5pauseyyF", + "mangledName": "$s7Amplify9ResumableP5pauseyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify9ResumableP6resumeyyF", + "mangledName": "$s7Amplify9ResumableP6resumeyyF", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify9ResumableP", + "mangledName": "$s7Amplify9ResumableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "TaskQueue", + "printedName": "TaskQueue", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TaskQueue", + "printedName": "Amplify.TaskQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + } + ], + "usr": "s:7Amplify9TaskQueueC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify9TaskQueueCACyxGycfc", + "mangledName": "$s7Amplify9TaskQueueCACyxGycfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "sync", + "printedName": "sync(block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify9TaskQueueC4sync5blockxxyYaYbKc_tYaKF", + "mangledName": "$s7Amplify9TaskQueueC4sync5blockxxyYaYbKc_tYaKF", + "moduleName": "Amplify", + "genericSig": "", + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "async", + "printedName": "async(block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() async throws -> Success", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify9TaskQueueC5async5blockyxyYaYbKc_tF", + "mangledName": "$s7Amplify9TaskQueueC5async5blockyxyYaYbKc_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "log", + "printedName": "log", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify9TaskQueueC3logAA6Logger_pvpZ", + "mangledName": "$s7Amplify9TaskQueueC3logAA6Logger_pvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify9TaskQueueC3logAA6Logger_pvgZ", + "mangledName": "$s7Amplify9TaskQueueC3logAA6Logger_pvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:7Amplify9TaskQueueC", + "mangledName": "$s7Amplify9TaskQueueC", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "Tree", + "printedName": "Tree", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4TreeC5valuexvp", + "mangledName": "$s7Amplify4TreeC5valuexvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC5valuexvg", + "mangledName": "$s7Amplify4TreeC5valuexvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC5valuexvs", + "mangledName": "$s7Amplify4TreeC5valuexvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "children", + "printedName": "children", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Tree]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4TreeC8childrenSayACyxGGvp", + "mangledName": "$s7Amplify4TreeC8childrenSayACyxGGvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Tree]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC8childrenSayACyxGGvg", + "mangledName": "$s7Amplify4TreeC8childrenSayACyxGGvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Amplify.Tree]", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC8childrenSayACyxGGvs", + "mangledName": "$s7Amplify4TreeC8childrenSayACyxGGvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "parent", + "printedName": "parent", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "Amplify.Tree?" + } + ], + "declKind": "Var", + "usr": "s:7Amplify4TreeC6parentACyxGSgvp", + "mangledName": "$s7Amplify4TreeC6parentACyxGSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "ReferenceOwnership", + "HasStorage" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Tree?", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC6parentACyxGSgvg", + "mangledName": "$s7Amplify4TreeC6parentACyxGSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Tree?", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify4TreeC6parentACyxGSgvs", + "mangledName": "$s7Amplify4TreeC6parentACyxGSgvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify4TreeC5valueACyxGx_tcfc", + "mangledName": "$s7Amplify4TreeC5valueACyxGx_tcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addChild", + "printedName": "addChild(settingParentOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tree", + "printedName": "Amplify.Tree", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "E" + } + ], + "usr": "s:7Amplify4TreeC" + } + ], + "declKind": "Func", + "usr": "s:7Amplify4TreeC8addChild15settingParentOfyACyxG_tF", + "mangledName": "$s7Amplify4TreeC8addChild15settingParentOfyACyxG_tF", + "moduleName": "Amplify", + "genericSig": "", + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify4TreeC", + "mangledName": "$s7Amplify4TreeC", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "WeakRef", + "printedName": "WeakRef", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "T?" + } + ], + "declKind": "Var", + "usr": "s:7Amplify7WeakRefC5valuexSgvp", + "mangledName": "$s7Amplify7WeakRefC5valuexSgvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasInitialValue", + "ReferenceOwnership", + "HasStorage" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "T?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify7WeakRefC5valuexSgvg", + "mangledName": "$s7Amplify7WeakRefC5valuexSgvg", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "T?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify7WeakRefC5valuexSgvs", + "mangledName": "$s7Amplify7WeakRefC5valuexSgvs", + "moduleName": "Amplify", + "genericSig": "", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakRef", + "printedName": "Amplify.WeakRef", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:7Amplify7WeakRefC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "T?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "T" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify7WeakRefCyACyxGxSgcfc", + "mangledName": "$s7Amplify7WeakRefCyACyxGxSgcfc", + "moduleName": "Amplify", + "genericSig": "", + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:7Amplify7WeakRefC", + "mangledName": "$s7Amplify7WeakRefC", + "moduleName": "Amplify", + "genericSig": "" + }, + { + "kind": "TypeDecl", + "name": "AWSHubPlugin", + "printedName": "AWSHubPlugin", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AWSHubPluginC3keySSvpZ", + "mangledName": "$s7Amplify12AWSHubPluginC3keySSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AWSHubPluginC3keySSvgZ", + "mangledName": "$s7Amplify12AWSHubPluginC3keySSvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify12AWSHubPluginC3keySSvp", + "mangledName": "$s7Amplify12AWSHubPluginC3keySSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify12AWSHubPluginC3keySSvg", + "mangledName": "$s7Amplify12AWSHubPluginC3keySSvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(using:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC9configure5usingyypSg_tKF", + "mangledName": "$s7Amplify12AWSHubPluginC9configure5usingyypSg_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC5resetyyYaF", + "mangledName": "$s7Amplify12AWSHubPluginC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispatch", + "printedName": "dispatch(to:payload:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC8dispatch2to7payloadyAA10HubChannelO_AA0G7PayloadVtF", + "mangledName": "$s7Amplify12AWSHubPluginC8dispatch2to7payloadyAA10HubChannelO_AA0G7PayloadVtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:eventName:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNameAlias", + "name": "HubPayloadEventName", + "printedName": "Amplify.HubPayloadEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC6listen2to9eventName8listenerAA16UnsubscribeTokenVAA10HubChannelO_SSyAA0K7PayloadVctF", + "mangledName": "$s7Amplify12AWSHubPluginC6listen2to9eventName8listenerAA16UnsubscribeTokenVAA10HubChannelO_SSyAA0K7PayloadVctF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listen", + "printedName": "listen(to:isIncluded:listener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + }, + { + "kind": "TypeNominal", + "name": "HubChannel", + "printedName": "Amplify.HubChannel", + "usr": "s:7Amplify10HubChannelO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.HubFilter?", + "children": [ + { + "kind": "TypeNameAlias", + "name": "HubFilter", + "printedName": "Amplify.HubFilter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNameAlias", + "name": "HubListener", + "printedName": "Amplify.HubListener", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Amplify.HubPayload) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Amplify.HubPayload)", + "children": [ + { + "kind": "TypeNominal", + "name": "HubPayload", + "printedName": "Amplify.HubPayload", + "usr": "s:7Amplify10HubPayloadV" + } + ], + "usr": "s:7Amplify10HubPayloadV" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA10HubChannelO_SbAA0K7PayloadVcSgyAMctF", + "mangledName": "$s7Amplify12AWSHubPluginC6listen2to10isIncluded8listenerAA16UnsubscribeTokenVAA10HubChannelO_SbAA0K7PayloadVcSgyAMctF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeListener", + "printedName": "removeListener(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC14removeListeneryyAA16UnsubscribeTokenVF", + "mangledName": "$s7Amplify12AWSHubPluginC14removeListeneryyAA16UnsubscribeTokenVF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasListener", + "printedName": "hasListener(withToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UnsubscribeToken", + "printedName": "Amplify.UnsubscribeToken", + "usr": "s:7Amplify16UnsubscribeTokenV" + } + ], + "declKind": "Func", + "usr": "s:7Amplify12AWSHubPluginC11hasListener9withTokenSbAA011UnsubscribeG0V_tF", + "mangledName": "$s7Amplify12AWSHubPluginC11hasListener9withTokenSbAA011UnsubscribeG0V_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify12AWSHubPluginC", + "mangledName": "$s7Amplify12AWSHubPluginC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "HubCategoryPlugin", + "printedName": "HubCategoryPlugin", + "usr": "s:7Amplify17HubCategoryPluginP", + "mangledName": "$s7Amplify17HubCategoryPluginP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "HubCategoryBehavior", + "printedName": "HubCategoryBehavior", + "usr": "s:7Amplify19HubCategoryBehaviorP", + "mangledName": "$s7Amplify19HubCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "AmplifyVersionable", + "printedName": "AmplifyVersionable", + "usr": "s:7Amplify0A11VersionableP", + "mangledName": "$s7Amplify0A11VersionableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AWSUnifiedLoggingPlugin", + "printedName": "AWSUnifiedLoggingPlugin", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC3keySSvpZ", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC3keySSvpZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC3keySSvgZ", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC3keySSvgZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AWSUnifiedLoggingPlugin", + "printedName": "Amplify.AWSUnifiedLoggingPlugin", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginCACycfc", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginCACycfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC3keySSvp", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC3keySSvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC3keySSvg", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC3keySSvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(using:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC9configure5usingyypSg_tKF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC9configure5usingyypSg_tKF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC5resetyyYaF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC5resetyyYaF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Var", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC7defaultAA6Logger_pvp", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC7defaultAA6Logger_pvp", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC7defaultAA6Logger_pvg", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC7defaultAA6Logger_pvg", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC6logger11forCategoryAA6Logger_pSS_tF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC6logger11forCategoryAA6Logger_pSS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:logLevel:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNameAlias", + "name": "LogLevel", + "printedName": "Amplify.LogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "LogLevel", + "printedName": "Amplify.Amplify.LogLevel", + "usr": "s:7AmplifyAAC8LogLevelO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC6logger11forCategory8logLevelAA6Logger_pSS_A2AC03LogI0OtF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC6logger11forCategory8logLevelAA6Logger_pSS_A2AC03LogI0OtF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC6enableyyF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC6enableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disable", + "printedName": "disable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC7disableyyF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC7disableyyF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC6logger12forNamespaceAA6Logger_pSS_tF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC6logger12forNamespaceAA6Logger_pSS_tF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logger", + "printedName": "logger(forCategory:forNamespace:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Logger", + "printedName": "Amplify.Logger", + "usr": "s:7Amplify6LoggerP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC6logger11forCategory0F9NamespaceAA6Logger_pSS_SStF", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC6logger11forCategory0F9NamespaceAA6Logger_pSS_SStF", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:7Amplify23AWSUnifiedLoggingPluginC", + "mangledName": "$s7Amplify23AWSUnifiedLoggingPluginC", + "moduleName": "Amplify", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoggingCategoryPlugin", + "printedName": "LoggingCategoryPlugin", + "usr": "s:7Amplify21LoggingCategoryPluginP", + "mangledName": "$s7Amplify21LoggingCategoryPluginP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "LoggingCategoryClientBehavior", + "printedName": "LoggingCategoryClientBehavior", + "usr": "s:7Amplify29LoggingCategoryClientBehaviorP", + "mangledName": "$s7Amplify29LoggingCategoryClientBehaviorP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "AmplifyVersionable", + "printedName": "AmplifyVersionable", + "usr": "s:7Amplify0A11VersionableP", + "mangledName": "$s7Amplify0A11VersionableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConsoleLoggingConfiguration", + "printedName": "ConsoleLoggingConfiguration", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(enable:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsoleLoggingConfiguration", + "printedName": "Amplify.ConsoleLoggingConfiguration", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV6enableACSb_tcfc", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV6enableACSb_tcfc", + "moduleName": "Amplify", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "enable", + "printedName": "enable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV6enableSbvp", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV6enableSbvp", + "moduleName": "Amplify", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV6enableSbvg", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV6enableSbvg", + "moduleName": "Amplify", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV6encode2toys7Encoder_p_tKF", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV6encode2toys7Encoder_p_tKF", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ConsoleLoggingConfiguration", + "printedName": "Amplify.ConsoleLoggingConfiguration", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV4fromACs7Decoder_p_tKcfc", + "moduleName": "Amplify", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:7Amplify27ConsoleLoggingConfigurationV", + "mangledName": "$s7Amplify27ConsoleLoggingConfigurationV", + "moduleName": "Amplify", + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AmplifyVersionable", + "printedName": "AmplifyVersionable", + "children": [ + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11VersionableP7versionSSvp", + "mangledName": "$s7Amplify0A11VersionableP7versionSSvp", + "moduleName": "Amplify", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11VersionableP7versionSSvg", + "mangledName": "$s7Amplify0A11VersionableP7versionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:7Amplify0A11VersionablePAARlzCrlE7versionSSvp", + "mangledName": "$s7Amplify0A11VersionablePAARlzCrlE7versionSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:7Amplify0A11VersionablePAARlzCrlE7versionSSvg", + "mangledName": "$s7Amplify0A11VersionablePAARlzCrlE7versionSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:7Amplify0A11VersionableP", + "mangledName": "$s7Amplify0A11VersionableP", + "moduleName": "Amplify" + }, + { + "kind": "TypeDecl", + "name": "AsyncSequence", + "printedName": "AsyncSequence", + "children": [ + { + "kind": "Function", + "name": "forEach", + "printedName": "forEach(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Self.Element) async throws -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Self.Element)", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Self.Element" + } + ] + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:Sci7AmplifyE7forEachyyy7ElementQzYaKXEYaKF", + "mangledName": "$sSci7AmplifyE7forEachyyy7ElementQzYaKXEYaKF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:Sci", + "mangledName": "$sSci", + "moduleName": "_Concurrency", + "genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "AtRethrows", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Function", + "name": "pascalCased", + "printedName": "pascalCased()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS7AmplifyE11pascalCasedSSyF", + "mangledName": "$sSS7AmplifyE11pascalCasedSSyF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "camelCased", + "printedName": "camelCased()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS7AmplifyE10camelCasedSSyF", + "mangledName": "$sSS7AmplifyE10camelCasedSSyF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pluralize", + "printedName": "pluralize()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS7AmplifyE9pluralizeSSyF", + "mangledName": "$sSS7AmplifyE9pluralizeSSyF", + "moduleName": "Amplify", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StringLiteralType", + "printedName": "Swift.String.StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "Swift.String.ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "UnicodeScalarLiteralType", + "printedName": "Swift.String.UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.String.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.String.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.String.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNameAlias", + "name": "StringInterpolation", + "printedName": "Swift.String.StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.String.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Representation", + "printedName": "Swift.String.Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + }, + { + "kind": "TypeNominal", + "name": "Sendable", + "printedName": "Swift.Sendable", + "usr": "s:s8SendableP" + } + ] + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Int", + "printedName": "Int", + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" + }, + { + "kind": "Conformance", + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" + }, + { + "kind": "Conformance", + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Swift.Int.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Swift.Int.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Swift.Int.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SIMDMaskScalar", + "printedName": "Swift.Int.SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Double", + "printedName": "Double", + "children": [ + { + "kind": "Function", + "name": "milliseconds", + "printedName": "milliseconds(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:Sd7AmplifyE12millisecondsyS2dFZ", + "mangledName": "$sSd7AmplifyE12millisecondsyS2dFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "seconds", + "printedName": "seconds(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:Sd7AmplifyE7secondsyS2dFZ", + "mangledName": "$sSd7AmplifyE7secondsyS2dFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "minutes", + "printedName": "minutes(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:Sd7AmplifyE7minutesyS2dFZ", + "mangledName": "$sSd7AmplifyE7minutesyS2dFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hours", + "printedName": "hours(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:Sd7AmplifyE5hoursyS2dFZ", + "mangledName": "$sSd7AmplifyE5hoursyS2dFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "days", + "printedName": "days(_:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TimeInterval", + "printedName": "Foundation.TimeInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:Sd7AmplifyE4daysyS2dFZ", + "mangledName": "$sSd7AmplifyE4daysyS2dFZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RawSignificand", + "printedName": "Swift.Double.RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNameAlias", + "name": "RawExponent", + "printedName": "Swift.Double.RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "FloatLiteralType", + "printedName": "Swift.Double.FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Exponent", + "printedName": "Swift.Double.Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Magnitude", + "printedName": "Swift.Double.Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "IntegerLiteralType", + "printedName": "Swift.Double.IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Stride", + "printedName": "Swift.Double.Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SIMDMaskScalar", + "printedName": "Swift.Double.SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNameAlias", + "name": "AnimatableData", + "printedName": "Swift.Double.AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bool", + "printedName": "Bool", + "declKind": "Struct", + "usr": "s:Sb", + "mangledName": "$sSb", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "AnalyticsPropertyValue", + "printedName": "AnalyticsPropertyValue", + "usr": "s:7Amplify22AnalyticsPropertyValueP", + "mangledName": "$s7Amplify22AnalyticsPropertyValueP" + }, + { + "kind": "Conformance", + "name": "Persistable", + "printedName": "Persistable", + "usr": "s:7Amplify11PersistableP", + "mangledName": "$s7Amplify11PersistableP" + }, + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "BooleanLiteralType", + "printedName": "Swift.Bool.BooleanLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ] + } + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Result", + "printedName": "Result", + "children": [ + { + "kind": "Function", + "name": "resolve", + "printedName": "resolve(promise:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Swift.Result)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ], + "usr": "s:s6ResultO" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:s6ResultO7AmplifyE7resolve7promiseyyAByxAC14DataStoreErrorOGXE_tF", + "mangledName": "$ss6ResultO7AmplifyE7resolve7promiseyyAByxAC14DataStoreErrorOGXE_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "failure", + "printedName": "failure(causedBy:)", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Success" + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:s6ResultO7AmplifyE7failure8causedByAByxAC14DataStoreErrorOGs0H0_p_tFZ", + "mangledName": "$ss6ResultO7AmplifyE7failure8causedByAByxAC14DataStoreErrorOGs0H0_p_tFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "emptyResult", + "printedName": "emptyResult", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Var", + "usr": "s:s6ResultO7AmplifyE05emptyA0AByytAC14DataStoreErrorOGvpZ", + "mangledName": "$ss6ResultO7AmplifyE05emptyA0AByytAC14DataStoreErrorOGvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DataStoreResult", + "printedName": "Amplify.DataStoreResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataStoreError", + "printedName": "Amplify.DataStoreError", + "usr": "s:7Amplify14DataStoreErrorO" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:s6ResultO7AmplifyE05emptyA0AByytAC14DataStoreErrorOGvgZ", + "mangledName": "$ss6ResultO7AmplifyE05emptyA0AByytAC14DataStoreErrorOGvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "successfulVoid", + "printedName": "successfulVoid", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Var", + "usr": "s:s6ResultO7AmplifyytRszrlE14successfulVoidAByytq_GvpZ", + "mangledName": "$ss6ResultO7AmplifyytRszrlE14successfulVoidAByytq_GvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Failure" + } + ], + "usr": "s:s6ResultO" + } + ], + "declKind": "Accessor", + "usr": "s:s6ResultO7AmplifyytRszrlE14successfulVoidAByytq_GvgZ", + "mangledName": "$ss6ResultO7AmplifyytRszrlE14successfulVoidAByytq_GvgZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:s6ResultO", + "mangledName": "$ss6ResultO", + "moduleName": "Swift", + "genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "unique", + "printedName": "unique()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:Sa7AmplifyAA5ModelRzlE6uniquexSgyKF", + "mangledName": "$sSa7AmplifyAA5ModelRzlE6uniquexSgyKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unique", + "printedName": "unique()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Element?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:Sa7AmplifyAA5Model_pRszlE6uniqueAaB_pSgyKF", + "mangledName": "$sSa7AmplifyAA5Model_pRszlE6uniqueAaB_pSgyKF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "filter", + "printedName": "filter(modelOperation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ModelOperation", + "printedName": "Amplify.ModelOperation", + "usr": "s:7Amplify14ModelOperationO" + } + ], + "declKind": "Func", + "usr": "s:Sa7AmplifyAA8AuthRuleVRszlE6filter14modelOperationSayACGAA05ModelF0O_tF", + "mangledName": "$sSa7AmplifyAA8AuthRuleVRszlE6filter14modelOperationSayACGAA05ModelF0O_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:Sa7AmplifyAA23LazyReferenceIdentifierVRszlE11stringValueSSvp", + "mangledName": "$sSa7AmplifyAA23LazyReferenceIdentifierVRszlE11stringValueSSvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:Sa7AmplifyAA23LazyReferenceIdentifierVRszlE11stringValueSSvg", + "mangledName": "$sSa7AmplifyAA23LazyReferenceIdentifierVRszlE11stringValueSSvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "chunked", + "printedName": "chunked(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Element]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:Sa7AmplifyE7chunked4intoSaySayxGGSi_tF", + "mangledName": "$sSa7AmplifyE7chunked4intoSaySayxGGSi_tF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "UserProfilePropertyValue", + "printedName": "UserProfilePropertyValue", + "usr": "s:7Amplify24UserProfilePropertyValueP", + "mangledName": "$s7Amplify24UserProfilePropertyValueP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Array.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Swift.Array.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.Array.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.Array.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Array.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Swift.Array.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.Array.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Array.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Swift.Array.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.Array.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.Array.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Element", + "printedName": "Swift.Array.Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Index", + "printedName": "Swift.Array.Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Swift.Array.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.Array.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Indices", + "printedName": "Swift.Array.Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Iterator", + "printedName": "Swift.Array.Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[Element]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Element]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ArrayLiteralElement", + "printedName": "Swift.Array.ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ] + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNameAlias", + "name": "SubSequence", + "printedName": "Swift.Array.SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Element" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNameAlias", + "name": "EncodingConfiguration", + "printedName": "Swift.Array.EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Element.EncodingConfiguration" + } + ] + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DecodingConfiguration", + "printedName": "Swift.Array.DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Element.DecodingConfiguration" + } + ] + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Regions", + "printedName": "Swift.Array.Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONDecoder", + "printedName": "JSONDecoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dateDecodingStrategy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONDecoder", + "printedName": "Foundation.JSONDecoder", + "usr": "s:10Foundation11JSONDecoderC" + }, + { + "kind": "TypeNominal", + "name": "DateDecodingStrategy", + "printedName": "Foundation.JSONDecoder.DateDecodingStrategy", + "usr": "s:10Foundation11JSONDecoderC20DateDecodingStrategyO" + } + ], + "declKind": "Constructor", + "usr": "s:10Foundation11JSONDecoderC7AmplifyE20dateDecodingStrategyA2C04DateeF0O_tcfc", + "mangledName": "$s10Foundation11JSONDecoderC7AmplifyE20dateDecodingStrategyA2C04DateeF0O_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "s:10Foundation11JSONDecoderC", + "mangledName": "$s10Foundation11JSONDecoderC", + "moduleName": "Foundation", + "isOpen": true, + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "TopLevelDecoder", + "printedName": "TopLevelDecoder", + "children": [ + { + "kind": "TypeWitness", + "name": "Input", + "printedName": "Input", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Input", + "printedName": "Foundation.JSONDecoder.Input", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + } + ], + "usr": "s:7Combine15TopLevelDecoderP", + "mangledName": "$s7Combine15TopLevelDecoderP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "JSONEncoder", + "printedName": "JSONEncoder", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dateEncodingStrategy:)", + "children": [ + { + "kind": "TypeNominal", + "name": "JSONEncoder", + "printedName": "Foundation.JSONEncoder", + "usr": "s:10Foundation11JSONEncoderC" + }, + { + "kind": "TypeNominal", + "name": "DateEncodingStrategy", + "printedName": "Foundation.JSONEncoder.DateEncodingStrategy", + "usr": "s:10Foundation11JSONEncoderC20DateEncodingStrategyO" + } + ], + "declKind": "Constructor", + "usr": "s:10Foundation11JSONEncoderC7AmplifyE20dateEncodingStrategyA2C04DateeF0O_tcfc", + "mangledName": "$s10Foundation11JSONEncoderC7AmplifyE20dateEncodingStrategyA2C04DateeF0O_tcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "s:10Foundation11JSONEncoderC", + "mangledName": "$s10Foundation11JSONEncoderC", + "moduleName": "Foundation", + "isOpen": true, + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "TopLevelEncoder", + "printedName": "TopLevelEncoder", + "children": [ + { + "kind": "TypeWitness", + "name": "Output", + "printedName": "Output", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Output", + "printedName": "Foundation.JSONEncoder.Output", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ] + } + ], + "usr": "s:7Combine15TopLevelEncoderP", + "mangledName": "$s7Combine15TopLevelEncoderP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TimeZone", + "printedName": "TimeZone", + "children": [ + { + "kind": "Var", + "name": "utc", + "printedName": "utc", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "declKind": "Var", + "usr": "s:10Foundation8TimeZoneV7AmplifyE3utcACvpZ", + "mangledName": "$s10Foundation8TimeZoneV7AmplifyE3utcACvpZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TimeZone", + "printedName": "Foundation.TimeZone", + "usr": "s:10Foundation8TimeZoneV" + } + ], + "declKind": "Accessor", + "usr": "s:10Foundation8TimeZoneV7AmplifyE3utcACvgZ", + "mangledName": "$s10Foundation8TimeZoneV7AmplifyE3utcACvgZ", + "moduleName": "Amplify", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:10Foundation8TimeZoneV", + "mangledName": "$s10Foundation8TimeZoneV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNameAlias", + "name": "ReferenceType", + "printedName": "Foundation.TimeZone.ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSTimeZone", + "printedName": "Foundation.NSTimeZone", + "usr": "c:objc(cs)NSTimeZone" + } + ] + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CodingKey", + "printedName": "CodingKey", + "children": [ + { + "kind": "Function", + "name": "beginsWith", + "printedName": "beginsWith(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE10beginsWithyAC23QueryPredicateOperationCSSF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE10beginsWithyAC23QueryPredicateOperationCSSF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "between", + "printedName": "between(start:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE7between5start3endAC23QueryPredicateOperationCAC11Persistable_p_AcJ_ptF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE7between5start3endAC23QueryPredicateOperationCAC11Persistable_p_AcJ_ptF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "contains", + "printedName": "contains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE8containsyAC23QueryPredicateOperationCSSF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE8containsyAC23QueryPredicateOperationCSSF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "~=", + "printedName": "~=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2teoiyAC23QueryPredicateOperationCx_SStFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2teoiyAC23QueryPredicateOperationCx_SStFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notContains", + "printedName": "notContains(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE11notContainsyAC23QueryPredicateOperationCSSF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE11notContainsyAC23QueryPredicateOperationCSSF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2eqyAC23QueryPredicateOperationCAC11Persistable_pSgF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2eqyAC23QueryPredicateOperationCAC11Persistable_pSgF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "eq", + "printedName": "eq(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2eqyAC23QueryPredicateOperationCAC15EnumPersistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2eqyAC23QueryPredicateOperationCAC15EnumPersistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2eeoiyAC23QueryPredicateOperationCx_AC11Persistable_pSgtFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2eeoiyAC23QueryPredicateOperationCx_AC11Persistable_pSgtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2eeoiyAC23QueryPredicateOperationCx_AC15EnumPersistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2eeoiyAC23QueryPredicateOperationCx_AC15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ge", + "printedName": "ge(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2geyAC23QueryPredicateOperationCAC11Persistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2geyAC23QueryPredicateOperationCAC11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">=", + "printedName": ">=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2geoiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2geoiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gt", + "printedName": "gt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2gtyAC23QueryPredicateOperationCAC11Persistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2gtyAC23QueryPredicateOperationCAC11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": ">", + "printedName": ">(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE1goiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE1goiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "le", + "printedName": "le(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2leyAC23QueryPredicateOperationCAC11Persistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2leyAC23QueryPredicateOperationCAC11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<=", + "printedName": "<=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2leoiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2leoiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "lt", + "printedName": "lt(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2ltyAC23QueryPredicateOperationCAC11Persistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2ltyAC23QueryPredicateOperationCAC11Persistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "<", + "printedName": "<(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE1loiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE1loiyAC23QueryPredicateOperationCx_AC11Persistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2neyAC23QueryPredicateOperationCAC11Persistable_pSgF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2neyAC23QueryPredicateOperationCAC11Persistable_pSgF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ne", + "printedName": "ne(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2neyAC23QueryPredicateOperationCAC15EnumPersistable_pF", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2neyAC23QueryPredicateOperationCAC15EnumPersistable_pF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Persistable?", + "children": [ + { + "kind": "TypeNominal", + "name": "Persistable", + "printedName": "Amplify.Persistable", + "usr": "s:7Amplify11PersistableP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2neoiyAC23QueryPredicateOperationCx_AC11Persistable_pSgtFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2neoiyAC23QueryPredicateOperationCx_AC11Persistable_pSgtFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "!=", + "printedName": "!=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "QueryPredicateOperation", + "printedName": "Amplify.QueryPredicateOperation", + "usr": "s:7Amplify23QueryPredicateOperationC" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Self" + }, + { + "kind": "TypeNominal", + "name": "EnumPersistable", + "printedName": "Amplify.EnumPersistable", + "usr": "s:7Amplify15EnumPersistableP" + } + ], + "declKind": "Func", + "usr": "s:s9CodingKeyP7AmplifyAC05ModelB0RzrlE2neoiyAC23QueryPredicateOperationCx_AC15EnumPersistable_ptFZ", + "mangledName": "$ss9CodingKeyP7AmplifyAC05ModelB0RzrlE2neoiyAC23QueryPredicateOperationCx_AC15EnumPersistable_ptFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP", + "moduleName": "Swift", + "genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CLLocationCoordinate2D", + "printedName": "CLLocationCoordinate2D", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CLLocationCoordinate2D", + "printedName": "CoreLocation.CLLocationCoordinate2D", + "usr": "c:@S@CLLocationCoordinate2D" + }, + { + "kind": "TypeNominal", + "name": "Coordinates", + "printedName": "Amplify.Geo.Coordinates", + "usr": "s:7Amplify3GeoO11CoordinatesV" + } + ], + "declKind": "Constructor", + "usr": "s:So22CLLocationCoordinate2DV7AmplifyEyAbC3GeoO11CoordinatesVcfc", + "mangledName": "$sSo22CLLocationCoordinate2DV7AmplifyEyAbC3GeoO11CoordinatesVcfc", + "moduleName": "Amplify", + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "c:@S@CLLocationCoordinate2D", + "location": "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk\/System\/Library\/Frameworks\/CoreLocation.framework\/Headers\/CLLocation.h:79:8", + "moduleName": "CoreLocation", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Optional", + "printedName": "Optional", + "children": [ + { + "kind": "Function", + "name": "ifSome", + "printedName": "ifSome(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Wrapped) throws -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Paren", + "printedName": "(Wrapped)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Wrapped" + } + ] + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:Sq7AmplifyE6ifSomeyyyxKXEKF", + "mangledName": "$sSq7AmplifyE6ifSomeyyyxKXEKF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Rethrows", + "SPIAccessControl" + ], + "isFromExtension": true, + "spi_group_names": [ + "OptionalExtension" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:Sq", + "mangledName": "$sSq", + "moduleName": "Swift", + "genericSig": "", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ExpressibleByNilLiteral", + "printedName": "ExpressibleByNilLiteral", + "usr": "s:s23ExpressibleByNilLiteralP", + "mangledName": "$ss23ExpressibleByNilLiteralP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNameAlias", + "name": "EncodingConfiguration", + "printedName": "Swift.Optional.EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Wrapped.EncodingConfiguration" + } + ] + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNameAlias", + "name": "DecodingConfiguration", + "printedName": "Swift.Optional.DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Wrapped.DecodingConfiguration" + } + ] + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "Gesture", + "printedName": "Gesture", + "children": [ + { + "kind": "TypeWitness", + "name": "Value", + "printedName": "Value", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Value", + "printedName": "Swift.Optional.Value", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Wrapped.Value" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "Body", + "printedName": "Body", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Body", + "printedName": "Swift.Optional.Body", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI7GestureP", + "mangledName": "$s7SwiftUI7GestureP" + }, + { + "kind": "Conformance", + "name": "View", + "printedName": "View", + "children": [ + { + "kind": "TypeWitness", + "name": "Body", + "printedName": "Body", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Body", + "printedName": "Swift.Optional.Body", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI4ViewP", + "mangledName": "$s7SwiftUI4ViewP" + }, + { + "kind": "Conformance", + "name": "TableRowContent", + "printedName": "TableRowContent", + "children": [ + { + "kind": "TypeWitness", + "name": "TableRowValue", + "printedName": "TableRowValue", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TableRowValue", + "printedName": "Swift.Optional.TableRowValue", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "Wrapped.TableRowValue" + } + ] + } + ] + }, + { + "kind": "TypeWitness", + "name": "TableRowBody", + "printedName": "TableRowBody", + "children": [ + { + "kind": "TypeNameAlias", + "name": "TableRowBody", + "printedName": "Swift.Optional.TableRowBody", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI15TableRowContentP", + "mangledName": "$s7SwiftUI15TableRowContentP" + }, + { + "kind": "Conformance", + "name": "Commands", + "printedName": "Commands", + "children": [ + { + "kind": "TypeWitness", + "name": "Body", + "printedName": "Body", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Body", + "printedName": "Swift.Optional.Body", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI8CommandsP", + "mangledName": "$s7SwiftUI8CommandsP" + }, + { + "kind": "Conformance", + "name": "ToolbarContent", + "printedName": "ToolbarContent", + "children": [ + { + "kind": "TypeWitness", + "name": "Body", + "printedName": "Body", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Body", + "printedName": "Swift.Optional.Body", + "children": [ + { + "kind": "TypeNominal", + "name": "Never", + "printedName": "Swift.Never", + "usr": "s:s5NeverO" + } + ] + } + ] + } + ], + "usr": "s:7SwiftUI14ToolbarContentP", + "mangledName": "$s7SwiftUI14ToolbarContentP" + }, + { + "kind": "Conformance", + "name": "CustomizableToolbarContent", + "printedName": "CustomizableToolbarContent", + "usr": "s:7SwiftUI26CustomizableToolbarContentP", + "mangledName": "$s7SwiftUI26CustomizableToolbarContentP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Task", + "printedName": "Task", + "children": [ + { + "kind": "Function", + "name": "sleep", + "printedName": "sleep(seconds:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:ScT7Amplifys5NeverORszACRs_rlE5sleep7secondsySd_tYaKFZ", + "mangledName": "$sScT7Amplifys5NeverORszACRs_rlE5sleep7secondsySd_tYaKFZ", + "moduleName": "Amplify", + "genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:ScT", + "mangledName": "$sScT", + "moduleName": "_Concurrency", + "genericSig": "", + "intro_Macosx": "10.15", + "intro_iOS": "13.0", + "intro_tvOS": "13.0", + "intro_watchOS": "6.0", + "declAttributes": [ + "Frozen", + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Cancellable", + "printedName": "Cancellable", + "usr": "s:7Amplify11CancellableP", + "mangledName": "$s7Amplify11CancellableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DispatchSource", + "printedName": "DispatchSource", + "children": [ + { + "kind": "Function", + "name": "makeOneOffDispatchSourceTimer", + "printedName": "makeOneOffDispatchSourceTimer(interval:queue:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchSourceTimer", + "printedName": "Dispatch.DispatchSourceTimer", + "usr": "c:objc(pl)OS_dispatch_source_timer" + }, + { + "kind": "TypeNominal", + "name": "DispatchTimeInterval", + "printedName": "Dispatch.DispatchTimeInterval", + "usr": "s:8Dispatch0A12TimeIntervalO" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:So18OS_dispatch_sourceC7AmplifyE29makeOneOffDispatchSourceTimer8interval5queue5blockSo0a1_b1_C6_timer_p0H00H12TimeIntervalO_So0a1_b1_L0CyyctFZ", + "mangledName": "$sSo18OS_dispatch_sourceC7AmplifyE29makeOneOffDispatchSourceTimer8interval5queue5blockSo0a1_b1_C6_timer_p0H00H12TimeIntervalO_So0a1_b1_L0CyyctFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeOneOffDispatchSourceTimer", + "printedName": "makeOneOffDispatchSourceTimer(deadline:queue:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchSourceTimer", + "printedName": "Dispatch.DispatchSourceTimer", + "usr": "c:objc(pl)OS_dispatch_source_timer" + }, + { + "kind": "TypeNominal", + "name": "DispatchTime", + "printedName": "Dispatch.DispatchTime", + "usr": "s:8Dispatch0A4TimeV" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:So18OS_dispatch_sourceC7AmplifyE29makeOneOffDispatchSourceTimer8deadline5queue5blockSo0a1_b1_C6_timer_p0H00H4TimeV_So0a1_b1_L0CyyctFZ", + "mangledName": "$sSo18OS_dispatch_sourceC7AmplifyE29makeOneOffDispatchSourceTimer8deadline5queue5blockSo0a1_b1_C6_timer_p0H00H4TimeV_So0a1_b1_L0CyyctFZ", + "moduleName": "Amplify", + "static": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)OS_dispatch_source", + "location": "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk\/usr\/include\/dispatch\/source.h:58:1", + "moduleName": "Dispatch", + "isOpen": true, + "objc_name": "OS_dispatch_source", + "declAttributes": [ + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)OS_dispatch_object", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "Dispatch.DispatchObject", + "os_object.OS_object", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "NSObjectProtocol", + "printedName": "NSObjectProtocol", + "usr": "c:objc(pl)NSObject" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DispatchSourceWrite", + "printedName": "DispatchSourceWrite", + "usr": "c:objc(pl)OS_dispatch_source_write" + }, + { + "kind": "Conformance", + "name": "DispatchSourceProtocol", + "printedName": "DispatchSourceProtocol", + "usr": "c:objc(pl)OS_dispatch_source" + }, + { + "kind": "Conformance", + "name": "DispatchSourceFileSystemObject", + "printedName": "DispatchSourceFileSystemObject", + "usr": "c:objc(pl)OS_dispatch_source_vnode" + }, + { + "kind": "Conformance", + "name": "DispatchSourceTimer", + "printedName": "DispatchSourceTimer", + "usr": "c:objc(pl)OS_dispatch_source_timer" + }, + { + "kind": "Conformance", + "name": "DispatchSourceSignal", + "printedName": "DispatchSourceSignal", + "usr": "c:objc(pl)OS_dispatch_source_signal" + }, + { + "kind": "Conformance", + "name": "DispatchSourceRead", + "printedName": "DispatchSourceRead", + "usr": "c:objc(pl)OS_dispatch_source_read" + }, + { + "kind": "Conformance", + "name": "DispatchSourceProcess", + "printedName": "DispatchSourceProcess", + "usr": "c:objc(pl)OS_dispatch_source_proc" + }, + { + "kind": "Conformance", + "name": "DispatchSourceMemoryPressure", + "printedName": "DispatchSourceMemoryPressure", + "usr": "c:objc(pl)OS_dispatch_source_memorypressure" + }, + { + "kind": "Conformance", + "name": "DispatchSourceMachReceive", + "printedName": "DispatchSourceMachReceive", + "usr": "c:objc(pl)OS_dispatch_source_mach_recv" + }, + { + "kind": "Conformance", + "name": "DispatchSourceMachSend", + "printedName": "DispatchSourceMachSend", + "usr": "c:objc(pl)OS_dispatch_source_mach_send" + }, + { + "kind": "Conformance", + "name": "DispatchSourceUserDataReplace", + "printedName": "DispatchSourceUserDataReplace", + "usr": "c:objc(pl)OS_dispatch_source_data_replace" + }, + { + "kind": "Conformance", + "name": "DispatchSourceUserDataOr", + "printedName": "DispatchSourceUserDataOr", + "usr": "c:objc(pl)OS_dispatch_source_data_or" + }, + { + "kind": "Conformance", + "name": "DispatchSourceUserDataAdd", + "printedName": "DispatchSourceUserDataAdd", + "usr": "c:objc(pl)OS_dispatch_source_data_add" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Encodable", + "printedName": "Encodable", + "children": [ + { + "kind": "Function", + "name": "eraseToAnyEncodable", + "printedName": "eraseToAnyEncodable()", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyEncodable", + "printedName": "Amplify.AnyEncodable", + "usr": "s:7Amplify12AnyEncodableV" + } + ], + "declKind": "Func", + "usr": "s:SE7AmplifyE19eraseToAnyEncodableAA0dE0VyF", + "mangledName": "$sSE7AmplifyE19eraseToAnyEncodableAA0dE0VyF", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SE", + "mangledName": "$sSE", + "moduleName": "Swift", + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "NSLocking", + "printedName": "NSLocking", + "children": [ + { + "kind": "Function", + "name": "execute", + "printedName": "execute(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> Swift.Void", + "children": [ + { + "kind": "TypeNameAlias", + "name": "Void", + "printedName": "Swift.Void", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:So9NSLockingP7AmplifyE7executeyyyyKXEKF", + "mangledName": "$sSo9NSLockingP7AmplifyE7executeyyyyKXEKF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> Output", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:So9NSLockingP7AmplifyE7executeyqd__qd__yKXEKlF", + "mangledName": "$sSo9NSLockingP7AmplifyE7executeyqd__qd__yKXEKlF", + "moduleName": "Amplify", + "genericSig": "", + "declAttributes": [ + "Rethrows" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:objc(pl)NSLocking", + "location": "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk\/System\/Library\/Frameworks\/Foundation.framework\/Headers\/NSLock.h:11:11", + "moduleName": "Foundation", + "genericSig": "", + "objc_name": "NSLocking", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "isExternal": true + }, + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "isOperationCancelledError", + "printedName": "isOperationCancelledError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:s5ErrorP7AmplifyE020isOperationCancelledA0Sbvp", + "mangledName": "$ss5ErrorP7AmplifyE020isOperationCancelledA0Sbvp", + "moduleName": "Amplify", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:s5ErrorP7AmplifyE020isOperationCancelledA0Sbvg", + "mangledName": "$ss5ErrorP7AmplifyE020isOperationCancelledA0Sbvg", + "moduleName": "Amplify", + "genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP", + "moduleName": "Swift", + "genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "Amplify", + "-o", + "\/var\/folders\/xz\/lz5thm6s3vb1vdkk77vmkgbr0000gn\/T\/tmp.bR6aszViJ0\/Amplify.json", + "-I", + ".build\/debug", + "-sdk-version", + "23A334" + ] + } +} \ No newline at end of file diff --git a/api-dump/CoreMLPredictionsPlugin.json b/api-dump/CoreMLPredictionsPlugin.json new file mode 100644 index 0000000000..0509e3b613 --- /dev/null +++ b/api-dump/CoreMLPredictionsPlugin.json @@ -0,0 +1,447 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Amplify", + "printedName": "Amplify", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "CoreGraphics", + "printedName": "CoreGraphics", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "NaturalLanguage", + "printedName": "NaturalLanguage", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "Speech", + "printedName": "Speech", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "SwiftOnoneSupport", + "printedName": "SwiftOnoneSupport", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "Vision", + "printedName": "Vision", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "_Concurrency", + "printedName": "_Concurrency", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "_StringProcessing", + "printedName": "_StringProcessing", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "Import", + "name": "_SwiftConcurrencyShims", + "printedName": "_SwiftConcurrencyShims", + "declKind": "Import", + "moduleName": "CoreMLPredictionsPlugin" + }, + { + "kind": "TypeDecl", + "name": "CoreMLPredictionsPlugin", + "printedName": "CoreMLPredictionsPlugin", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Var", + "usr": "s:23CoreMLPredictionsPluginAAC3keySSvp", + "mangledName": "$s23CoreMLPredictionsPluginAAC3keySSvp", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNameAlias", + "name": "PluginKey", + "printedName": "Amplify.PluginKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:23CoreMLPredictionsPluginAAC3keySSvg", + "mangledName": "$s23CoreMLPredictionsPluginAAC3keySSvg", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreMLPredictionsPlugin", + "printedName": "CoreMLPredictionsPlugin.CoreMLPredictionsPlugin", + "usr": "s:23CoreMLPredictionsPluginAAC" + } + ], + "declKind": "Constructor", + "usr": "s:23CoreMLPredictionsPluginAACABycfc", + "mangledName": "$s23CoreMLPredictionsPluginAACABycfc", + "moduleName": "CoreMLPredictionsPlugin", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "identify", + "printedName": "identify(_:in:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Identify.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO8IdentifyO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Identify.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Identify.Options", + "usr": "s:7Amplify11PredictionsO8IdentifyO7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23CoreMLPredictionsPluginAAC8identify_2in7optionsx7Amplify11PredictionsO8IdentifyO7RequestVy__xG_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "mangledName": "$s23CoreMLPredictionsPluginAAC8identify_2in7optionsx7Amplify11PredictionsO8IdentifyO7RequestVy__xG_10Foundation3URLVAJ7OptionsVSgtYaKlF", + "moduleName": "CoreMLPredictionsPlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "convert", + "printedName": "convert(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + }, + { + "kind": "TypeNominal", + "name": "Request", + "printedName": "Amplify.Predictions.Convert.Request", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Input" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Output" + } + ], + "usr": "s:7Amplify11PredictionsO7ConvertO7RequestV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "Options" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23CoreMLPredictionsPluginAAC7convert_7optionsq0_7Amplify11PredictionsO7ConvertO7RequestVy__xq_q0_G_q_SgtYaKr1_lF", + "mangledName": "$s23CoreMLPredictionsPluginAAC7convert_7optionsq0_7Amplify11PredictionsO7ConvertO7RequestVy__xq_q0_G_q_SgtYaKr1_lF", + "moduleName": "CoreMLPredictionsPlugin", + "genericSig": "", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interpret", + "printedName": "interpret(text:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Amplify.Predictions.Interpret.Result", + "usr": "s:7Amplify11PredictionsO9InterpretO6ResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Amplify.Predictions.Interpret.Options?", + "children": [ + { + "kind": "TypeNominal", + "name": "Options", + "printedName": "Amplify.Predictions.Interpret.Options", + "usr": "s:7Amplify11PredictionsO9InterpretO7OptionsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23CoreMLPredictionsPluginAAC9interpret4text7options7Amplify11PredictionsO9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "mangledName": "$s23CoreMLPredictionsPluginAAC9interpret4text7options7Amplify11PredictionsO9InterpretO6ResultVSS_AJ7OptionsVSgtYaKF", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(using:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:23CoreMLPredictionsPluginAAC9configure5usingyypSg_tKF", + "mangledName": "$s23CoreMLPredictionsPluginAAC9configure5usingyypSg_tKF", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reset", + "printedName": "reset()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:23CoreMLPredictionsPluginAAC5resetyyYaF", + "mangledName": "$s23CoreMLPredictionsPluginAAC5resetyyYaF", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:23CoreMLPredictionsPluginAAC", + "mangledName": "$s23CoreMLPredictionsPluginAAC", + "moduleName": "CoreMLPredictionsPlugin", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "PredictionsCategoryPlugin", + "printedName": "PredictionsCategoryPlugin", + "usr": "s:7Amplify25PredictionsCategoryPluginP", + "mangledName": "$s7Amplify25PredictionsCategoryPluginP" + }, + { + "kind": "Conformance", + "name": "Plugin", + "printedName": "Plugin", + "usr": "s:7Amplify6PluginP", + "mangledName": "$s7Amplify6PluginP" + }, + { + "kind": "Conformance", + "name": "PredictionsCategoryBehavior", + "printedName": "PredictionsCategoryBehavior", + "usr": "s:7Amplify27PredictionsCategoryBehaviorP", + "mangledName": "$s7Amplify27PredictionsCategoryBehaviorP" + }, + { + "kind": "Conformance", + "name": "CategoryTypeable", + "printedName": "CategoryTypeable", + "usr": "s:7Amplify16CategoryTypeableP", + "mangledName": "$s7Amplify16CategoryTypeableP" + }, + { + "kind": "Conformance", + "name": "Resettable", + "printedName": "Resettable", + "usr": "s:7Amplify10ResettableP", + "mangledName": "$s7Amplify10ResettableP" + }, + { + "kind": "Conformance", + "name": "AmplifyVersionable", + "printedName": "AmplifyVersionable", + "usr": "s:7Amplify0A11VersionableP", + "mangledName": "$s7Amplify0A11VersionableP" + } + ] + } + ], + "json_format_version": 8, + "tool_arguments": [ + "-sdk", + "\/Applications\/Xcode_15.0.1.app\/Contents\/Developer\/Platforms\/MacOSX.platform\/Developer\/SDKs\/MacOSX.sdk", + "-dump-sdk", + "-module", + "CoreMLPredictionsPlugin", + "-o", + "\/var\/folders\/xz\/lz5thm6s3vb1vdkk77vmkgbr0000gn\/T\/tmp.bR6aszViJ0\/CoreMLPredictionsPlugin.json", + "-I", + ".build\/debug", + "-sdk-version", + "23A334" + ] + } +} \ No newline at end of file From bd5e6bfc90b969e91186378004f40fa6c5d41ab5 Mon Sep 17 00:00:00 2001 From: Sebastian Villena <97059974+ruisebas@users.noreply.github.com> Date: Thu, 18 Jul 2024 13:42:23 -0400 Subject: [PATCH 2/2] feat(Storage): Adding subpath strategy to the List operation (#3775) --- .../Request/StorageListRequest.swift | 37 +++++++++ .../Storage/Result/StorageListResult.swift | 14 +++- .../AWSS3StorageService+ListBehavior.swift | 17 +++- .../Internal/SubpathStategy+Delimiter.swift | 20 +++++ .../Tasks/AWSS3StorageListObjectsTask.swift | 12 ++- ...AWSS3StoragePluginAsyncBehaviorTests.swift | 18 +++++ .../AWSS3StorageListObjectsTaskTests.swift | 78 +++++++++++++++++++ ...agePluginListObjectsIntegrationTests.swift | 63 +++++++++++++++ 8 files changed, 253 insertions(+), 6 deletions(-) create mode 100644 AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Support/Internal/SubpathStategy+Delimiter.swift diff --git a/Amplify/Categories/Storage/Operation/Request/StorageListRequest.swift b/Amplify/Categories/Storage/Operation/Request/StorageListRequest.swift index 6cc7dbb496..71119f71f8 100644 --- a/Amplify/Categories/Storage/Operation/Request/StorageListRequest.swift +++ b/Amplify/Categories/Storage/Operation/Request/StorageListRequest.swift @@ -60,6 +60,11 @@ public extension StorageListRequest { @available(*, deprecated, message: "Use `path` in Storage API instead of `Options`") public let path: String? + /// The strategy to use when listing contents from subpaths. Defaults to [`.include`](x-source-tag://SubpathStrategy.include) + /// + /// - Tag: StorageListRequestOptions.subpathStrategy + public let subpathStrategy: SubpathStrategy + /// Number between 1 and 1,000 that indicates the limit of how many entries to fetch when /// retreiving file lists from the server. /// @@ -94,15 +99,47 @@ public extension StorageListRequest { public init(accessLevel: StorageAccessLevel = .guest, targetIdentityId: String? = nil, path: String? = nil, + subpathStrategy: SubpathStrategy = .include, pageSize: UInt = 1000, nextToken: String? = nil, pluginOptions: Any? = nil) { self.accessLevel = accessLevel self.targetIdentityId = targetIdentityId self.path = path + self.subpathStrategy = subpathStrategy self.pageSize = pageSize self.nextToken = nextToken self.pluginOptions = pluginOptions } } } + +public extension StorageListRequest.Options { + /// Represents the strategy used when listing contents from subpaths relative to the given path. + /// + /// - Tag: StorageListRequestOptions.SubpathStrategy + enum SubpathStrategy { + /// Items from nested subpaths are included in the results + /// + /// - Tag: SubpathStrategy.include + case include + + /// Items from nested subpaths are not included in the results. Their subpaths are instead grouped under [`StorageListResult.excludedSubpaths`](StorageListResult.excludedSubpaths). + /// + /// - Parameter delimitedBy: The delimiter used to determine subpaths. Defaults to `"/"` + /// + /// - SeeAlso: [`StorageListResult.excludedSubpaths`](x-source-tag://StorageListResult.excludedSubpaths) + /// + /// - Tag: SubpathStrategy.excludeWithDelimiter + case exclude(delimitedBy: String = "/") + + /// Items from nested subpaths are not included in the results. Their subpaths are instead grouped under [`StorageListResult.excludedSubpaths`](StorageListResult.excludedSubpaths). + /// + /// - SeeAlso: [`StorageListResult.excludedSubpaths`](x-source-tag://StorageListResult.excludedSubpaths) + /// + /// - Tag: SubpathStrategy.exclude + public static var exclude: SubpathStrategy { + return .exclude() + } + } +} diff --git a/Amplify/Categories/Storage/Result/StorageListResult.swift b/Amplify/Categories/Storage/Result/StorageListResult.swift index 057b9e177a..1adee4ea08 100644 --- a/Amplify/Categories/Storage/Result/StorageListResult.swift +++ b/Amplify/Categories/Storage/Result/StorageListResult.swift @@ -17,8 +17,13 @@ public struct StorageListResult { /// [StorageCategoryBehavior.list](x-source-tag://StorageCategoryBehavior.list). /// /// - Tag: StorageListResult.init - public init(items: [Item], nextToken: String? = nil) { + public init( + items: [Item], + excludedSubpaths: [String] = [], + nextToken: String? = nil + ) { self.items = items + self.excludedSubpaths = excludedSubpaths self.nextToken = nextToken } @@ -27,6 +32,13 @@ public struct StorageListResult { /// - Tag: StorageListResult.items public var items: [Item] + + /// Array of excluded subpaths in the Result. + /// This field is only populated when [`StorageListRequest.Options.subpathStrategy`](x-source-tag://StorageListRequestOptions.subpathStragegy) is set to [`.exclude()`](x-source-tag://SubpathStrategy.exclude). + /// + /// - Tag: StorageListResult.excludedSubpaths + public var excludedSubpaths: [String] + /// Opaque string indicating the page offset at which to resume a listing. This value is usually copied to /// [StorageListRequestOptions.nextToken](x-source-tag://StorageListRequestOptions.nextToken). /// diff --git a/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Service/Storage/AWSS3StorageService+ListBehavior.swift b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Service/Storage/AWSS3StorageService+ListBehavior.swift index 817822f346..4498b5867f 100644 --- a/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Service/Storage/AWSS3StorageService+ListBehavior.swift +++ b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Service/Storage/AWSS3StorageService+ListBehavior.swift @@ -31,7 +31,7 @@ extension AWSS3StorageService { } let input = ListObjectsV2Input(bucket: bucket, continuationToken: options.nextToken, - delimiter: nil, + delimiter: options.subpathStrategy.delimiter, maxKeys: Int(options.pageSize), prefix: finalPrefix, startAfter: nil) @@ -41,7 +41,20 @@ extension AWSS3StorageService { let items = try contents.map { try StorageListResult.Item(s3Object: $0, prefix: prefix) } - return StorageListResult(items: items, nextToken: response.nextContinuationToken) + + let commonPrefixes = response.commonPrefixes ?? [] + let excludedSubpaths: [String] = commonPrefixes.compactMap { + guard let commonPrefix = $0.prefix else { + return nil + } + return String(commonPrefix.dropFirst(prefix.count)) + } + + return StorageListResult( + items: items, + excludedSubpaths: excludedSubpaths, + nextToken: response.nextContinuationToken + ) } catch let error as StorageErrorConvertible { throw error.storageError } catch { diff --git a/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Support/Internal/SubpathStategy+Delimiter.swift b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Support/Internal/SubpathStategy+Delimiter.swift new file mode 100644 index 0000000000..5dbf3c27a6 --- /dev/null +++ b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Support/Internal/SubpathStategy+Delimiter.swift @@ -0,0 +1,20 @@ +// +// Copyright Amazon.com Inc. or its affiliates. +// All Rights Reserved. +// +// SPDX-License-Identifier: Apache-2.0 +// + +import Amplify + +extension StorageListRequest.Options.SubpathStrategy { + /// The delimiter for this strategy + var delimiter: String? { + switch self { + case .exclude(let delimiter): + return delimiter + case .include: + return nil + } + } +} diff --git a/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Tasks/AWSS3StorageListObjectsTask.swift b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Tasks/AWSS3StorageListObjectsTask.swift index 2baadcf539..ed01a7a1bb 100644 --- a/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Tasks/AWSS3StorageListObjectsTask.swift +++ b/AmplifyPlugins/Storage/Sources/AWSS3StoragePlugin/Tasks/AWSS3StorageListObjectsTask.swift @@ -43,7 +43,7 @@ class AWSS3StorageListObjectsTask: StorageListObjectsTask, DefaultLogger { } let input = ListObjectsV2Input(bucket: storageBehaviour.bucket, continuationToken: request.options.nextToken, - delimiter: nil, + delimiter: request.options.subpathStrategy.delimiter, maxKeys: Int(request.options.pageSize), prefix: path, startAfter: nil) @@ -57,9 +57,15 @@ class AWSS3StorageListObjectsTask: StorageListObjectsTask, DefaultLogger { return StorageListResult.Item( path: path, eTag: s3Object.eTag, - lastModified: s3Object.lastModified) + lastModified: s3Object.lastModified + ) } - return StorageListResult(items: items, nextToken: response.nextContinuationToken) + let commonPrefixes = response.commonPrefixes ?? [] + return StorageListResult( + items: items, + excludedSubpaths: commonPrefixes.compactMap { $0.prefix }, + nextToken: response.nextContinuationToken + ) } catch let error as StorageErrorConvertible { throw error.storageError } catch { diff --git a/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/AWSS3StoragePluginAsyncBehaviorTests.swift b/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/AWSS3StoragePluginAsyncBehaviorTests.swift index 001883ce09..6edc1cce12 100644 --- a/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/AWSS3StoragePluginAsyncBehaviorTests.swift +++ b/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/AWSS3StoragePluginAsyncBehaviorTests.swift @@ -114,4 +114,22 @@ class AWSS3StoragePluginAsyncBehaviorTests: XCTestCase { XCTAssertEqual(1, storageService.interactions.count) } + /// - Given: A plugin configured with a mocked service + /// - When: The list API is invoked with subpathStrategy set to .exclude + /// - Then: The list of excluded subpaths and the list of items should be populated + func testPluginListWithCommonPrefixesAsync() async throws { + storageService.listHandler = { (_, _) in + return .init( + items: [.init(path: "path")], + excludedSubpaths: ["subpath1", "subpath2"] + ) + } + let output = try await storagePlugin.list(options: .init(subpathStrategy: .exclude)) + XCTAssertEqual(1, output.items.count, String(describing: output)) + XCTAssertEqual("path", output.items.first?.path) + XCTAssertEqual(2, output.excludedSubpaths.count) + XCTAssertEqual("subpath1", output.excludedSubpaths[0]) + XCTAssertEqual("subpath2", output.excludedSubpaths[1]) + XCTAssertEqual(1, storageService.interactions.count) + } } diff --git a/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/Tasks/AWSS3StorageListObjectsTaskTests.swift b/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/Tasks/AWSS3StorageListObjectsTaskTests.swift index 922f29974c..10d059d368 100644 --- a/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/Tasks/AWSS3StorageListObjectsTaskTests.swift +++ b/AmplifyPlugins/Storage/Tests/AWSS3StoragePluginTests/Tasks/AWSS3StorageListObjectsTaskTests.swift @@ -38,6 +38,7 @@ class AWSS3StorageListObjectsTaskTests: XCTestCase { storageBehaviour: serviceMock) let value = try await task.value XCTAssertEqual(value.items.count, 2) + XCTAssertTrue(value.excludedSubpaths.isEmpty) XCTAssertEqual(value.nextToken, "continuationToken") XCTAssertEqual(value.items[0].eTag, "tag") XCTAssertEqual(value.items[0].key, "key") @@ -130,4 +131,81 @@ class AWSS3StorageListObjectsTaskTests: XCTestCase { XCTAssertEqual(field, "path", "Field in error should be `path`") } } + + /// - Given: A configured Storage List Objects Task with mocked service + /// - When: AWSS3StorageListObjectsTask value is invoked with subpathStrategy set to .exclude + /// - Then: The delimiter should be set, the list of excluded subpaths and the list of items should be populated + func testListObjectsTask_withSubpathStrategyExclude_shouldSucceed() async throws { + let serviceMock = MockAWSS3StorageService() + let client = serviceMock.client as! MockS3Client + client.listObjectsV2Handler = { input in + XCTAssertNotNil(input.delimiter, "Expected delimiter to be set") + return .init( + commonPrefixes: [ + .init(prefix: "path/subpath1/"), + .init(prefix: "path/subpath2/") + ], + contents: [ + .init(eTag: "tag", key: "path/result", lastModified: Date()) + ], + nextContinuationToken: "continuationToken" + ) + } + + let request = StorageListRequest( + path: StringStoragePath.fromString("path/"), + options: .init( + subpathStrategy: .exclude + ) + ) + let task = AWSS3StorageListObjectsTask( + request, + storageConfiguration: AWSS3StoragePluginConfiguration(), + storageBehaviour: serviceMock + ) + let value = try await task.value + XCTAssertEqual(value.items.count, 1) + XCTAssertEqual(value.items[0].eTag, "tag") + XCTAssertEqual(value.items[0].path, "path/result") + XCTAssertNotNil(value.items[0].lastModified) + XCTAssertEqual(value.excludedSubpaths.count, 2) + XCTAssertEqual(value.excludedSubpaths[0], "path/subpath1/") + XCTAssertEqual(value.excludedSubpaths[1], "path/subpath2/") + XCTAssertEqual(value.nextToken, "continuationToken") + } + + /// - Given: A configured Storage List Objects Task with mocked service + /// - When: AWSS3StorageListObjectsTask value is invoked with subpathStrategy set to .include + /// - Then: The delimiter should not be set, the list of excluded subpaths should be empty and the list of items should be populated + func testListObjectsTask_withSubpathStrategyInclude_shouldSucceed() async throws { + let serviceMock = MockAWSS3StorageService() + let client = serviceMock.client as! MockS3Client + client.listObjectsV2Handler = { input in + XCTAssertNil(input.delimiter, "Expected delimiter to be nil") + return .init( + contents: [ + .init(eTag: "tag", key: "path", lastModified: Date()), + ], + nextContinuationToken: "continuationToken" + ) + } + + let request = StorageListRequest( + path: StringStoragePath.fromString("path"), + options: .init( + subpathStrategy: .include + ) + ) + let task = AWSS3StorageListObjectsTask( + request, + storageConfiguration: AWSS3StoragePluginConfiguration(), + storageBehaviour: serviceMock) + let value = try await task.value + XCTAssertEqual(value.items.count, 1) + XCTAssertEqual(value.items[0].eTag, "tag") + XCTAssertEqual(value.items[0].path, "path") + XCTAssertNotNil(value.items[0].lastModified) + XCTAssertTrue(value.excludedSubpaths.isEmpty) + XCTAssertEqual(value.nextToken, "continuationToken") + } } diff --git a/AmplifyPlugins/Storage/Tests/StorageHostApp/AWSS3StoragePluginIntegrationTests/AWSS3StoragePluginListObjectsIntegrationTests.swift b/AmplifyPlugins/Storage/Tests/StorageHostApp/AWSS3StoragePluginIntegrationTests/AWSS3StoragePluginListObjectsIntegrationTests.swift index 83ad2ce017..fc806ffc91 100644 --- a/AmplifyPlugins/Storage/Tests/StorageHostApp/AWSS3StoragePluginIntegrationTests/AWSS3StoragePluginListObjectsIntegrationTests.swift +++ b/AmplifyPlugins/Storage/Tests/StorageHostApp/AWSS3StoragePluginIntegrationTests/AWSS3StoragePluginListObjectsIntegrationTests.swift @@ -189,4 +189,67 @@ class AWSS3StoragePluginListObjectsIntegrationTests: AWSS3StoragePluginTestBase } } + /// Given: Multiple objects uploaded to a public path + /// When: `Amplify.Storage.list` is invoked with `subpathStrategy: .exclude` + /// Then: The API should execute successfully and list objects for the given path, without including contens from its subpaths + func testList_withSubpathStrategyExclude_shouldExcludeSubpaths() async throws { + let path = UUID().uuidString + let data = Data(path.utf8) + let uniqueStringPath = "public/\(path)" + + // Upload data + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "/test1"), data: data, options: nil).value + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "/test2"), data: data, options: nil).value + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "/subpath1/test"), data: data, options: nil).value + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "/subpath2/test"), data: data, options: nil).value + + let result = try await Amplify.Storage.list( + path: .fromString("\(uniqueStringPath)/"), + options: .init( + subpathStrategy: .exclude + ) + ) + + // Validate result + XCTAssertEqual(result.items.count, 2) + XCTAssertTrue(result.items.contains(where: { $0.path.hasPrefix("\(uniqueStringPath)/test") }), "Unexpected item") + XCTAssertEqual(result.excludedSubpaths.count, 2) + XCTAssertTrue(result.excludedSubpaths.contains(where: { $0.hasPrefix("\(uniqueStringPath)/subpath") }), "Unexpected excluded subpath") + + // Clean up + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "/test1")) + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "/test2")) + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "/subpath1/test")) + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "/subpath2/test")) + } + + /// Given: Multiple objects uploaded to a public path + /// When: `Amplify.Storage.list` is invoked with `subpathStrategy: .exclude(delimitedBy:)` + /// Then: The API should execute successfully and list objects for the given path, without including contents from any subpath that is determined by the given delimiter + func testList_withSubpathStrategyExclude_andCustomDelimiter_shouldExcludeSubpaths() async throws { + let path = UUID().uuidString + let data = Data(path.utf8) + let uniqueStringPath = "public/\(path)" + + // Upload data + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "-test"), data: data, options: nil).value + _ = try await Amplify.Storage.uploadData(path: .fromString(uniqueStringPath + "-subpath-test"), data: data, options: nil).value + + let result = try await Amplify.Storage.list( + path: .fromString("\(uniqueStringPath)-"), + options: .init( + subpathStrategy: .exclude(delimitedBy: "-") + ) + ) + + // Validate result + XCTAssertEqual(result.items.count, 1) + XCTAssertEqual(result.items.first?.path, "\(uniqueStringPath)-test") + XCTAssertEqual(result.excludedSubpaths.count, 1) + XCTAssertEqual(result.excludedSubpaths.first, "\(uniqueStringPath)-subpath-") + + // Clean up + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "-test")) + _ = try await Amplify.Storage.remove(path: .fromString(uniqueStringPath + "-subpath-test")) + } }