diff --git a/.gitignore b/.gitignore index 708d4472..e1a8ea33 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ sandbox .env node_modules -docs/vitepress/cache \ No newline at end of file +docs/.vitepress/cache \ No newline at end of file diff --git a/README.md b/README.md index 18e23351..4893047b 120000 --- a/README.md +++ b/README.md @@ -1 +1 @@ -packages/linejs/README.md \ No newline at end of file +packages/linejs/README.md diff --git a/deno.json b/deno.json index cf831740..6134d6cd 100644 --- a/deno.json +++ b/deno.json @@ -4,7 +4,8 @@ "singleQuote": false, "useTabs": true, "exclude": [ - "./docs/" + "./docs/docs/", + "./docs/ja/" ] }, "imports": { diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index b2959072..5529ef8b 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -9,42 +9,128 @@ export default defineConfig({ sitemap: { hostname: "https://linejs.evex.land", }, + locales: { + root: { + label: "English", + lang: "en", + link: "/", + themeConfig: { + nav: [ + { text: "Home", link: "/" }, + { text: "Docs", link: "/docs/start" }, + { + text: "Examples", + link: "https://github.com/evex-dev/linejs/tree/main/examples", + }, + ], + }, + }, + ja: { + label: "日本語", + lang: "ja", + link: "/ja", + themeConfig: { + nav: [ + { text: "ホーム", link: "/ja/" }, + { text: "ドキュメント", link: "/ja/docs/start" }, + { + text: "サンプル", + link: "https://github.com/evex-dev/linejs/tree/main/examples", + }, + ], + docFooter: { + prev: "前のページ", + next: "次のページ", + }, + darkModeSwitchLabel: "切り替え", + darkModeSwitchTitle: "ダークモードにする", + lightModeSwitchTitle: "ライトモードにする", + sidebarMenuLabel: "メニュー", + langMenuLabel: "言語を選択", + outlineTitle: "ページ内", + returnToTopLabel: "トップに戻る", + skipToContentLabel: "コンテンツをスキップ", + }, + }, + }, themeConfig: { // https://vitepress.dev/reference/default-theme-config siteTitle: "LINEJS Docs", search: { provider: "local", - }, - - nav: [ - { text: "Home", link: "/" }, - { text: "Docs", link: "/docs/start" }, - { - text: "Examples", - link: "https://github.com/evex-dev/linejs/tree/main/examples", + options: { + locales: { + ja: { + translations: { + button: { + buttonText: "検索", + buttonAriaLabel: "検索", + }, + modal: { + displayDetails: "詳細を表示", + resetButtonTitle: "検索をリセット", + backButtonTitle: "検索を閉じる", + noResultsText: "結果が見つかりません", + footer: { + selectText: "決定", + selectKeyAriaLabel: "入力", + navigateText: "移動", + navigateUpKeyAriaLabel: "上矢印", + navigateDownKeyAriaLabel: "下矢印", + closeText: "閉じる", + closeKeyAriaLabel: "esc", + }, + }, + }, + }, + }, }, - ], - - sidebar: [ - { - text: "Docs", - items: [ - { text: "Getting Started", link: "/docs/start" }, - { text: "Next Steps", link: "/docs/start-2" }, - { text: "Message Event", link: "/docs/message-event" }, - { text: "Client Options", link: "/docs/client-options" }, - // { text: "Utils", link: "/docs/utils" }, - { text: "Client Methods", link: "/docs/methods" }, - ], - }, - { - text: "Guides", - items: [ - { text: "Authors", link: "/docs/authors" }, - { text: "Question", link: "/docs/question" }, - ], - }, - ], + }, + sidebar: { + "/docs/": [ + { + text: "Docs", + items: [ + { text: "Getting Started", link: "/docs/start" }, + { text: "Next Steps", link: "/docs/start-2" }, + { text: "Message Event", link: "/docs/message-event" }, + { text: "Client Options", link: "/docs/client-options" }, + // { text: "Utils", link: "/docs/utils" }, + { text: "Client Methods", link: "/docs/methods" }, + ], + }, + { + text: "Guides", + items: [ + { text: "Authors", link: "/docs/authors" }, + { text: "Question", link: "/docs/question" }, + ], + }, + ], + "/ja/docs/": [ + { + text: "ドキュメント", + items: [ + { text: "はじめに", link: "/ja/docs/start" }, + { text: "次のステップ", link: "/ja/docs/start-2" }, + { text: "メッセージイベント", link: "/ja/docs/message-event" }, + { + text: "クライアントのオプション", + link: "/ja/docs/client-options", + }, + // { text: "ユーティリティ", link: "/ja/docs/utils" }, + { text: "メソッド", link: "/ja/docs/methods" }, + ], + }, + { + text: "ガイド", + items: [ + { text: "作成者", link: "/ja/docs/authors" }, + { text: "お問い合わせ", link: "/ja/docs/question" }, + ], + }, + ], + }, editLink: { pattern: "https://github.com/evex-dev/linejs/edit/main/docs/:path", diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css index e9b8b383..a6adad35 100644 --- a/docs/.vitepress/theme/style.css +++ b/docs/.vitepress/theme/style.css @@ -8,7 +8,7 @@ * * Each colors have exact same color scale system with 3 levels of solid * colors with different brightness, and 1 soft color. - * + * * - `XXX-1`: The most solid color used mainly for colored text. It must * satisfy the contrast ratio against when used on top of `XXX-soft`. * @@ -43,31 +43,31 @@ * in custom container, badges, etc. * -------------------------------------------------------------------------- */ - :root { - --vp-c-default-1: var(--vp-c-gray-1); - --vp-c-default-2: var(--vp-c-gray-2); - --vp-c-default-3: var(--vp-c-gray-3); - --vp-c-default-soft: var(--vp-c-gray-soft); - - --vp-c-brand-1: var(--vp-c-indigo-1); - --vp-c-brand-2: var(--vp-c-indigo-2); - --vp-c-brand-3: var(--vp-c-indigo-3); - --vp-c-brand-soft: var(--vp-c-indigo-soft); - - --vp-c-tip-1: var(--vp-c-brand-1); - --vp-c-tip-2: var(--vp-c-brand-2); - --vp-c-tip-3: var(--vp-c-brand-3); - --vp-c-tip-soft: var(--vp-c-brand-soft); - - --vp-c-warning-1: var(--vp-c-yellow-1); - --vp-c-warning-2: var(--vp-c-yellow-2); - --vp-c-warning-3: var(--vp-c-yellow-3); - --vp-c-warning-soft: var(--vp-c-yellow-soft); - - --vp-c-danger-1: var(--vp-c-red-1); - --vp-c-danger-2: var(--vp-c-red-2); - --vp-c-danger-3: var(--vp-c-red-3); - --vp-c-danger-soft: var(--vp-c-red-soft); +:root { + --vp-c-default-1: var(--vp-c-gray-1); + --vp-c-default-2: var(--vp-c-gray-2); + --vp-c-default-3: var(--vp-c-gray-3); + --vp-c-default-soft: var(--vp-c-gray-soft); + + --vp-c-brand-1: var(--vp-c-indigo-1); + --vp-c-brand-2: var(--vp-c-indigo-2); + --vp-c-brand-3: var(--vp-c-indigo-3); + --vp-c-brand-soft: var(--vp-c-indigo-soft); + + --vp-c-tip-1: var(--vp-c-brand-1); + --vp-c-tip-2: var(--vp-c-brand-2); + --vp-c-tip-3: var(--vp-c-brand-3); + --vp-c-tip-soft: var(--vp-c-brand-soft); + + --vp-c-warning-1: var(--vp-c-yellow-1); + --vp-c-warning-2: var(--vp-c-yellow-2); + --vp-c-warning-3: var(--vp-c-yellow-3); + --vp-c-warning-soft: var(--vp-c-yellow-soft); + + --vp-c-danger-1: var(--vp-c-red-1); + --vp-c-danger-2: var(--vp-c-red-2); + --vp-c-danger-3: var(--vp-c-red-3); + --vp-c-danger-soft: var(--vp-c-red-soft); } /** @@ -75,15 +75,15 @@ * -------------------------------------------------------------------------- */ :root { - --vp-button-brand-border: transparent; - --vp-button-brand-text: var(--vp-c-white); - --vp-button-brand-bg: #006200; - --vp-button-brand-hover-border: transparent; - --vp-button-brand-hover-text: var(--vp-c-white); - --vp-button-brand-hover-bg: #076907; - --vp-button-brand-active-border: transparent; - --vp-button-brand-active-text: var(--vp-c-white); - --vp-button-brand-active-bg: #479947; + --vp-button-brand-border: transparent; + --vp-button-brand-text: var(--vp-c-white); + --vp-button-brand-bg: #006200; + --vp-button-brand-hover-border: transparent; + --vp-button-brand-hover-text: var(--vp-c-white); + --vp-button-brand-hover-bg: #076907; + --vp-button-brand-active-border: transparent; + --vp-button-brand-active-text: var(--vp-c-white); + --vp-button-brand-active-bg: #479947; } /** @@ -91,31 +91,31 @@ * -------------------------------------------------------------------------- */ :root { - --vp-home-hero-name-color: transparent; - --vp-home-hero-name-background: -webkit-linear-gradient( - 120deg, - #41d1ff 30%, - #00B900 - ); - - --vp-home-hero-image-background-image: linear-gradient( - -45deg, - #ffB9ff 50%, - #69dbff 50% - ); - --vp-home-hero-image-filter: blur(45px); + --vp-home-hero-name-color: transparent; + --vp-home-hero-name-background: -webkit-linear-gradient( + 120deg, + #41d1ff 30%, + #00b900 + ); + + --vp-home-hero-image-background-image: linear-gradient( + -45deg, + #ffb9ff 50%, + #69dbff 50% + ); + --vp-home-hero-image-filter: blur(45px); } @media (min-width: 640px) { - :root { - --vp-home-hero-image-filter: blur(56px); - } + :root { + --vp-home-hero-image-filter: blur(56px); + } } @media (min-width: 960px) { - :root { - --vp-home-hero-image-filter: blur(68px); - } + :root { + --vp-home-hero-image-filter: blur(68px); + } } /** @@ -123,10 +123,10 @@ * -------------------------------------------------------------------------- */ :root { - --vp-custom-block-tip-border: transparent; - --vp-custom-block-tip-text: var(--vp-c-text-1); - --vp-custom-block-tip-bg: var(--vp-c-brand-soft); - --vp-custom-block-tip-code-bg: var(--vp-c-brand-soft); + --vp-custom-block-tip-border: transparent; + --vp-custom-block-tip-text: var(--vp-c-text-1); + --vp-custom-block-tip-bg: var(--vp-c-brand-soft); + --vp-custom-block-tip-code-bg: var(--vp-c-brand-soft); } /** @@ -134,6 +134,5 @@ * -------------------------------------------------------------------------- */ .DocSearch { - --docsearch-primary-color: var(--vp-c-brand-1) !important; + --docsearch-primary-color: var(--vp-c-brand-1) !important; } - diff --git a/docs/docs/message-event.md b/docs/docs/message-event.md index 14c91832..25acf5b0 100644 --- a/docs/docs/message-event.md +++ b/docs/docs/message-event.md @@ -3,8 +3,10 @@ The next step is to finally receive the message.\ The atmosphere is becoming more and more like a bot! -:::warning Note, however, that to receive the group's message, the decrypt key -in `FileStorage` or so on, as described in [Start 2](/docs/start-2). ::: +:::warning +however, that to receive the group's message, the decrypt key +in `FileStorage` or so on, as described in [Start 2](/docs/start-2). +::: First, let's create a bot that only receives “!ping” and returns “pong!”. @@ -45,7 +47,7 @@ client.on("message", (message) => { const text = message.text; if (text === "!ping") { - ... + ... } }); ``` @@ -101,5 +103,7 @@ There are many more features! Stay tuned for our next journey. -:::tip If you encounter problems, please refer to [Question](/docs/question), -not only here. ::: +:::tip +If you encounter problems, please refer to [Question](/docs/question), +not only here. +::: diff --git a/docs/docs/start-2.md b/docs/docs/start-2.md index 98c993ac..698392df 100644 --- a/docs/docs/start-2.md +++ b/docs/docs/start-2.md @@ -105,11 +105,13 @@ This concludes our first trip.\ But there is still a journey left to be made.\ Enjoy. -:::tip\ +:::tip If you want to create your own storage such as connecting to the cloud api,\ import `BaseStorage` and extend it to create your own storage. (Please ask for -details.) ::: +details.) +::: -:::info\ +:::info If you want to use v1, please ask for details at -[discord.gg/evex](https://discord.gg/evex). ::: +[discord.gg/evex](https://discord.gg/evex). +::: diff --git a/docs/docs/start.md b/docs/docs/start.md index 410398b9..086f2696 100644 --- a/docs/docs/start.md +++ b/docs/docs/start.md @@ -46,4 +46,5 @@ console.log(chats[0].name) This library is still in its infancy!\ If you find any bugs or missing parts, please let us know on our -server! (Roles will be given to those who suggest bugs and features!) +server! \ +(Roles will be given to those who suggest bugs and features!) diff --git a/docs/docs/utils.md b/docs/docs/utils.md index fc92fb62..d4ab2226 100644 --- a/docs/docs/utils.md +++ b/docs/docs/utils.md @@ -1,13 +1,13 @@ # Utils of LINEJS -LINEJS is not only a self-bot. -From building internal URIs to building OBS, open chat search, regex for picking emid, ticket, and more. -I will explain one by one. +LINEJS is not only a self-bot. \ +From building internal URIs to building OBS, open chat search, regex for picking emid, ticket, and more. +I will explain one by one. ## LINE_OBS -Utils to retrieve images and videos from obs hash. -You can retrieve them as follows +Utils to retrieve images and videos from obs hash. +You can retrieve them as follows ```ts import { LINE_OBS } from "@evex/linejs/utils"; diff --git a/docs/index.md b/docs/index.md index 97951405..92e7f351 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,7 +1,6 @@ --- # https://vitepress.dev/reference/default-theme-home-page layout: home - hero: image: /favicon.png name: "LINEJS Documentation" @@ -12,8 +11,7 @@ hero: link: /docs/start - theme: alt text: Examples - link: https://github.com/evex-dev/linejs - + link: https://github.com/evex-dev/linejs/tree/main/examples features: - title: Works on All Platforms icon: 🌎 @@ -24,4 +22,4 @@ features: - title: Safety Locked icon: 🔒 details: Defaults to safety locked (RateLimit and others). ---- \ No newline at end of file +--- diff --git a/docs/ja/docs/auth.md b/docs/ja/docs/auth.md new file mode 100644 index 00000000..5232a186 --- /dev/null +++ b/docs/ja/docs/auth.md @@ -0,0 +1,49 @@ +# 認証 + +いくつかの方法で認証を受けることができます。 + +## Login + +LINEJSには2つのログイン方法があります。 + +### `loginWithPassword` + +メアドとパスワードが必要です。 + +例: +```ts +import { loginWithPassword } from "@evex/linejs"; + +const client = loginWithPassword({ + email: 'you@example.com', // メアド + password: 'password', // パスワード + onPincodeRequest(pincode) { + console.log('Enter this pincode to your LINE app:', pincode) + } +}) +``` + + +`onPincodeRequest`はPinを受け取ることができます。\ +初回ログイン時、スマホ版のLINEでPinを入力し、e2eeを有効にする必要があります。 + +### `loginWithQR` + +メアドとパスワードは必要ありません。 + +```ts +import { loginWithQR } from '@evex/linejs' + +const client = loginWithQR({ + onReceiveQRURL(url) { + console.log('Access to this URL:', url) + } +}) +``` + +この関数はスマホ版LINEで読み込む為のURLを表示します。\ +LINEJSではQRコードの作成をサポートしていないため、画像として表示したい場合は自分で作成する必要があります。 + +## With authToken + +短時間に何度もログインを試みるとアカウントがBANされる可能性があるため、認証にはauthTokenを使用することをおすすめします。 diff --git a/docs/ja/docs/authors.md b/docs/ja/docs/authors.md new file mode 100644 index 00000000..3eae2c95 --- /dev/null +++ b/docs/ja/docs/authors.md @@ -0,0 +1,13 @@ +# Authors + +**LINEJS**の開発者たち + +## Maintainers + +- Owner & Developer [Piloking](https://github.com/piloking) +- Developer [EdamAme-x](https://github.com/EdamAme-x) + +## Sub-maintainers + +- Developer [MocA-Love](https://github.com/MocA-Love) +- Developer [Hafusun](https://github.com/hafusun) diff --git a/docs/ja/docs/client-options.md b/docs/ja/docs/client-options.md new file mode 100644 index 00000000..e856f01b --- /dev/null +++ b/docs/ja/docs/client-options.md @@ -0,0 +1,64 @@ +# クライアントオプション + +次に、クライアントのオプションについて説明します。 + +```ts +const client = new Client({ + device: "...", + ... +}); +``` + +オプションは数種類あり、**storage for the data**や**OBS Endpoint**、通信用の**Endpoint**、CORSやプロキシのための**customFetch**、レート制限のための**RateLimitter**などがあります。 + +これらを一つずつ説明します。 + +## Storage + +復号キーやキャッシュなどの内部処理のためのストレージです。\ +デフォルトでは`MemoryStorage`が使用され、プログラム停止時は最初からログインする必要があります。 + +`FileStorage`を使用することもできます: + +```ts +import { FileStorage } from "@evex/linejs/storage"; + +const client = new Client({ + device: "IOSIPAD", + storage: new FileStorage("./storage.json"), // ストレージファイルへのパス(秘密ファイル) +}); +``` + +クラウドやデータストレージAPIを使用してストレージに保存したい場合は、`BaseStorage`を拡張して自分の好みに作成できます。 + +## Endpoint + +通常、変更する必要はありませんが、通信のエンドポイントです。 + +プロキシサーバーを試したい場合: + +```ts +const client = new Client({ + endpoint: "legy-jp.line-apps.com", +}); +``` + +## Custom Fetch + +CORS回避やプロキシのためのものです。fetchを置き換える関数を定義します: + +```ts +... + +const client = new Client({ + fetch: async (url, options) => { + return await fetch(url, { + ...options, + ...proxyAgent + }); + } +}); +``` + +オプションの説明は以上です!\ +次のセクションでは、さまざまなメソッドを紹介します。 diff --git a/docs/ja/docs/message-event.md b/docs/ja/docs/message-event.md new file mode 100644 index 00000000..95747a81 --- /dev/null +++ b/docs/ja/docs/message-event.md @@ -0,0 +1,108 @@ +# メッセージイベントの受信 + +次のステップは、メッセージを受信してみましょう。\ +ますますボットらしくなってきましたね! + +:::warning +グループのメッセージを受信するには、`FileStorage`などにある復号キーが必要です。\ +詳細は[こちら](/ja/docs/start-2)を参照してください。 +::: + +「!ping」を受信し「pong!」と返すだけのボットを作成してみましょう。 + +## Chat + +まずは、メッセージを受信してみましょう。 + +```ts +client.on("message", (message) => { + ... +}); + +await client.login({...}) +client.polling(["square","talk"]) +``` + +メッセージを受信し、表示してみます。 + +```ts +client.on("message", (message) => { + const text = message.text; + + console.log(text); +}); +``` + +コンソールに送信されたメッセージが表示されるはずです! + +```console +Hello MaguRo +I love you! :D +``` + +次に、メッセージが「!ping」かどうかを確認しましょう。 + +```ts +client.on("message", (message) => { + const text = message.text; + + if (text === "!ping") { + ... + } +}); +``` + +完璧ですね!今度はリプライをさせてみましょう。 + +リプライをするには`messageId`と`relatedMessageId`を使用しますが、もっと便利な方法があります。 + +```ts +client.on("message", (message) => { + const text = message.text; + + if (text === "!ping") { + message.reply("pong!"); + } +}); +``` + +美しいシンプルなコードの完成です!\ +非同期関数で囲むことで、さらに美しくすることが可能です。 + +```ts +client.on("message", async (message) => { + const text = message.text; + + if (text === "!ping") { + await message.reply("pong!"); + } +}); +``` + +これで完了です!\ +他にも`send`や`reaction`などのメソッドがあります。\ +他の章でこれらのメソッドについて説明します。 + +## Square + +さて、Square(オープンチャット)ではどうすればいいのでしょうか?\ +基本的には同じことです。 + +```ts +client.on("square:message", async (message) => { + const text = message.text; + + if (text === "!ping") { + await message.reply("pong!"); + } +}); +``` + +これだけで基本的なBOTを作成できます。\ +他にもたくさんの機能があります! + +次の体験をお楽しみに。 + +:::tip +問題が発生した場合は、[お問い合わせ](/ja/docs/question)を参照してください。 +::: diff --git a/docs/ja/docs/methods.md b/docs/ja/docs/methods.md new file mode 100644 index 00000000..cd33de15 --- /dev/null +++ b/docs/ja/docs/methods.md @@ -0,0 +1,33 @@ +# メソッド + +## Talk Method + +TalkServiceのすべての関数は`client.talk`にあります。 + +例: + +```js +await client.talk.sendMessage({ + to: "u...", + text: "Hello, LINEJS!", + e2ee: true, +}); +``` + +上記はテキストメッセージをe2eeで暗号化してユーザーに送信する例です。 + +## Square Method + +SquareServiceのすべての関数は`client.square`にあります。 + +例: + +```js +await client.square.findSquareByInvitationTicket({ + request: { + invitationTicket: "INVITATION_TICKET", + }, +}); +``` + +上記は招待コードからスクエアを取得する例です。 diff --git a/docs/ja/docs/question.md b/docs/ja/docs/question.md new file mode 100644 index 00000000..8d824001 --- /dev/null +++ b/docs/ja/docs/question.md @@ -0,0 +1,5 @@ +# お問い合わせ + +私たちのサーバーで気軽に質問してください! + +[https://discord.gg/evex](https://discord.gg/evex) diff --git a/docs/ja/docs/start-2.md b/docs/ja/docs/start-2.md new file mode 100644 index 00000000..3a90903f --- /dev/null +++ b/docs/ja/docs/start-2.md @@ -0,0 +1,118 @@ +# クライアントメソッドの使い方 + +次のように呼び出すだけです。簡単です。 + +```ts +import { Client } from "@evex/linejs"; + +const client = new Client({ device: "IOSIPAD" }); + +client.on("pincall", (pincode) => { + console.log(`pincode: ${pincode}`); +}); + +client.on("ready", async (user) => { + console.log(`Logged in as ${user.displayName} (${user.mid});`); + + console.log(await client.getProfile()); +}); + +await client.login({ + email: "YOUR_EMAIL", + password: "YOUR_PASSWORD", +}); + +// もしくはQRコードを使用してログインできます。 +await client.login({ + qr: true, +}); +``` + +出力: + +```console +{ + mid: "u**********", + phone: "***********", + regionCode: "JP", + ... +} +``` + +メアドでのログインを繰り返すと、不正ログインと見なされる可能性があり、\ +アカウントが一時的にBANされることがあります(数日間だけですが...) + +なので**AuthToken**を使用するのが良いログイン方法です。 + +メアドログインでは、期限が切れると停止する一時的なトークンが使用されます。\ +長期間動作させたい場合は、v1トークンを使用する必要があります。 + +開発時はv2トークンを使用するのが良いでしょう。\ +繰り返しにはなりますが、メアドログインを何度も繰り返すことは強くおすすめしていません。 + +それでは、トークンを取得する方法を見てみましょう。 + +次のように書くだけです。 + +```ts +client.on("update:authtoken", (authtoken) => { + console.log("AuthToken", authtoken); +}); +``` + +出力: + +```console +AuthToken **********.******** +``` + +上記はv2トークンです。次のように使用できます。 + +```ts +await client.login({ + authToken: "YOUR_AUTH_TOKEN", +}); +``` + +## 注意点 + +このログイン方法には落とし穴があります。LINEは_e2ee_を使用して暗号化していますが、\ +これを解読するキーはPin付きのメアドログインまたはQRログインでしか取得できません。 + +したがって、authTokenだけでログインすると、グループトークイベントを取得できません。\ +(Square(オープンチャット)は可能です。) + +解決策は簡単です。 + +内部ストレージを使って、最初の一回だけメアドでログインすれば良いのです。 + +LINEJSには内部ストレージがあり、キャッシュを保存します。\ +デフォルトでは`MemoryStorage`で、一度の実行後にすべて消えます。 + +次のように`FileStorage`にすることもできます。 + +```ts +import { FileStorage } from "@evex/linejs/storage"; + +const client = new Client({ + device: "IOSIPAD", + storage: new FileStorage("./storage.json"), // ストレージファイルへのパス(秘密ファイル) +}); +``` + +最初の一回だけメールでログインし、その後はauthTokenを使用すれば良いのです。 + + + +::: tip +クラウドAPIに接続するなど、自分のストレージを作成したい場合は、 +`BaseStorage`をインポートし、それを拡張して自分のストレージを作成してください。(詳細はお問い合わせください。) +::: + +:::info +v1トークンを使用したい場合は、 +[discord.gg/evex](https://discord.gg/evex)で詳細をお問い合わせください。 +::: + +これで最初の体験は終わりです。まだ続きます!\ +お楽しみに! \ No newline at end of file diff --git a/docs/ja/docs/start.md b/docs/ja/docs/start.md new file mode 100644 index 00000000..19295497 --- /dev/null +++ b/docs/ja/docs/start.md @@ -0,0 +1,48 @@ +# はじめに + + +まずは、LINEJSライブラリを選んでくれてありがとうございます! + +## インストール + +LINEJSはJSRに公開されています。npmではありません。npm、yarn、pnpm、Bun、DenoでLINEJSをインストールできます。 +```bash +npx jsr add @evex/linejs # npmを使う場合 +bunx --bun jsr add @evex/linejs # Bunを使う場合 +deno add @evex/linejs # Denoを使う場合 +``` + +完了後、ライブラリが利用可能になります。 + +## 使い方 + +自分のプロフィールを取得するだけのスクリプトを作成してみましょう。 + +クライアントの作成には`loginWithPassword`を使用します。 +```ts +import { loginWithPassword } from "@evex/linejs"; + +const client = loginWithPassword({ + email: 'you@example.com', // メアド + password: 'password', // パスワード + onPincodeRequest(pincode) { + console.log('Enter this pincode to your LINE app:', pincode) + } +}) +``` + +複雑なプロセスなので認証については[こちら](./auth.md)を読んでください。 + +クライアント作成後は、様々な機能を使うことが可能になります。 + +例えば、参加しているチャットの情報を取得する例: +```ts +const chats = await client.fetchChats() +console.log(chats[0].name) +``` + +--- + +このライブラリはまだ初期段階です!\ +バグ不足している部分を見つけた場合は、Discordサーバーでお知らせください!\ +(バグや機能を提案してくれた方にはロールが付与されるかもしれません) \ No newline at end of file diff --git a/docs/ja/docs/utils.md b/docs/ja/docs/utils.md new file mode 100644 index 00000000..2f7b2824 --- /dev/null +++ b/docs/ja/docs/utils.md @@ -0,0 +1,84 @@ +# ユーティリティ + +LINEJSは単なるself-bot用ライブラリではありません。\ +内部URIの構築からOBSの構築やオープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 +順番に説明していきます。 + +## LINE_OBS + +obsハッシュから画像や動画を取得するためのもの。 +以下のように取得できます。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts) + +```ts +import { LINE_OBS } from "@evex/linejs/utils"; + +const OBS = new LINE_OBS(); // endpoint is optional + +const OBS_IMAGE_URI = OBS.getURI("0hy28TkoGoJh0FLTatCdtZSjt7ezN-Xj8PeFUrfHAvey8pHDUcMEppKXR-eisuFGJObRhheCh6KngqGzY"); // obs hash + +const OBS_PROFILE_IAMGE_URI = OBS.getProfileImage("u**********"); // メンバーID (mid) + +const OBS_SQUARE_PROFILE_IAMGE_URI = OBS.getSquareMemberImage("p**********"); // squareメンバーID (pid) + +// その他メソッド +``` + + + +## LINE_SCHEME + +LINEのスキームURIを構築するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts) + +```ts +import { LINE_SCHEME } from "@evex/linejs/utils"; + +const SCHEME = new LINE_SCHEME(); + +const SCHEME_HOME_URI = SCHEME.getHome(); + +const SCHEME_PROFILE_POPUP_URI = SCHEME.getProfilePopup("u**********"); + +// その他メソッド +``` + + + +## LINE_REGEX + +URLからチケットやemidを抽出するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts) + +```ts +import { LINE_REGEX } from "@evex/linejs/utils"; + +const REGEX = new LINE_REGEX(); + +console.log(REGEX.getTicket("Square Invitation https://line.me/ti/g2/*************")); // ************* + +console.log(REGEX.getEmid(".../emid=*************")); // ************* +``` + + + +## LINE_FUNCTIONS + +LINEに関連する外部APIに接続するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts) + +```ts +import Utils from '@evex/linejs/utils'; + +const squareList = await Utils.LINE_FUNCTIONS.searchSquare("Developer", 100); + +if (squareList.error === null) { + const squareInfo = await Utils.LINE_FUNCTIONS.getSquare(squareList.data.squares[0].square.emid, false, { + "x-line-channeltoken": "..." + }); + + console.log(squareInfo); +} +``` + +次のセクションでは、他のさまざまなメソッドを紹介します。 diff --git a/docs/ja/index.md b/docs/ja/index.md new file mode 100644 index 00000000..4638b213 --- /dev/null +++ b/docs/ja/index.md @@ -0,0 +1,27 @@ +--- +# https://vitepress.dev/reference/default-theme-home-page +layout: home + +hero: + image: /favicon.png + name: "LINEJS \nドキュメント" + tagline: LINEJSはLINE SelfBotのための画期的なJSライブラリ + actions: + - theme: brand + text: ドキュメントを見る + link: /ja/docs/start + - theme: alt + text: 例を見る + link: https://github.com/evex-dev/linejs/tree/main/examples + +features: + - title: 様々なプラットフォームで動作 + icon: 🌎 + details: Node.js、Deno、Bunなど + - title: 強固な型付け + icon: 🧩 + details: TypeScriptをサポート + - title: セーフティロック + icon: 🔒 + details: デフォルトでレートリミットなどを実装 +--- diff --git a/packages/linejs/base/core/mod.ts b/packages/linejs/base/core/mod.ts index 7e8c1e96..6cb2a4e5 100644 --- a/packages/linejs/base/core/mod.ts +++ b/packages/linejs/base/core/mod.ts @@ -121,16 +121,16 @@ export class BaseClient extends TypedEventEmitter { readonly endpoint: string; /** * Initializes a new instance of the class. - * + * * @param init - The initialization parameters. * @param init.device - The device type. * @param init.version - The version of the device. * @param init.fetch - Optional custom fetch function. * @param init.endpoint - Optional endpoint URL. * @param init.storage - Optional storage mechanism. - * + * * @throws {Error} If the device is unsupported. - * + * * @example * ```typescript * const client = new Client({ diff --git a/packages/linejs/base/obs/mod.ts b/packages/linejs/base/obs/mod.ts index 2b7bbc1a..708e7167 100644 --- a/packages/linejs/base/obs/mod.ts +++ b/packages/linejs/base/obs/mod.ts @@ -343,8 +343,7 @@ export class LineObs { .uploadObjectForService({ data: edata, oType: "file", - obsPath: - `${serviceName}/${obsNamespace}/${tempId}__ud-preview`, + obsPath: `${serviceName}/${obsNamespace}/${tempId}__ud-preview`, params, }); if (objId !== objId2) { diff --git a/packages/linejs/base/polling/mod.ts b/packages/linejs/base/polling/mod.ts index e7b712bb..c6a2b67b 100644 --- a/packages/linejs/base/polling/mod.ts +++ b/packages/linejs/base/polling/mod.ts @@ -26,12 +26,12 @@ export class Polling { /** * Listens to square events and yields them as they are received. - * + * * @param options - Configuration options for listening to square events. * @param options.signal - An AbortSignal to cancel the polling. * @param options.onError - A callback function to handle errors. * @param options.pollingInterval - The interval in milliseconds between polling requests. Defaults to 1000ms. - * + * * @yields {SquareEvent} - The events received from the square. */ async *listenSquareEvents(options: { @@ -70,14 +70,14 @@ export class Polling { /** * Listens for talk events by polling the server at a specified interval. - * + * * @param {Object} [options] - Configuration options for the polling. * @param {AbortSignal} [options.signal] - An AbortSignal to cancel the polling. * @param {(error: unknown) => void} [options.onError] - A callback function to handle errors. * @param {number} [options.pollingInterval=1000] - The interval in milliseconds between each poll. - * + * * @yields {Operation} - Yields each operation event received from the server. - * + * * @returns {AsyncGenerator} - An async generator that yields operation events. */ async *listenTalkEvents(options: { diff --git a/packages/linejs/base/service/liff/mod.ts b/packages/linejs/base/service/liff/mod.ts index facb14d7..6697d2bb 100644 --- a/packages/linejs/base/service/liff/mod.ts +++ b/packages/linejs/base/service/liff/mod.ts @@ -20,8 +20,7 @@ export class LiffService implements BaseService { protocolType: ProtocolKey = 4; errorName = "LiffServiceError"; liffId = "2006747340-AoraPvdD"; - csrfRegExp = - //; + csrfRegExp = //; client: BaseClient; @@ -150,9 +149,7 @@ export class LiffService implements BaseService { } throw new InternalError( this.errorName, - `Failed to get LiffToken: ${liffId}${ - chatMid ? "@" + chatMid : "" - }`, + `Failed to get LiffToken: ${liffId}${chatMid ? "@" + chatMid : ""}`, ); } } @@ -278,9 +275,7 @@ export class LiffService implements BaseService { allPermission.map((e) => "allPermission=" + e) .join("&") }&${ - approvedPermission.map((e) => - "approvedPermission=" + e - ).join("&") + approvedPermission.map((e) => "approvedPermission=" + e).join("&") }&__WLS=&channelId=2006747340&__csrf=${csrfToken}&allow=true`, headers, }, diff --git a/packages/linejs/base/thrift/readwrite/struct.ts b/packages/linejs/base/thrift/readwrite/struct.ts index 43aa9b6a..cd2b6ba0 100644 --- a/packages/linejs/base/thrift/readwrite/struct.ts +++ b/packages/linejs/base/thrift/readwrite/struct.ts @@ -1,6365 +1,8907 @@ +import * as LINETypes from "@evex/linejs-types"; +import { type NestedArray } from "../mod.ts"; +function map( + call: ((v: any) => NestedArray) | ((v: any) => number), + value: any, +): Record { + const tMap: Record = {}; + for (const key in value) { + const e = value[key]; + tMap[key] = call(e); + } + return tMap; +} +type PartialDeep = { + [P in keyof T]?: T[P] extends Array ? Array> + : T[P] extends ReadonlyArray ? ReadonlyArray> + : PartialDeep; +}; - import * as LINETypes from "@evex/linejs-types" - import { - type NestedArray, - } from "../mod.ts"; - function map(call: ((v:any)=>NestedArray) | ((v:any)=>number), value:any):Record{ - const tMap: Record = {} - for (const key in value) { - const e = value[key]; - tMap[key] = call(e); - } - return tMap - } - type PartialDeep = { - [P in keyof T]?: T[P] extends Array ? Array> - : T[P] extends ReadonlyArray ? ReadonlyArray> - : PartialDeep; - }; - - export function AcceptChatInvitationByTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [11, 3, param.ticketId] - ] - } - export function AcceptChatInvitationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid] - ] - } - export function AcceptSpeakersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [14, 3, [11, param.targetMids]] - ] - } - export function AcceptToChangeRoleRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.inviteRequestId] - ] - } - export function AcceptToListenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.inviteRequestId] - ] - } - export function AcceptToSpeakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.inviteRequestId] - ] - } - export function LiveTalkType(param: LINETypes.LiveTalkType | undefined): LINETypes.LiveTalkType&number | undefined { - return typeof param === "string" ? LINETypes.enums.LiveTalkType[param] : param - } - export function LiveTalkSpeakerSetting(param: LINETypes.LiveTalkSpeakerSetting | undefined): LINETypes.LiveTalkSpeakerSetting&number | undefined { - return typeof param === "string" ? LINETypes.enums.LiveTalkSpeakerSetting[param] : param - } - export function AcquireLiveTalkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.title], - [8, 3, LiveTalkType(param.type)], - [8, 4, LiveTalkSpeakerSetting(param.speakerSetting)] - ] - } - export function CancelToSpeakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function FetchLiveTalkEventsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.syncToken], - [8, 4, param.limit] - ] - } - export function FindLiveTalkByInvitationTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.invitationTicket] - ] - } - export function ForceEndLiveTalkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function GetLiveTalkInfoForNonMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [15, 3, [11, param.speakers]] - ] - } - export function GetLiveTalkInvitationUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function GetLiveTalkSpeakersForNonMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [15, 3, [11, param.speakers]] - ] - } - export function GetSquareInfoByChatMidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid] - ] - } - export function LiveTalkRole(param: LINETypes.LiveTalkRole | undefined): LINETypes.LiveTalkRole&number | undefined { - return typeof param === "string" ? LINETypes.enums.LiveTalkRole[param] : param - } - export function InviteToChangeRoleRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.targetMid], - [8, 4, LiveTalkRole(param.targetRole)] - ] - } - export function InviteToListenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.targetMid] - ] - } - export function InviteToLiveTalkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [15, 3, [11, param.invitees]] - ] - } - export function InviteToSpeakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.targetMid] - ] - } - export function BooleanState(param: LINETypes.BooleanState | undefined): LINETypes.BooleanState&number | undefined { - return typeof param === "string" ? LINETypes.enums.BooleanState[param] : param - } - export function JoinLiveTalkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [2, 3, param.wantToSpeak], - [8, 4, BooleanState(param.claimAdult)] - ] - } - export function LiveTalkParticipant(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.mid] - ] - } - export function AllNonMemberLiveTalkParticipants(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LiveTalkKickOutTarget(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiveTalkParticipant(param.liveTalkParticipant)], - [12, 2, AllNonMemberLiveTalkParticipants(param.allNonMemberLiveTalkParticipants)] - ] - } - export function KickOutLiveTalkParticipantsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [12, 3, LiveTalkKickOutTarget(param.target)] - ] - } - export function RejectSpeakersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [14, 3, [11, param.targetMids]] - ] - } - export function RejectToSpeakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.inviteRequestId] - ] - } - export function RemoveLiveTalkSubscriptionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function LiveTalkReportType(param: LINETypes.LiveTalkReportType | undefined): LINETypes.LiveTalkReportType&number | undefined { - return typeof param === "string" ? LINETypes.enums.LiveTalkReportType[param] : param - } - export function ReportLiveTalkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [8, 3, LiveTalkReportType(param.reportType)] - ] - } - export function ReportLiveTalkSpeakerRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.speakerMemberMid], - [8, 4, LiveTalkReportType(param.reportType)] - ] - } - export function RequestToListenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function RequestToSpeakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId] - ] - } - export function LiveTalkAttribute(param: LINETypes.LiveTalkAttribute | undefined): LINETypes.LiveTalkAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.LiveTalkAttribute[param] : param - } - export function LiveTalk(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.sessionId], - [11, 3, param.title], - [8, 4, LiveTalkType(param.type)], - [8, 5, LiveTalkSpeakerSetting(param.speakerSetting)], - [2, 6, param.allowRequestToSpeak], - [11, 7, param.hostMemberMid], - [11, 8, param.announcement], - [8, 9, param.participantCount], - [10, 10, param.revision], - [10, 11, param.startedAt] - ] - } - export function UpdateLiveTalkAttrsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>LiveTalkAttribute(e))]], - [12, 2, LiveTalk(param.liveTalk)] - ] - } - export function Pb1_D4(param: LINETypes.Pb1_D4 | undefined): LINETypes.Pb1_D4&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_D4[param] : param - } - export function Pb1_EnumC13222w4(param: LINETypes.Pb1_EnumC13222w4 | undefined): LINETypes.Pb1_EnumC13222w4&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13222w4[param] : param - } - export function Pb1_EnumC13237x5(param: LINETypes.Pb1_EnumC13237x5 | undefined): LINETypes.Pb1_EnumC13237x5&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13237x5[param] : param - } - export function AcquireOACallRouteRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.searchId], - [13, 2, [11, 11, param.fromEnvInfo]], - [11, 3, param.otp] - ] - } - export function PaidCallType(param: LINETypes.PaidCallType | undefined): LINETypes.PaidCallType&number | undefined { - return typeof param === "string" ? LINETypes.enums.PaidCallType[param] : param - } - export function og_EnumC32661b(param: LINETypes.og_EnumC32661b | undefined): LINETypes.og_EnumC32661b&number | undefined { - return typeof param === "string" ? LINETypes.enums.og_EnumC32661b[param] : param - } - export function ActivateSubscriptionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.uniqueKey], - [8, 2, og_EnumC32661b(param.activeStatus)] - ] - } - export function AdTypeOptOutClickEventRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.moduleAdId], - [11, 2, param.targetId] - ] - } - export function AddMetaInvalid(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hint] - ] - } - export function AddMetaByPhone(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.phone] - ] - } - export function AddMetaBySearchId(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.searchId] - ] - } - export function AddMetaByUserTicket(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.ticket] - ] - } - export function AddMetaGroupMemberList(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function LN0_P(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_L(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_G(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11282h(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11300q(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11307u(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddMetaShareContact(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageId], - [11, 2, param.chatMid], - [11, 3, param.senderMid] - ] - } - export function AddMetaStrangerMessage(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageId], - [11, 2, param.chatMid] - ] - } - export function AddMetaStrangerCall(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageId] - ] - } - export function AddMetaMentionInChat(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.messageId] - ] - } - export function LN0_O(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_Q(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11313x(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_A(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddMetaGroupVideoCall(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function LN0_r(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11315y(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11316z(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_B(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11280g(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_T(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11276e(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_S(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddMetaProfileUndefined(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hint] - ] - } - export function LN0_F(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11294n(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11290l(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11309v(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11292m(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddMetaChatNote(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function AddMetaChatNoteMenu(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function LN0_U(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_E(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddMetaSearchIdInUnifiedSearch(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.searchId] - ] - } - export function LN0_D(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11278f(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_H(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LN0_C11274d(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AddMetaInvalid(param.invalid)], - [12, 2, AddMetaByPhone(param.byPhone)], - [12, 3, AddMetaBySearchId(param.bySearchId)], - [12, 4, AddMetaByUserTicket(param.byUserTicket)], - [12, 5, AddMetaGroupMemberList(param.groupMemberList)], - [12, 6, LN0_P(param.timelineCPF)], - [12, 7, LN0_L(param.smartChannelCPF)], - [12, 8, LN0_G(param.openchatCPF)], - [12, 9, LN0_C11282h(param.beaconBanner)], - [12, 10, LN0_C11300q(param.friendRecommendation)], - [12, 11, LN0_C11307u(param.homeRecommendation)], - [12, 12, AddMetaShareContact(param.shareContact)], - [12, 13, AddMetaStrangerMessage(param.strangerMessage)], - [12, 14, AddMetaStrangerCall(param.strangerCall)], - [12, 15, AddMetaMentionInChat(param.mentionInChat)], - [12, 16, LN0_O(param.timeline)], - [12, 17, LN0_Q(param.unifiedSearch)], - [12, 18, LN0_C11313x(param.lineLab)], - [12, 19, LN0_A(param.lineToCall)], - [12, 20, AddMetaGroupVideoCall(param.groupVideo)], - [12, 21, LN0_r(param.friendRequest)], - [12, 22, LN0_C11315y(param.liveViewer)], - [12, 23, LN0_C11316z(param.lineThings)], - [12, 24, LN0_B(param.mediaCapture)], - [12, 25, LN0_C11280g(param.avatarOASetting)], - [12, 26, LN0_T(param.urlScheme)], - [12, 27, LN0_C11276e(param.addressBook)], - [12, 28, LN0_S(param.unifiedSearchOATab)], - [12, 29, AddMetaProfileUndefined(param.profileUndefined)], - [12, 30, LN0_F(param.DEPRECATED_oaChatHeader)], - [12, 31, LN0_C11294n(param.chatMenu)], - [12, 32, LN0_C11290l(param.chatHeader)], - [12, 33, LN0_C11309v(param.homeTabCPF)], - [12, 34, LN0_C11292m(param.chatList)], - [12, 35, AddMetaChatNote(param.chatNote)], - [12, 36, AddMetaChatNoteMenu(param.chatNoteMenu)], - [12, 37, LN0_U(param.walletTabCPF)], - [12, 38, LN0_E(param.oaCall)], - [12, 39, AddMetaSearchIdInUnifiedSearch(param.searchIdInUnifiedSearch)], - [12, 40, LN0_D(param.newsDigestADCPF)], - [12, 41, LN0_C11278f(param.albumCPF)], - [12, 42, LN0_H(param.premiumAgreement)] - ] - } - export function AddFriendTracking(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.reference], - [12, 2, LN0_C11274d(param.trackingMeta)] - ] - } - export function AddFriendByMidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.userMid], - [12, 3, AddFriendTracking(param.tracking)] - ] - } - export function Ob1_O0(param: LINETypes.Ob1_O0 | undefined): LINETypes.Ob1_O0&number | undefined { - return typeof param === "string" ? LINETypes.enums.Ob1_O0[param] : param - } - export function AddItemToCollectionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.collectionId], - [8, 2, Ob1_O0(param.productType)], - [11, 3, param.productId], - [11, 4, param.itemId] - ] - } - export function NZ0_C12155c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AddProductToSubscriptionSlotRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [11, 2, param.productId], - [11, 3, param.oldProductId], - - ] - } - export function AddThemeToSubscriptionSlotRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.productId], - [11, 2, param.currentlyAppliedProductId], - - ] - } - export function Pb1_A4(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.mid], - [11, 2, param.eMid] - ] - } - export function AddToFollowBlacklistRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)] - ] - } - export function TermsAgreement(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function AgreeToTermsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [12, 2, TermsAgreement(param.termsAgreement)] - ] - } - export function ApproveSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [15, 3, [11, param.requestedMemberMids]] - ] - } - export function CheckJoinCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [11, 3, param.joinCode] - ] - } - export function TextMessageAnnouncementContents(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageId], - [11, 2, param.text], - [11, 3, param.senderSquareMemberMid], - [10, 4, param.createdAt] - ] - } - export function SquareChatAnnouncementContents(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, TextMessageAnnouncementContents(param.textMessageAnnouncementContents)] - ] - } - export function SquareChatAnnouncement(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.announcementSeq], - [8, 2, param.type], - [12, 3, SquareChatAnnouncementContents(param.contents)], - [10, 4, param.createdAt], - [11, 5, param.creator] - ] - } - export function CreateSquareChatAnnouncementRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.squareChatMid], - [12, 3, SquareChatAnnouncement(param.squareChatAnnouncement)] - ] - } - export function SquareChatType(param: LINETypes.SquareChatType | undefined): LINETypes.SquareChatType&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareChatType[param] : param - } - export function SquareChatState(param: LINETypes.SquareChatState | undefined): LINETypes.SquareChatState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareChatState[param] : param - } - export function MessageVisibility(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.showJoinMessage], - [2, 2, param.showLeaveMessage], - [2, 3, param.showKickoutMessage] - ] - } - export function SquareChat(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.squareMid], - [8, 3, SquareChatType(param.type)], - [11, 4, param.name], - [11, 5, param.chatImageObsHash], - [10, 6, param.squareChatRevision], - [8, 7, param.maxMemberCount], - [8, 8, SquareChatState(param.state)], - [11, 9, param.invitationUrl], - [12, 10, MessageVisibility(param.messageVisibility)], - [8, 11, BooleanState(param.ableToSearchMessage)] - ] - } - export function CreateSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, SquareChat(param.squareChat)], - [15, 3, [11, param.squareMemberMids]] - ] - } - export function SquareType(param: LINETypes.SquareType | undefined): LINETypes.SquareType&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareType[param] : param - } - export function SquareState(param: LINETypes.SquareState | undefined): LINETypes.SquareState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareState[param] : param - } - export function SquareEmblem(param: LINETypes.SquareEmblem | undefined): LINETypes.SquareEmblem&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareEmblem[param] : param - } - export function SquareJoinMethodType(param: LINETypes.SquareJoinMethodType | undefined): LINETypes.SquareJoinMethodType&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareJoinMethodType[param] : param - } - export function ApprovalValue(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.message] - ] - } - export function CodeValue(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.code] - ] - } - export function SquareJoinMethodValue(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ApprovalValue(param.approvalValue)], - [12, 2, CodeValue(param.codeValue)] - ] - } - export function SquareJoinMethod(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, SquareJoinMethodType(param.type)], - [12, 2, SquareJoinMethodValue(param.value)] - ] - } - export function Square(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.mid], - [11, 2, param.name], - [11, 3, param.welcomeMessage], - [11, 4, param.profileImageObsHash], - [11, 5, param.desc], - [2, 6, param.searchable], - [8, 7, SquareType(param.type)], - [8, 8, param.categoryId], - [11, 9, param.invitationURL], - [10, 10, param.revision], - [2, 11, param.ableToUseInvitationTicket], - [8, 12, SquareState(param.state)], - [15, 13, [8, param.emblems&&(param.emblems).map(e=>SquareEmblem(e))]], - [12, 14, SquareJoinMethod(param.joinMethod)], - [8, 15, BooleanState(param.adultOnly)], - [15, 16, [11, param.svcTags]], - [10, 17, param.createdAt] - ] - } - export function SquareMembershipState(param: LINETypes.SquareMembershipState | undefined): LINETypes.SquareMembershipState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareMembershipState[param] : param - } - export function SquareMemberRole(param: LINETypes.SquareMemberRole | undefined): LINETypes.SquareMemberRole&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareMemberRole[param] : param - } - export function SquarePreference(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.favoriteTimestamp], - [2, 2, param.notiForNewJoinRequest] - ] - } - export function SquareMember(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMemberMid], - [11, 2, param.squareMid], - [11, 3, param.displayName], - [11, 4, param.profileImageObsHash], - [2, 5, param.ableToReceiveMessage], - [8, 7, SquareMembershipState(param.membershipState)], - [8, 8, SquareMemberRole(param.role)], - [10, 9, param.revision], - [12, 10, SquarePreference(param.preference)], - [11, 11, param.joinMessage], - [10, 12, param.createdAt] - ] - } - export function CreateSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, Square(param.square)], - [12, 3, SquareMember(param.creator)] - ] - } - export function DeleteSquareChatAnnouncementRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [10, 3, param.announcementSeq] - ] - } - export function DeleteSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [10, 3, param.revision] - ] - } - export function DeleteSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.mid], - [10, 3, param.revision] - ] - } - export function DestroyMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [11, 4, param.messageId], - [11, 5, param.threadMid] - ] - } - export function DestroyMessagesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [14, 4, [11, param.messageIds]], - [11, 5, param.threadMid] - ] - } - export function FetchMyEventsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.subscriptionId], - [11, 2, param.syncToken], - [8, 3, param.limit], - [11, 4, param.continuationToken] - ] - } - export function FetchDirection(param: LINETypes.FetchDirection | undefined): LINETypes.FetchDirection&number | undefined { - return typeof param === "string" ? LINETypes.enums.FetchDirection[param] : param - } - export function FetchType(param: LINETypes.FetchType | undefined): LINETypes.FetchType&number | undefined { - return typeof param === "string" ? LINETypes.enums.FetchType[param] : param - } - export function FetchSquareChatEventsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.subscriptionId], - [11, 2, param.squareChatMid], - [11, 3, param.syncToken], - [8, 4, param.limit], - [8, 5, FetchDirection(param.direction)], - [8, 6, BooleanState(param.inclusive)], - [11, 7, param.continuationToken], - [8, 8, FetchType(param.fetchType)], - [11, 9, param.threadMid] - ] - } - export function FindSquareByEmidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.emid] - ] - } - export function FindSquareByInvitationTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.invitationTicket] - ] - } - export function FindSquareByInvitationTicketV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.invitationTicket] - ] - } - export function AdScreen(param: LINETypes.AdScreen | undefined): LINETypes.AdScreen&number | undefined { - return typeof param === "string" ? LINETypes.enums.AdScreen[param] : param - } - export function GetGoogleAdOptionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid], - [11, 2, param.chatMid], - [8, 3, AdScreen(param.adScreen)] - ] - } - export function GetInvitationTicketUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.mid] - ] - } - export function GetJoinableSquareChatsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid], - [11, 10, param.continuationToken], - [8, 11, param.limit] - ] - } - export function GetJoinedSquareChatsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.continuationToken], - [8, 3, param.limit] - ] - } - export function GetJoinedSquaresRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.continuationToken], - [8, 3, param.limit] - ] - } - export function MessageReactionType(param: LINETypes.MessageReactionType | undefined): LINETypes.MessageReactionType&number | undefined { - return typeof param === "string" ? LINETypes.enums.MessageReactionType[param] : param - } - export function GetMessageReactionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.messageId], - [8, 3, MessageReactionType(param.type)], - [11, 4, param.continuationToken], - [8, 5, param.limit], - [11, 6, param.threadMid] - ] - } - export function GetNoteStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid] - ] - } - export function GetPopularKeywordsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetSquareAuthoritiesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [11, param.squareMids]] - ] - } - export function GetSquareAuthorityRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid] - ] - } - export function GetSquareCategoriesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetSquareChatAnnouncementsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid] - ] - } - export function GetSquareChatEmidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid] - ] - } - export function GetSquareChatFeatureSetRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid] - ] - } - export function GetSquareChatMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMemberMid], - [11, 3, param.squareChatMid] - ] - } - export function GetSquareChatMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [11, 2, param.continuationToken], - [8, 3, param.limit] - ] - } - export function GetSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid] - ] - } - export function GetSquareChatStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid] - ] - } - export function GetSquareEmidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid] - ] - } - export function GetSquareFeatureSetRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid] - ] - } - export function GetSquareMemberRelationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [11, 3, param.targetSquareMemberMid] - ] - } - export function SquareMemberRelationState(param: LINETypes.SquareMemberRelationState | undefined): LINETypes.SquareMemberRelationState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareMemberRelationState[param] : param - } - export function GetSquareMemberRelationsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, SquareMemberRelationState(param.state)], - [11, 3, param.continuationToken], - [8, 4, param.limit] - ] - } - export function GetSquareMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMemberMid] - ] - } - export function GetSquareMembersBySquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [14, 3, [11, param.squareMemberMids]] - ] - } - export function GetSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [11, param.mids]] - ] - } - export function GetSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.mid] - ] - } - export function GetSquareStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid] - ] - } - export function GetSquareThreadMidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.messageId] - ] - } - export function GetSquareThreadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.threadMid], - [2, 2, param.includeRootMessage] - ] - } - export function GetUserSettingsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function HideSquareMemberContentsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMemberMid] - ] - } - export function InviteIntoSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.inviteeMids]], - [11, 2, param.squareChatMid] - ] - } - export function InviteToSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [15, 3, [11, param.invitees]], - [11, 4, param.squareChatMid] - ] - } - export function JoinSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid] - ] - } - export function JoinSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [12, 3, SquareMember(param.member)], - [11, 4, param.squareChatMid], - [12, 5, SquareJoinMethodValue(param.joinValue)], - [8, 6, BooleanState(param.claimAdult)] - ] - } - export function JoinSquareThreadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.threadMid] - ] - } - export function LeaveSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [2, 3, param.sayGoodbye], - [10, 4, param.squareChatMemberRevision] - ] - } - export function LeaveSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid] - ] - } - export function LeaveSquareThreadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.threadMid] - ] - } - export function ManualRepairRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.syncToken], - [8, 2, param.limit], - [11, 3, param.continuationToken] - ] - } - export function MarkAsReadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [11, 4, param.messageId], - [11, 5, param.threadMid] - ] - } - export function MarkChatsAsReadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [11, param.chatMids]] - ] - } - export function MarkThreadsAsReadRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function ReactToMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.squareChatMid], - [11, 3, param.messageId], - [8, 4, MessageReactionType(param.reactionType)], - [11, 5, param.threadMid] - ] - } - export function RefreshSubscriptionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [10, param.subscriptions]] - ] - } - export function RejectSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [15, 3, [11, param.requestedMemberMids]] - ] - } - export function RemoveSubscriptionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [10, param.unsubscriptions]] - ] - } - export function MessageSummaryReportType(param: LINETypes.MessageSummaryReportType | undefined): LINETypes.MessageSummaryReportType&number | undefined { - return typeof param === "string" ? LINETypes.enums.MessageSummaryReportType[param] : param - } - export function ReportMessageSummaryRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatEmid], - [10, 2, param.messageSummaryRangeTo], - [8, 3, MessageSummaryReportType(param.reportType)] - ] - } - export function ReportType(param: LINETypes.ReportType | undefined): LINETypes.ReportType&number | undefined { - return typeof param === "string" ? LINETypes.enums.ReportType[param] : param - } - export function ReportSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [11, 3, param.squareChatMid], - [8, 5, ReportType(param.reportType)], - [11, 6, param.otherReason] - ] - } - export function ReportSquareMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMemberMid], - [8, 3, ReportType(param.reportType)], - [11, 4, param.otherReason], - [11, 5, param.squareChatMid], - [11, 6, param.threadMid] - ] - } - export function ReportSquareMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [11, 3, param.squareChatMid], - [11, 4, param.squareMessageId], - [8, 5, ReportType(param.reportType)], - [11, 6, param.otherReason], - [11, 7, param.threadMid] - ] - } - export function ReportSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [8, 3, ReportType(param.reportType)], - [11, 4, param.otherReason] - ] - } - export function SquareChatMemberSearchOption(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.displayName], - [2, 2, param.includingMe] - ] - } - export function SearchSquareChatMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [12, 2, SquareChatMemberSearchOption(param.searchOption)], - [11, 3, param.continuationToken], - [8, 4, param.limit] - ] - } - export function SquareChatMentionableSearchOption(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.displayName] - ] - } - export function SearchSquareChatMentionablesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid], - [12, 2, SquareChatMentionableSearchOption(param.searchOption)], - [11, 3, param.continuationToken], - [8, 4, param.limit] - ] - } - export function SquareMemberSearchOption(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, SquareMembershipState(param.membershipState)], - [14, 2, [8, param.memberRoles&&(param.memberRoles).map(e=>SquareMemberRole(e))]], - [11, 3, param.displayName], - [8, 4, BooleanState(param.ableToReceiveMessage)], - [8, 5, BooleanState(param.ableToReceiveFriendRequest)], - [11, 6, param.chatMidToExcludeMembers], - [2, 7, param.includingMe], - [2, 8, param.excludeBlockedMembers], - [2, 9, param.includingMeOnlyMatch] - ] - } - export function SearchSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [12, 3, SquareMemberSearchOption(param.searchOption)], - [11, 4, param.continuationToken], - [8, 5, param.limit] - ] - } - export function SearchSquaresRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.query], - [11, 3, param.continuationToken], - [8, 4, param.limit] - ] - } - export function MIDType(param: LINETypes.MIDType | undefined): LINETypes.MIDType&number | undefined { - return typeof param === "string" ? LINETypes.enums.MIDType[param] : param - } - export function Pb1_D6(param: LINETypes.Pb1_D6 | undefined): LINETypes.Pb1_D6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_D6[param] : param - } - export function Pb1_EnumC13050k(param: LINETypes.Pb1_EnumC13050k | undefined): LINETypes.Pb1_EnumC13050k&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13050k[param] : param - } - export function GeolocationAccuracy(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [4, 1, param.radiusMeters], - [4, 2, param.radiusConfidence], - [4, 3, param.altitudeAccuracy], - [4, 4, param.velocityAccuracy], - [4, 5, param.bearingAccuracy], - [8, 6, Pb1_EnumC13050k(param.accuracyMode)] - ] - } - export function Location(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.title], - [11, 2, param.address], - [4, 3, param.latitude], - [4, 4, param.longitude], - [11, 5, param.phone], - [11, 6, param.categoryId], - [8, 7, Pb1_D6(param.provider)], - [12, 8, GeolocationAccuracy(param.accuracy)], - [4, 9, param.altitudeMeters] - ] - } - export function ContentType(param: LINETypes.ContentType | undefined): LINETypes.ContentType&number | undefined { - return typeof param === "string" ? LINETypes.enums.ContentType[param] : param - } - export function Pb1_EnumC13015h6(param: LINETypes.Pb1_EnumC13015h6 | undefined): LINETypes.Pb1_EnumC13015h6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13015h6[param] : param - } - export function Pb1_E7(param: LINETypes.Pb1_E7 | undefined): LINETypes.Pb1_E7&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_E7[param] : param - } - export function Pb1_B(param: LINETypes.Pb1_B | undefined): LINETypes.Pb1_B&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_B[param] : param - } - export function ReactionType(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, MessageReactionType(param.predefinedReactionType)] - ] - } - export function Reaction(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.fromUserMid], - [10, 2, param.atMillis], - [12, 3, ReactionType(param.reactionType)] - ] - } - export function Message(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.from], - [11, 2, param.to], - [8, 3, MIDType(param.toType)], - [11, 4, param.id], - [10, 5, param.createdTime], - [10, 6, param.deliveredTime], - [11, 10, param.text], - [12, 11, Location(param.location)], - [2, 14, param.hasContent], - [8, 15, ContentType(param.contentType)], - [11, 17, param.contentPreview], - [13, 18, [11, 11, param.contentMetadata]], - [3, 19, param.sessionId], - [15, 20, [11, param.chunks]], - [11, 21, param.relatedMessageId], - [8, 22, Pb1_EnumC13015h6(param.messageRelationType)], - [8, 23, param.readCount], - [8, 24, Pb1_E7(param.relatedMessageServiceCode)], - [8, 25, Pb1_B(param.appExtensionType)], - [15, 27, [12, param.reactions&&(param.reactions).map(e=>Reaction(e))]] - ] - } - export function SquareMessageState(param: LINETypes.SquareMessageState | undefined): LINETypes.SquareMessageState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareMessageState[param] : param - } - export function SquareMessageThreadInfo(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatThreadMid], - [2, 2, param.threadRoot] - ] - } - export function SquareMessage(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Message(param.message)], - [8, 3, MIDType(param.fromType)], - [10, 4, param.squareMessageRevision], - [8, 5, SquareMessageState(param.state)], - [12, 6, SquareMessageThreadInfo(param.threadInfo)] - ] - } - export function SendMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.squareChatMid], - [12, 3, SquareMessage(param.squareMessage)] - ] - } - export function SendSquareThreadMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [11, 3, param.threadMid], - [12, 4, SquareMessage(param.threadMessage)] - ] - } - export function SyncSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid], - [13, 2, [11, 10, param.squareMembers]] - ] - } - export function UnhideSquareMemberContentsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMemberMid] - ] - } - export function UnsendMessageRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareChatMid], - [11, 3, param.messageId], - [11, 4, param.threadMid] - ] - } - export function SquareAuthorityAttribute(param: LINETypes.SquareAuthorityAttribute | undefined): LINETypes.SquareAuthorityAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareAuthorityAttribute[param] : param - } - export function SquareAuthority(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid], - [8, 2, SquareMemberRole(param.updateSquareProfile)], - [8, 3, SquareMemberRole(param.inviteNewMember)], - [8, 4, SquareMemberRole(param.approveJoinRequest)], - [8, 5, SquareMemberRole(param.createPost)], - [8, 6, SquareMemberRole(param.createOpenSquareChat)], - [8, 7, SquareMemberRole(param.deleteSquareChatOrPost)], - [8, 8, SquareMemberRole(param.removeSquareMember)], - [8, 9, SquareMemberRole(param.grantRole)], - [8, 10, SquareMemberRole(param.enableInvitationTicket)], - [10, 11, param.revision], - [8, 12, SquareMemberRole(param.createSquareChatAnnouncement)], - [8, 13, SquareMemberRole(param.updateMaxChatMemberCount)], - [8, 14, SquareMemberRole(param.useReadonlyDefaultChat)], - [8, 15, SquareMemberRole(param.sendAllMention)] - ] - } - export function UpdateSquareAuthorityRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updateAttributes&&(param.updateAttributes).map(e=>SquareAuthorityAttribute(e))]], - [12, 3, SquareAuthority(param.authority)] - ] - } - export function SquareChatMemberAttribute(param: LINETypes.SquareChatMemberAttribute | undefined): LINETypes.SquareChatMemberAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareChatMemberAttribute[param] : param - } - export function SquareChatMembershipState(param: LINETypes.SquareChatMembershipState | undefined): LINETypes.SquareChatMembershipState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareChatMembershipState[param] : param - } - export function SquareChatMember(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMemberMid], - [11, 2, param.squareChatMid], - [10, 3, param.revision], - [8, 4, SquareChatMembershipState(param.membershipState)], - [2, 5, param.notificationForMessage], - [2, 6, param.notificationForNewMember] - ] - } - export function UpdateSquareChatMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>SquareChatMemberAttribute(e))]], - [12, 3, SquareChatMember(param.chatMember)] - ] - } - export function SquareChatAttribute(param: LINETypes.SquareChatAttribute | undefined): LINETypes.SquareChatAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareChatAttribute[param] : param - } - export function UpdateSquareChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>SquareChatAttribute(e))]], - [12, 3, SquareChat(param.squareChat)] - ] - } - export function SquareFeatureSetAttribute(param: LINETypes.SquareFeatureSetAttribute | undefined): LINETypes.SquareFeatureSetAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareFeatureSetAttribute[param] : param - } - export function SquareFeatureControlState(param: LINETypes.SquareFeatureControlState | undefined): LINETypes.SquareFeatureControlState&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareFeatureControlState[param] : param - } - export function SquareFeature(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, SquareFeatureControlState(param.controlState)], - [8, 2, BooleanState(param.booleanValue)] - ] - } - export function SquareFeatureSet(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareMid], - [10, 2, param.revision], - [12, 11, SquareFeature(param.creatingSecretSquareChat)], - [12, 12, SquareFeature(param.invitingIntoOpenSquareChat)], - [12, 13, SquareFeature(param.creatingSquareChat)], - [12, 14, SquareFeature(param.readonlyDefaultChat)], - [12, 15, SquareFeature(param.showingAdvertisement)], - [12, 16, SquareFeature(param.delegateJoinToPlug)], - [12, 17, SquareFeature(param.delegateKickOutToPlug)], - [12, 18, SquareFeature(param.disableUpdateJoinMethod)], - [12, 19, SquareFeature(param.disableTransferAdmin)], - [12, 20, SquareFeature(param.creatingLiveTalk)], - [12, 21, SquareFeature(param.disableUpdateSearchable)], - [12, 22, SquareFeature(param.summarizingMessages)], - [12, 23, SquareFeature(param.creatingSquareThread)], - [12, 24, SquareFeature(param.enableSquareThread)], - [12, 25, SquareFeature(param.disableChangeRoleCoAdmin)] - ] - } - export function UpdateSquareFeatureSetRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updateAttributes&&(param.updateAttributes).map(e=>SquareFeatureSetAttribute(e))]], - [12, 3, SquareFeatureSet(param.squareFeatureSet)] - ] - } - export function SquareMemberRelation(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, SquareMemberRelationState(param.state)], - [10, 2, param.revision] - ] - } - export function UpdateSquareMemberRelationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.squareMid], - [11, 3, param.targetSquareMemberMid], - [14, 4, [8, param.updatedAttrs]], - [12, 5, SquareMemberRelation(param.relation)] - ] - } - export function SquareMemberAttribute(param: LINETypes.SquareMemberAttribute | undefined): LINETypes.SquareMemberAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareMemberAttribute[param] : param - } - export function SquarePreferenceAttribute(param: LINETypes.SquarePreferenceAttribute | undefined): LINETypes.SquarePreferenceAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquarePreferenceAttribute[param] : param - } - export function UpdateSquareMemberRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>SquareMemberAttribute(e))]], - [14, 3, [8, param.updatedPreferenceAttrs&&(param.updatedPreferenceAttrs).map(e=>SquarePreferenceAttribute(e))]], - [12, 4, SquareMember(param.squareMember)] - ] - } - export function UpdateSquareMembersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>SquareMemberAttribute(e))]], - [15, 3, [12, param.members&&(param.members).map(e=>SquareMember(e))]] - ] - } - export function SquareAttribute(param: LINETypes.SquareAttribute | undefined): LINETypes.SquareAttribute&number | undefined { - return typeof param === "string" ? LINETypes.enums.SquareAttribute[param] : param - } - export function UpdateSquareRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.updatedAttrs&&(param.updatedAttrs).map(e=>SquareAttribute(e))]], - [12, 3, Square(param.square)] - ] - } - export function SquareUserSettings(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, BooleanState(param.liveTalkNotification)] - ] - } - export function UpdateUserSettingsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [12, 2, SquareUserSettings(param.userSettings)] - ] - } - export function r80_EnumC34362b(param: LINETypes.r80_EnumC34362b | undefined): LINETypes.r80_EnumC34362b&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34362b[param] : param - } - export function r80_EnumC34361a(param: LINETypes.r80_EnumC34361a | undefined): LINETypes.r80_EnumC34361a&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34361a[param] : param - } - export function AuthenticatorAssertionResponse(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.clientDataJSON], - [11, 2, param.authenticatorData], - [11, 3, param.signature], - [11, 4, param.userHandle] - ] - } - export function AuthenticationExtensionsClientOutputs(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 91, param.lineAuthenSel] - ] - } - export function AuthPublicKeyCredential(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.id], - [11, 2, param.type], - [12, 3, AuthenticatorAssertionResponse(param.response)], - [12, 4, AuthenticationExtensionsClientOutputs(param.extensionResults)] - ] - } - export function AuthenticateWithPaakRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [12, 2, AuthPublicKeyCredential(param.credential)] - ] - } - export function BulkFollowRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [11, param.followTargetMids]], - [14, 2, [11, param.unfollowTargetMids]], - [2, 3, param.hasNext] - ] - } - export function t80_h(param: LINETypes.t80_h | undefined): LINETypes.t80_h&number | undefined { - return typeof param === "string" ? LINETypes.enums.t80_h[param] : param - } - export function GetRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.keyName], - [8, 2, t80_h(param.ns)] - ] - } - export function BulkGetRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [12, param.requests&&(param.requests).map(e=>GetRequest(e))]] - ] - } - export function BuyMustbuyRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [11, 2, param.productId], - [11, 3, param.serialNumber] - ] - } - export function CanCreateCombinationStickerRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [11, param.packageIds]] - ] - } - export function Locale(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.language], - [11, 2, param.country] - ] - } - export function CancelChatInvitationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [14, 3, [11, param.targetUserMids]] - ] - } - export function CancelPaakAuthRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function CancelPaakAuthenticationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function CancelPinCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function CancelReactionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [10, 2, param.messageId] - ] - } - export function VerificationMethod(param: LINETypes.VerificationMethod | undefined): LINETypes.VerificationMethod&number | undefined { - return typeof param === "string" ? LINETypes.enums.VerificationMethod[param] : param - } - export function r80_n0(param: LINETypes.r80_n0 | undefined): LINETypes.r80_n0&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_n0[param] : param - } - export function T70_EnumC14390b(param: LINETypes.T70_EnumC14390b | undefined): LINETypes.T70_EnumC14390b&number | undefined { - return typeof param === "string" ? LINETypes.enums.T70_EnumC14390b[param] : param - } - export function AccountIdentifier(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, T70_EnumC14390b(param.type)], - [11, 2, param.identifier], - [11, 11, param.countryCode] - ] - } - export function h80_t(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.newDevicePublicKey], - [11, 2, param.encryptedQrIdentifier] - ] - } - export function CheckIfEncryptedE2EEKeyReceivedRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [12, 2, h80_t(param.secureChannelData)] - ] - } - export function UserPhoneNumber(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.phoneNumber], - [11, 2, param.countryCode] - ] - } - export function CheckIfPhonePinCodeMsgVerifiedRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, UserPhoneNumber(param.userPhoneNumber)] - ] - } - export function r80_EnumC34368h(param: LINETypes.r80_EnumC34368h | undefined): LINETypes.r80_EnumC34368h&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34368h[param] : param - } - export function r80_EnumC34371k(param: LINETypes.r80_EnumC34371k | undefined): LINETypes.r80_EnumC34371k&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34371k[param] : param - } - export function CheckUserAgeAfterApprovalWithDocomoV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.accessToken], - [11, 2, param.agprm] - ] - } - export function CheckUserAgeWithDocomoV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authCode] - ] - } - export function CarrierCode(param: LINETypes.CarrierCode | undefined): LINETypes.CarrierCode&number | undefined { - return typeof param === "string" ? LINETypes.enums.CarrierCode[param] : param - } - export function IdentityProvider(param: LINETypes.IdentityProvider | undefined): LINETypes.IdentityProvider&number | undefined { - return typeof param === "string" ? LINETypes.enums.IdentityProvider[param] : param - } - export function IdentifierConfirmationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [11, 11, param.metaData]], - [2, 2, param.forceRegistration], - [11, 3, param.verificationCode] - ] - } - export function IdentityCredentialRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [11, 11, param.metaData]], - [8, 2, IdentityProvider(param.identityProvider)], - [11, 3, param.cipherKeyId], - [11, 4, param.cipherText], - [12, 5, IdentifierConfirmationRequest(param.confirmationRequest)] - ] - } - export function ConnectEapAccountRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function Pb1_X2(param: LINETypes.Pb1_X2 | undefined): LINETypes.Pb1_X2&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_X2[param] : param - } - export function ChatRoomAnnouncementContentMetadata(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.replace], - [11, 2, param.sticonOwnership], - [11, 3, param.postNotificationMetadata] - ] - } - export function ChatRoomAnnouncementContents(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.displayFields], - [11, 2, param.text], - [11, 3, param.link], - [11, 4, param.thumbnail], - [12, 5, ChatRoomAnnouncementContentMetadata(param.contentMetadata)] - ] - } - export function Pb1_Z2(param: LINETypes.Pb1_Z2 | undefined): LINETypes.Pb1_Z2&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_Z2[param] : param - } - export function CreateChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [8, 2, Pb1_Z2(param.type)], - [11, 3, param.name], - [14, 4, [11, param.targetUserMids]], - [11, 5, param.picturePath] - ] - } - export function Pb1_A3(param: LINETypes.Pb1_A3 | undefined): LINETypes.Pb1_A3&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_A3[param] : param - } - export function Pb1_C13263z3(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.blobHeader], - [11, 2, param.blobPayload], - [8, 3, Pb1_A3(param.reason)] - ] - } - export function CreateGroupCallUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.title] - ] - } - export function E2EEMetadata(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.e2EEPublicKeyId] - ] - } - export function SingleValueMetadata(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Pb1_W5(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, E2EEMetadata(param.e2ee)], - [12, 2, SingleValueMetadata(param.singleValue)] - ] - } - export function Pb1_X5(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_W5(param.metadata)], - [11, 2, param.blobPayload] - ] - } - export function Pb1_E3(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.blobHeader], - [15, 2, [12, param.payloadDataList&&(param.payloadDataList).map(e=>Pb1_X5(e))]] - ] - } - export function CreateMultiProfileRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.displayName] - ] - } - export function h80_C25643c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Pb1_H3(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function DeleteGroupCallUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.urlId] - ] - } - export function DeleteMultiProfileRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.profileId] - ] - } - export function DeleteOtherFromChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [14, 3, [11, param.targetUserMids]] - ] - } - export function R70_c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function DeleteSafetyStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.disasterId] - ] - } - export function DeleteSelfFromChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [10, 3, param.lastSeenMessageDeliveredTime], - [11, 4, param.lastSeenMessageId], - [10, 5, param.lastMessageDeliveredTime], - [11, 6, param.lastMessageId] - ] - } - export function DetermineMediaMessageFlowRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function Q70_q(param: LINETypes.Q70_q | undefined): LINETypes.Q70_q&number | undefined { - return typeof param === "string" ? LINETypes.enums.Q70_q[param] : param - } - export function DisconnectEapAccountRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Q70_q(param.eapType)] - ] - } - export function S70_b(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function FetchOperationsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId], - [10, 2, param.offsetFrom] - ] - } - export function FetchPhonePinCodeMsgRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, UserPhoneNumber(param.userPhoneNumber)] - ] - } - export function Pb1_F0(param: LINETypes.Pb1_F0 | undefined): LINETypes.Pb1_F0&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_F0[param] : param - } - export function FindChatByTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.ticketId] - ] - } - export function FollowRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)] - ] - } - export function GetAccessTokenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.fontId] - ] - } - export function GetAllChatMidsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.withMemberChats], - [2, 2, param.withInvitedChats] - ] - } - export function Pb1_V7(param: LINETypes.Pb1_V7 | undefined): LINETypes.Pb1_V7&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_V7[param] : param - } - export function m80_l(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function m80_n(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LatestProductsByAuthorRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [10, 2, param.authorId], - [8, 3, param.limit] - ] - } - export function Ob1_a2(param: LINETypes.Ob1_a2 | undefined): LINETypes.Ob1_a2&number | undefined { - return typeof param === "string" ? LINETypes.enums.Ob1_a2[param] : param - } - export function AutoSuggestionShowcaseRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [8, 2, Ob1_a2(param.suggestionType)] - ] - } - export function NZ0_C12208u(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function NZ0_C12214w(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function ZQ0_b(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function UEN(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.revision] - ] - } - export function Beacon(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hardwareId] - ] - } - export function Uf_C14856C(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UEN(param.uen)], - [12, 2, Beacon(param.beacon)] - ] - } - export function AdRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [11, 11, param.headers]], - [13, 2, [11, 11, param.queryParams]] - ] - } - export function Uf_EnumC14873o(param: LINETypes.Uf_EnumC14873o | undefined): LINETypes.Uf_EnumC14873o&number | undefined { - return typeof param === "string" ? LINETypes.enums.Uf_EnumC14873o[param] : param - } - export function ContentRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Uf_EnumC14873o(param.os)], - [11, 2, param.appv], - [11, 3, param.lineAcceptableLanguage], - [11, 4, param.countryCode] - ] - } - export function BannerRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.test], - [12, 2, Uf_C14856C(param.trigger)], - [12, 3, AdRequest(param.ad)], - [12, 4, ContentRequest(param.content)] - ] - } - export function Eh_C8933a(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetBleDeviceRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.serviceUuid], - [11, 2, param.psdi] - ] - } - export function GetBuddyChatBarRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.buddyMid], - [10, 2, param.chatBarRevision], - [11, 3, param.richMenuId] - ] - } - export function Pb1_D0(param: LINETypes.Pb1_D0 | undefined): LINETypes.Pb1_D0&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_D0[param] : param - } - export function GetBuddyLiveRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.mid] - ] - } - export function GetBuddyStatusBarV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.botMid], - [10, 2, param.revision] - ] - } - export function GetCallStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.basicSearchId], - [11, 2, param.otp] - ] - } - export function GetCampaignRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.campaignType] - ] - } - export function GetChallengeForPaakAuthRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function GetChallengeForPrimaryRegRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function GetChannelContextRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function Pb1_Q2(param: LINETypes.Pb1_Q2 | undefined): LINETypes.Pb1_Q2&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_Q2[param] : param - } - export function GetChatappRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatappId], - [11, 2, param.language] - ] - } - export function GetChatsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.chatMids]], - [2, 2, param.withMembers], - [2, 3, param.withInvitees] - ] - } - export function jO0_EnumC27533B(param: LINETypes.jO0_EnumC27533B | undefined): LINETypes.jO0_EnumC27533B&number | undefined { - return typeof param === "string" ? LINETypes.enums.jO0_EnumC27533B[param] : param - } - export function jO0_EnumC27559z(param: LINETypes.jO0_EnumC27559z | undefined): LINETypes.jO0_EnumC27559z&number | undefined { - return typeof param === "string" ? LINETypes.enums.jO0_EnumC27559z[param] : param - } - export function GetCoinProductsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, jO0_EnumC27533B(param.appStoreCode)], - [11, 2, param.country], - [11, 3, param.language], - [8, 4, jO0_EnumC27559z(param.pgCode)] - ] - } - export function GetCoinHistoryRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, jO0_EnumC27533B(param.appStoreCode)], - [11, 2, param.country], - [11, 3, param.language], - [11, 4, param.searchEndDate], - [8, 5, param.offset], - [8, 6, param.limit] - ] - } - export function GetContactCalendarEventTarget(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.targetUserMid] - ] - } - export function GetContactCalendarEventsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.targetUsers&&(param.targetUsers).map(e=>GetContactCalendarEventTarget(e))]], - [8, 2, Pb1_V7(param.syncReason)], - - ] - } - export function GetContactV3Target(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.targetUserMid] - ] - } - export function GetContactsV3Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.targetUsers&&(param.targetUsers).map(e=>GetContactV3Target(e))]], - [8, 2, Pb1_V7(param.syncReason)], - [2, 3, param.checkUserStatusStrictly] - ] - } - export function Pb1_EnumC13221w3(param: LINETypes.Pb1_EnumC13221w3 | undefined): LINETypes.Pb1_EnumC13221w3&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13221w3[param] : param - } - export function SimCard(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.countryCode], - [11, 2, param.hni], - [11, 3, param.carrierName] - ] - } - export function fN0_C24473e(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function DestinationLIFFRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.originalUrl] - ] - } - export function vh_C37633d(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Pb1_W4(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Pb1_Y4(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetExchangeKeyRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function GetFollowBlacklistRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.cursor] - ] - } - export function GetFollowersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)], - [11, 2, param.cursor] - ] - } - export function GetFollowingsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)], - [11, 2, param.cursor] - ] - } - export function VR0_l(param: LINETypes.VR0_l | undefined): LINETypes.VR0_l&number | undefined { - return typeof param === "string" ? LINETypes.enums.VR0_l[param] : param - } - export function GetFontMetasRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, VR0_l(param.requestCause)] - ] - } - export function GetFriendDetailTarget(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.targetUserMid] - ] - } - export function GetFriendDetailsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.targetUsers&&(param.targetUsers).map(e=>GetFriendDetailTarget(e))]], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function Pb1_F4(param: LINETypes.Pb1_F4 | undefined): LINETypes.Pb1_F4&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_F4[param] : param - } - export function GetGnbBadgeStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.uenRevision] - ] - } - export function GetGroupCallUrlInfoRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.urlId] - ] - } - export function Pb1_C13042j5(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetHomeFlexContentRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.supportedFlexVersion] - ] - } - export function Eg_C8928b(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetHomeServicesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [8, param.ids]] - ] - } - export function fN0_C24471c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetJoinedMembershipByBotMidRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.botMid] - ] - } - export function GetJoinedMembershipRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.uniqueKey] - ] - } - export function Pb1_C13070l5(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function LiffViewWithoutUserContextRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.liffId] - ] - } - export function r80_EnumC34372l(param: LINETypes.r80_EnumC34372l | undefined): LINETypes.r80_EnumC34372l&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34372l[param] : param - } - export function GetLoginActorContextRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function GetMappedProfileIdsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.targetUserMids]] - ] - } - export function MessageBoxListRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.minChatId], - [11, 2, param.maxChatId], - [2, 3, param.activeOnly], - [8, 4, param.messageBoxCountLimit], - [2, 5, param.withUnreadCount], - [8, 6, param.lastMessagesPerMessageBoxCount], - [2, 7, param.unreadOnly] - ] - } - export function GetModuleLayoutV4Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.etag] - ] - } - export function NZ0_G(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.id], - [11, 2, param.etag], - [11, 3, param.recommendedModelId], - [11, 4, param.deviceAdId], - [2, 5, param.agreedWithTargetingAdByMid], - [11, 6, param.deviceId] - ] - } - export function NZ0_E(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.id], - [11, 2, param.etag], - [11, 3, param.recommendedModelId], - [11, 4, param.deviceAdId], - [2, 5, param.agreedWithTargetingAdByMid], - [11, 6, param.deviceId] - ] - } - export function GetModulesRequestV2(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.etag], - [11, 2, param.deviceAdId] - ] - } - export function NZ0_EnumC12169g1(param: LINETypes.NZ0_EnumC12169g1 | undefined): LINETypes.NZ0_EnumC12169g1&number | undefined { - return typeof param === "string" ? LINETypes.enums.NZ0_EnumC12169g1[param] : param - } - export function GetModulesRequestV3(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.etag], - [8, 2, NZ0_EnumC12169g1(param.tabIdentifier)], - [11, 3, param.deviceAdId], - [2, 4, param.agreedWithTargetingAdByMid] - ] - } - export function GetModulesV4WithStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.etag], - [11, 2, param.subTabId], - [11, 3, param.deviceAdId], - [2, 4, param.agreedWithTargetingAdByMid], - [11, 5, param.deviceId] - ] - } - export function GetMyAssetInformationV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.refresh] - ] - } - export function GetMyChatappsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.language], - [11, 2, param.continuationToken] - ] - } - export function GetMyDashboardRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, NZ0_EnumC12169g1(param.tabIdentifier)] - ] - } - export function GetNotificationSettingsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [11, param.chatMids]], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function GetPasswordHashingParametersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId] - ] - } - export function GetPasswordHashingParametersForPwdRegRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function GetPasswordHashingParametersForPwdVerifRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)] - ] - } - export function Device(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.udid], - [11, 2, param.deviceModel] - ] - } - export function GetPhoneVerifMethodForRegistrationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, Device(param.device)], - [12, 3, UserPhoneNumber(param.userPhoneNumber)] - ] - } - export function GetPhoneVerifMethodV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, Device(param.device)], - [12, 3, UserPhoneNumber(param.userPhoneNumber)] - ] - } - export function Pb1_C13126p5(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetPredefinedScenarioSetsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.deviceIds]] - ] - } - export function fN0_C24475g(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function fN0_C24476h(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function MessageBoxV2MessageId(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.deliveredTime], - [10, 2, param.messageId] - ] - } - export function GetPreviousMessagesV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageBoxId], - [12, 2, MessageBoxV2MessageId(param.endMessageId)], - [8, 3, param.messagesCount], - [2, 4, param.withReadCount], - [2, 5, param.receivedOnly] - ] - } - export function GetPublishedMembershipsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.basicSearchId] - ] - } - export function PurchaseEnabledRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.uniqueKey] - ] - } - export function NZ0_S(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetRecommendationDetailTarget(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.targetUserMid] - ] - } - export function GetRecommendationDetailsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.targetUsers&&(param.targetUsers).map(e=>GetRecommendationDetailTarget(e))]], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function ConfigurationsParams(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.regionOfUsim], - [11, 2, param.regionOfTelephone], - [11, 3, param.regionOfLocale], - [11, 4, param.carrier] - ] - } - export function RepairGroupMembers(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.numMembers], - [2, 3, param.invalidGroup] - ] - } - export function GetRepairElementsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.profile], - [2, 2, param.settings], - [12, 3, ConfigurationsParams(param.configurations)], - [8, 4, param.numLocalJoinedGroups], - [8, 5, param.numLocalInvitedGroups], - [8, 6, param.numLocalFriends], - [8, 7, param.numLocalRecommendations], - [8, 8, param.numLocalBlockedFriends], - [8, 9, param.numLocalBlockedRecommendations], - [13, 10, [11, 12, map(RepairGroupMembers, param.localGroupMembers)]], - [8, 11, Pb1_V7(param.syncReason)], - [13, 12, [11, 8, param.localProfileMappings]] - ] - } - export function GetResponseStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.botMid] - ] - } - export function WebLoginRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hookedFullUrl], - [11, 2, param.sessionString], - [2, 3, param.fromIAB], - [11, 4, param.sourceApplication] - ] - } - export function LiffChatContext(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function LiffSquareChatContext(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.squareChatMid] - ] - } - export function Qj_C13595l(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [12, 2, LiffChatContext(param.chat)], - [12, 3, LiffSquareChatContext(param.squareChat)] - ] - } - export function Qj_EnumC13584a(param: LINETypes.Qj_EnumC13584a | undefined): LINETypes.Qj_EnumC13584a&number | undefined { - return typeof param === "string" ? LINETypes.enums.Qj_EnumC13584a[param] : param - } - export function SKAdNetwork(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.identifiers], - [11, 2, param.version] - ] - } - export function LiffAdvertisingId(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.advertisingId], - [2, 2, param.tracking], - [8, 3, Qj_EnumC13584a(param.att)], - [12, 4, SKAdNetwork(param.skAdNetwork)] - ] - } - export function LiffDeviceSetting(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.videoAutoPlayAllowed], - [12, 2, LiffAdvertisingId(param.advertisingId)] - ] - } - export function LiffWebLoginRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hookedFullUrl], - [11, 2, param.sessionString], - [12, 3, Qj_C13595l(param.context)], - [12, 4, LiffDeviceSetting(param.deviceSetting)] - ] - } - export function GetSCCRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.basicSearchId] - ] - } - export function Eh_C8935c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function NZ0_U(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function SettingsAttributeEx(param: LINETypes.SettingsAttributeEx | undefined): LINETypes.SettingsAttributeEx&number | undefined { - return typeof param === "string" ? LINETypes.enums.SettingsAttributeEx[param] : param - } - export function GetSmartChannelRecommendationsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.maxResults], - [11, 2, param.placement], - [2, 3, param.testMode] - ] - } - export function GetSquareBotRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.botMid] - ] - } - export function Ob1_C12606a0(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Ob1_K1(param: LINETypes.Ob1_K1 | undefined): LINETypes.Ob1_K1&number | undefined { - return typeof param === "string" ? LINETypes.enums.Ob1_K1[param] : param - } - export function GetSubscriptionPlansRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [8, 2, Ob1_K1(param.storeCode)] - ] - } - export function Ob1_C12618e0(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [11, 2, param.continuationToken], - [8, 3, param.limit], - [8, 4, Ob1_O0(param.productType)] - ] - } - export function GetSubscriptionStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.includeOtherOwnedSubscriptions] - ] - } - export function Ob1_C12630i0(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetSuggestResourcesV2Request(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [15, 2, [11, param.productIds]] - ] - } - export function GetTaiwanBankBalanceRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.accessToken], - [11, 2, param.authorizationCode], - [11, 3, param.codeVerifier] - ] - } - export function GetTargetProfileTarget(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.targetUserMid] - ] - } - export function GetTargetProfilesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.targetUsers&&(param.targetUsers).map(e=>GetTargetProfileTarget(e))]], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function NZ0_C12150a0(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function GetThaiBankBalanceRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId] - ] - } - export function GetTotalCoinBalanceRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, jO0_EnumC27533B(param.appStoreCode)] - ] - } - export function ChannelIdWithLastUpdated(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.channelId], - [10, 2, param.lastUpdated] - ] - } - export function GetUserCollectionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.lastUpdatedTimeMillis], - [2, 2, param.includeSummary], - [8, 3, Ob1_O0(param.productType)] - ] - } - export function GetUserVectorRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.majorVersion] - ] - } - export function GetUsersMappedByProfileRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.profileId], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function InviteFriendsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.campaignId], - [15, 2, [11, param.invitees]] - ] - } - export function InviteIntoChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [14, 3, [11, param.targetUserMids]] - ] - } - export function IsProductForCollectionsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [11, 2, param.productId] - ] - } - export function IsStickerAvailableForCombinationStickerRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.packageId] - ] - } - export function LiffViewRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.liffId], - [12, 2, Qj_C13595l(param.context)], - [11, 3, param.lang], - [12, 4, LiffDeviceSetting(param.deviceSetting)], - [11, 5, param.msit], - [2, 6, param.subsequentLiff], - [11, 7, param.domain] - ] - } - export function IssueBirthdayGiftTokenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.recipientUserMid] - ] - } - export function IssueV3TokenForPrimaryRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.udid], - [11, 2, param.systemDisplayName], - [11, 3, param.modelName] - ] - } - export function JoinChatByCallUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.urlId], - [8, 2, param.reqSeq] - ] - } - export function KickoutFromGroupCallRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [15, 2, [11, param.targetMids]] - ] - } - export function DeviceLinkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId] - ] - } - export function LookupAvailableEapRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function MapProfileToUsersRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.profileId], - [15, 2, [11, param.targetMids]] - ] - } - export function MigratePrimaryUsingQrCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [11, 2, param.nonce], - - ] - } - export function NotifyChatAdEntryRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.scenarioId], - [11, 3, param.sdata] - ] - } - export function do0_EnumC23148f(param: LINETypes.do0_EnumC23148f | undefined): LINETypes.do0_EnumC23148f&number | undefined { - return typeof param === "string" ? LINETypes.enums.do0_EnumC23148f[param] : param - } - export function do0_EnumC23147e(param: LINETypes.do0_EnumC23147e | undefined): LINETypes.do0_EnumC23147e&number | undefined { - return typeof param === "string" ? LINETypes.enums.do0_EnumC23147e[param] : param - } - export function NotifyDeviceConnectionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId], - [11, 2, param.connectionId], - [8, 3, do0_EnumC23148f(param.connectionType)], - [8, 4, do0_EnumC23147e(param.code)], - [11, 5, param.errorReason], - [10, 6, param.startTime], - [10, 7, param.endTime] - ] - } - export function NotifyDeviceDisconnectionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId], - [11, 2, param.connectionId], - [10, 4, param.disconnectedTime] - ] - } - export function kf_p(param: LINETypes.kf_p | undefined): LINETypes.kf_p&number | undefined { - return typeof param === "string" ? LINETypes.enums.kf_p[param] : param - } - export function kf_o(param: LINETypes.kf_o | undefined): LINETypes.kf_o&number | undefined { - return typeof param === "string" ? LINETypes.enums.kf_o[param] : param - } - export function OATalkroomEventContext(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.timestampMillis], - [11, 2, param.botMid], - [11, 3, param.userMid], - [8, 4, kf_o(param.os)], - [11, 5, param.osVersion], - [11, 6, param.appVersion], - [11, 7, param.region] - ] - } - export function kf_u(param: LINETypes.kf_u | undefined): LINETypes.kf_u&number | undefined { - return typeof param === "string" ? LINETypes.enums.kf_u[param] : param - } - export function RichmenuCoordinates(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [4, 1, param.x], - [4, 2, param.y] - ] - } - export function kf_r(param: LINETypes.kf_r | undefined): LINETypes.kf_r&number | undefined { - return typeof param === "string" ? LINETypes.enums.kf_r[param] : param - } - export function RichmenuEvent(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, kf_u(param.type)], - [11, 2, param.richmenuId], - [12, 3, RichmenuCoordinates(param.coordinates)], - [8, 4, param.areaIndex], - [11, 5, param.clickUrl], - [8, 6, kf_r(param.clickAction)] - ] - } - export function kf_x(param: LINETypes.kf_x | undefined): LINETypes.kf_x&number | undefined { - return typeof param === "string" ? LINETypes.enums.kf_x[param] : param - } - export function kf_w(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function TalkroomEnterReferer(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.urlScheme], - [8, 2, kf_x(param.type)], - [12, 3, kf_w(param.content)] - ] - } - export function TalkroomEvent(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [12, 2, TalkroomEnterReferer(param.referer)] - ] - } - export function kf_m(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RichmenuEvent(param.richmenu)], - [12, 2, TalkroomEvent(param.talkroom)] - ] - } - export function OATalkroomEvent(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.eventId], - [8, 2, kf_p(param.type)], - [12, 3, OATalkroomEventContext(param.context)], - [12, 4, kf_m(param.content)] - ] - } - export function NotifyOATalkroomEventsRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.events&&(param.events).map(e=>OATalkroomEvent(e))]] - ] - } - export function do0_G(param: LINETypes.do0_G | undefined): LINETypes.do0_G&number | undefined { - return typeof param === "string" ? LINETypes.enums.do0_G[param] : param - } - export function do0_m0(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function do0_C23143a(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.bytes] - ] - } - export function do0_C23142E(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, do0_m0(param.voidResult)], - [12, 2, do0_C23143a(param.binaryResult)] - ] - } - export function do0_F(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.scenarioId], - [11, 2, param.deviceId], - [10, 3, param.revision], - [10, 4, param.startTime], - [10, 5, param.endTime], - [8, 6, do0_G(param.code)], - [11, 7, param.errorReason], - [11, 8, param.bleNotificationPayload], - [15, 9, [12, param.actionResults&&(param.actionResults).map(e=>do0_C23142E(e))]], - [11, 10, param.connectionId] - ] - } - export function NotifyScenarioExecutedRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [12, param.scenarioResults&&(param.scenarioResults).map(e=>do0_F(e))]] - ] - } - export function ApplicationType(param: LINETypes.ApplicationType | undefined): LINETypes.ApplicationType&number | undefined { - return typeof param === "string" ? LINETypes.enums.ApplicationType[param] : param - } - export function DeviceInfo(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceName], - [11, 2, param.systemName], - [11, 3, param.systemVersion], - [11, 4, param.model], - [11, 5, param.webViewVersion], - [8, 10, CarrierCode(param.carrierCode)], - [11, 11, param.carrierName], - [8, 20, ApplicationType(param.applicationType)] - ] - } - export function AuthSessionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [11, 11, param.metaData]] - ] - } - export function OpenSessionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [11, 11, param.metaData]] - ] - } - export function PermitLoginRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [13, 2, [11, 11, param.metaData]] - ] - } - export function Price(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.currency], - [11, 2, param.amount], - [11, 3, param.priceString] - ] - } - export function PurchaseOrder(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.shopId], - [11, 2, param.productId], - [11, 5, param.recipientMid], - [12, 11, Price(param.price)], - [2, 12, param.enableLinePointAutoExchange], - [12, 21, Locale(param.locale)], - [13, 31, [11, 11, param.presentAttributes]] - ] - } - export function PurchaseSubscriptionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.billingItemId], - , - [8, 3, Ob1_K1(param.storeCode)], - [11, 4, param.storeOrderId], - [2, 5, param.outsideAppPurchase], - [2, 6, param.unavailableItemPurchase] - ] - } - export function PutE2eeKeyRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [13, 2, [11, 11, param.e2eeKey]] - ] - } - export function ReactRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [10, 2, param.messageId], - [12, 3, ReactionType(param.reactionType)] - ] - } - export function RefreshAccessTokenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.refreshToken] - ] - } - export function RSAEncryptedPassword(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.encrypted], - [11, 2, param.keyName] - ] - } - export function RegisterCampaignRewardRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.campaignId] - ] - } - export function Pb1_C13097n4(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.version], - [8, 2, param.keyId], - [11, 4, param.keyData], - [10, 5, param.createdTime] - ] - } - export function Pb1_W6(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, Pb1_C13097n4(param.publicKey)], - [11, 3, param.blobPayload] - ] - } - export function RegisterPrimaryCredentialRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - - ] - } - export function ReissueChatTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.groupMid] - ] - } - export function RejectChatInvitationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid] - ] - } - export function RemoveFollowerRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)] - ] - } - export function RemoveFromFollowBlacklistRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)] - ] - } - export function RemoveItemFromCollectionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.collectionId], - [11, 3, param.productId], - [11, 4, param.itemId] - ] - } - export function RemoveProductFromSubscriptionSlotRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Ob1_O0(param.productType)], - [11, 2, param.productId], - , - [14, 4, [11, param.productIds]] - ] - } - export function Pb1_EnumC13128p7(param: LINETypes.Pb1_EnumC13128p7 | undefined): LINETypes.Pb1_EnumC13128p7&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13128p7[param] : param - } - export function AbuseMessage(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.messageId], - [11, 2, param.message], - [11, 3, param.senderMid], - [8, 4, ContentType(param.contentType)], - [10, 5, param.createdTime], - [13, 6, [11, 11, param.metadata]] - ] - } - export function AbuseReport(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_EnumC13128p7(param.reportSource)], - [8, 2, ApplicationType(param.applicationType)], - [15, 3, [8, param.spammerReasons]], - [15, 4, [12, param.abuseMessages&&(param.abuseMessages).map(e=>AbuseMessage(e))]], - [13, 5, [11, 11, param.metadata]] - ] - } - export function EvidenceId(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.spaceId], - [11, 2, param.objectId] - ] - } - export function AbuseReportLineMeeting(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.reporteeMid], - [15, 2, [8, param.spammerReasons]], - [15, 3, [12, param.evidenceIds&&(param.evidenceIds).map(e=>EvidenceId(e))]], - [11, 4, param.chatMid] - ] - } - export function Pb1_C12938c(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AbuseReport(param.message)], - [12, 2, AbuseReportLineMeeting(param.lineMeeting)] - ] - } - export function ReportAbuseExRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_C12938c(param.abuseReportEntry)] - ] - } - export function BeaconData(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.hwid], - [8, 2, param.rssi], - [8, 3, param.txPower], - [10, 4, param.scannedTimestampMs] - ] - } - export function Geolocation(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [4, 1, param.longitude], - [4, 2, param.latitude], - [12, 3, GeolocationAccuracy(param.accuracy)], - [4, 4, param.altitudeMeters], - [4, 5, param.velocityMetersPerSecond], - [4, 6, param.bearingDegrees], - [15, 7, [12, param.beaconData&&(param.beaconData).map(e=>BeaconData(e))]] - ] - } - export function Pb1_EnumC12917a6(param: LINETypes.Pb1_EnumC12917a6 | undefined): LINETypes.Pb1_EnumC12917a6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC12917a6[param] : param - } - export function Pb1_EnumC12998g3(param: LINETypes.Pb1_EnumC12998g3 | undefined): LINETypes.Pb1_EnumC12998g3&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC12998g3[param] : param - } - export function WifiSignal(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.ssid], - [11, 3, param.bssid], - [11, 4, param.wifiStandard], - [4, 5, param.frequency], - [10, 10, param.lastSeenTimestamp], - [8, 11, param.rssi] - ] - } - export function ClientNetworkStatus(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_EnumC12998g3(param.networkType)], - [15, 2, [12, param.wifiSignals&&(param.wifiSignals).map(e=>WifiSignal(e))]] - ] - } - export function Pb1_F6(param: LINETypes.Pb1_F6 | undefined): LINETypes.Pb1_F6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_F6[param] : param - } - export function PoiInfo(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.poiId], - [8, 2, Pb1_F6(param.poiRealm)] - ] - } - export function LocationDebugInfo(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, PoiInfo(param.poiInfo)] - ] - } - export function AvatarProfile(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.version], - [10, 2, param.updatedMillis], - [11, 3, param.thumbnail], - [2, 4, param.usablePublicly] - ] - } - export function Pb1_N6(param: LINETypes.Pb1_N6 | undefined): LINETypes.Pb1_N6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_N6[param] : param - } - export function Pb1_O6(param: LINETypes.Pb1_O6 | undefined): LINETypes.Pb1_O6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_O6[param] : param - } - export function Profile(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.mid], - [11, 3, param.userid], - [11, 10, param.phone], - [11, 11, param.email], - [11, 12, param.regionCode], - [11, 20, param.displayName], - [11, 21, param.phoneticName], - [11, 22, param.pictureStatus], - [11, 23, param.thumbnailUrl], - [11, 24, param.statusMessage], - [2, 31, param.allowSearchByUserid], - [2, 32, param.allowSearchByEmail], - [11, 33, param.picturePath], - [11, 34, param.musicProfile], - [11, 35, param.videoProfile], - [13, 36, [11, 11, param.statusMessageContentMetadata]], - [12, 37, AvatarProfile(param.avatarProfile)], - [2, 38, param.nftProfile], - [8, 39, Pb1_N6(param.pictureSource)], - [11, 40, param.profileId], - [8, 41, Pb1_O6(param.profileType)], - [10, 42, param.createdTimeMillis] - ] - } - export function Pb1_EnumC13009h0(param: LINETypes.Pb1_EnumC13009h0 | undefined): LINETypes.Pb1_EnumC13009h0&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13009h0[param] : param - } - export function PushRecvReport(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.pushTrackingId], - [10, 2, param.recvTimestamp], - [8, 3, param.battery], - [8, 4, Pb1_EnumC13009h0(param.batteryMode)], - [8, 5, Pb1_EnumC12998g3(param.clientNetworkType)], - [11, 6, param.carrierCode], - [10, 7, param.displayTimestamp] - ] - } - export function ReportRefreshedAccessTokenRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.accessToken] - ] - } - export function EmailConfirmationStatus(param: LINETypes.EmailConfirmationStatus | undefined): LINETypes.EmailConfirmationStatus&number | undefined { - return typeof param === "string" ? LINETypes.enums.EmailConfirmationStatus[param] : param - } - export function AccountMigrationPincodeType(param: LINETypes.AccountMigrationPincodeType | undefined): LINETypes.AccountMigrationPincodeType&number | undefined { - return typeof param === "string" ? LINETypes.enums.AccountMigrationPincodeType[param] : param - } - export function Pb1_I6(param: LINETypes.Pb1_I6 | undefined): LINETypes.Pb1_I6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_I6[param] : param - } - export function Pb1_S7(param: LINETypes.Pb1_S7 | undefined): LINETypes.Pb1_S7&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_S7[param] : param - } - export function Pb1_M6(param: LINETypes.Pb1_M6 | undefined): LINETypes.Pb1_M6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_M6[param] : param - } - export function Pb1_gd(param: LINETypes.Pb1_gd | undefined): LINETypes.Pb1_gd&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_gd[param] : param - } - export function Settings(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 10, param.notificationEnable], - [10, 11, param.notificationMuteExpiration], - [2, 12, param.notificationNewMessage], - [2, 13, param.notificationGroupInvitation], - [2, 14, param.notificationShowMessage], - [2, 15, param.notificationIncomingCall], - [11, 16, param.notificationSoundMessage], - [11, 17, param.notificationSoundGroup], - [2, 18, param.notificationDisabledWithSub], - [2, 19, param.notificationPayment], - [2, 20, param.privacySyncContacts], - [2, 21, param.privacySearchByPhoneNumber], - [2, 22, param.privacySearchByUserid], - [2, 23, param.privacySearchByEmail], - [2, 24, param.privacyAllowSecondaryDeviceLogin], - [2, 25, param.privacyProfileImagePostToMyhome], - [2, 26, param.privacyReceiveMessagesFromNotFriend], - [2, 27, param.privacyAgreeUseLineCoinToPaidCall], - [2, 28, param.privacyAgreeUsePaidCall], - [2, 29, param.privacyAllowFriendRequest], - [11, 30, param.contactMyTicket], - [8, 40, IdentityProvider(param.identityProvider)], - [11, 41, param.identityIdentifier], - [13, 42, [8, 11, param.snsAccounts]], - [2, 43, param.phoneRegistration], - [8, 44, EmailConfirmationStatus(param.emailConfirmationStatus)], - [8, 45, AccountMigrationPincodeType(param.accountMigrationPincodeType)], - [2, 46, param.enforcedInputAccountMigrationPincode], - [8, 47, AccountMigrationPincodeType(param.securityCenterSettingsType)], - [2, 48, param.allowUnregistrationSecondaryDevice], - [2, 49, param.pwlessPrimaryCredentialRegistration], - [11, 50, param.preferenceLocale], - [13, 60, [8, 11, param.customModes]], - [2, 61, param.e2eeEnable], - [2, 62, param.hitokotoBackupRequested], - [2, 63, param.privacyProfileMusicPostToMyhome], - [2, 65, param.privacyAllowNearby], - [10, 66, param.agreementNearbyTime], - [10, 67, param.agreementSquareTime], - [2, 68, param.notificationMention], - [10, 69, param.botUseAgreementAcceptedAt], - [10, 70, param.agreementShakeFunction], - [10, 71, param.agreementMobileContactName], - [2, 72, param.notificationThumbnail], - [10, 73, param.agreementSoundToText], - [11, 74, param.privacyPolicyVersion], - [10, 75, param.agreementAdByWebAccess], - [10, 76, param.agreementPhoneNumberMatching], - [10, 77, param.agreementCommunicationInfo], - [8, 78, Pb1_I6(param.privacySharePersonalInfoToFriends)], - [10, 79, param.agreementThingsWirelessCommunication], - [10, 80, param.agreementGdpr], - [8, 81, Pb1_S7(param.privacyStatusMessageHistory)], - [10, 82, param.agreementProvideLocation], - [10, 83, param.agreementBeacon], - [8, 85, Pb1_M6(param.privacyAllowProfileHistory)], - [10, 86, param.agreementContentsSuggest], - [10, 87, param.agreementContentsSuggestDataCollection], - [8, 88, Pb1_gd(param.privacyAgeResult)], - [2, 89, param.privacyAgeResultReceived], - [10, 90, param.agreementOcrImageCollection], - [2, 91, param.privacyAllowFollow], - [2, 92, param.privacyShowFollowList], - [2, 93, param.notificationBadgeTalkOnly], - [10, 94, param.agreementIcna], - [2, 95, param.notificationReaction], - [10, 96, param.agreementMid], - [2, 97, param.homeNotificationNewFriend], - [2, 98, param.homeNotificationFavoriteFriendUpdate], - [2, 99, param.homeNotificationGroupMemberUpdate], - [2, 100, param.homeNotificationBirthday], - [13, 101, [8, 2, param.eapAllowedToConnect]], - [10, 102, param.agreementLineOutUse], - [10, 103, param.agreementLineOutProvideInfo], - [2, 104, param.notificationShowProfileImage], - [10, 105, param.agreementPdpa], - [11, 106, param.agreementLocationVersion], - [2, 107, param.zhdPageAllowedToShow], - [10, 108, param.agreementSnowAiAvatar], - [2, 109, param.eapOnlyAccountTargetCountry], - [10, 110, param.agreementLypPremiumAlbum], - [10, 112, param.agreementLypPremiumAlbumVersion], - [10, 113, param.agreementAlbumUsageData], - [10, 114, param.agreementAlbumUsageDataVersion], - [10, 115, param.agreementLypPremiumBackup], - [10, 116, param.agreementLypPremiumBackupVersion], - [10, 117, param.agreementOaAiAssistant], - [10, 118, param.agreementOaAiAssistantVersion], - [10, 119, param.agreementLypPremiumMultiProfile], - [10, 120, param.agreementLypPremiumMultiProfileVersion] - ] - } - export function Pb1_od(param: LINETypes.Pb1_od | undefined): LINETypes.Pb1_od&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_od[param] : param - } - export function T70_K(param: LINETypes.T70_K | undefined): LINETypes.T70_K&number | undefined { - return typeof param === "string" ? LINETypes.enums.T70_K[param] : param - } - export function ReqToSendPhonePinCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, UserPhoneNumber(param.userPhoneNumber)], - [8, 3, T70_K(param.verifMethod)] - ] - } - export function r80_g0(param: LINETypes.r80_g0 | undefined): LINETypes.r80_g0&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_g0[param] : param - } - export function CoinPurchaseReservation(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.productId], - [11, 2, param.country], - [11, 3, param.currency], - [11, 4, param.price], - [8, 5, jO0_EnumC27533B(param.appStoreCode)], - [11, 6, param.language], - [8, 7, jO0_EnumC27559z(param.pgCode)], - [11, 8, param.redirectUrl] - ] - } - export function fN0_G(param: LINETypes.fN0_G | undefined): LINETypes.fN0_G&number | undefined { - return typeof param === "string" ? LINETypes.enums.fN0_G[param] : param - } - export function ReserveSubscriptionPurchaseRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.billingItemId], - [8, 2, fN0_G(param.storeCode)], - [2, 3, param.addOaFriend], - [11, 4, param.entryPoint], - [11, 5, param.campaignId], - [11, 6, param.invitationId] - ] - } - export function ReserveRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.uniqueKey] - ] - } - export function Pb1_C13155r7(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.restoreClaim] - ] - } - export function Pb1_C13183t7(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function RevokeTokensRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.accessTokens]] - ] - } - export function StudentInformation(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.schoolName], - [11, 2, param.graduationDate] - ] - } - export function SaveStudentInformationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, StudentInformation(param.studentInformation)] - ] - } - export function SendEncryptedE2EEKeyRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - - ] - } - export function SendPostbackRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.messageId], - [11, 2, param.url], - [11, 3, param.chatMID], - [11, 4, param.originMID] - ] - } - export function SetChatHiddenStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatMid], - [10, 3, param.lastMessageId], - [2, 4, param.hidden] - ] - } - export function SetHashedPasswordRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [11, 2, param.password] - ] - } - export function SetPasswordRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [11, 2, param.hashedPassword] - ] - } - export function Ob1_C12660s1(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function StartPhotoboothRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid] - ] - } - export function SIMInfo(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.phoneNumber], - [11, 2, param.countryCode] - ] - } - export function StopBundleSubscriptionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - , - [8, 2, Ob1_K1(param.storeCode)] - ] - } - export function Qj_e0(param: LINETypes.Qj_e0 | undefined): LINETypes.Qj_e0&number | undefined { - return typeof param === "string" ? LINETypes.enums.Qj_e0[param] : param - } - export function ShareTargetPickerResultRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.ott], - [11, 2, param.liffId], - [8, 3, Qj_e0(param.resultCode)], - [11, 4, param.resultDescription] - ] - } - export function SubWindowResultRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.msit], - [11, 2, param.mstVerifier] - ] - } - export function Pb1_EnumC13029i6(param: LINETypes.Pb1_EnumC13029i6 | undefined): LINETypes.Pb1_EnumC13029i6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_EnumC13029i6[param] : param - } - export function ContactModification(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_EnumC13029i6(param.type)], - [11, 2, param.luid], - [15, 11, [11, param.phones]], - [15, 12, [11, param.emails]], - [15, 13, [11, param.userids]], - [11, 14, param.mobileContactName], - [11, 15, param.phoneticName] - ] - } - export function Pb1_J4(param: LINETypes.Pb1_J4 | undefined): LINETypes.Pb1_J4&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_J4[param] : param - } - export function SyncRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.lastRevision], - [8, 2, param.count], - [10, 3, param.lastGlobalRevision], - [10, 4, param.lastIndividualRevision], - [8, 5, Pb1_J4(param.fullSyncRequestReason)], - [13, 6, [8, 10, param.lastPartialFullSyncs]] - ] - } - export function Pb1_G4(param: LINETypes.Pb1_G4 | undefined): LINETypes.Pb1_G4&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_G4[param] : param - } - export function UnfollowRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_A4(param.followMid)] - ] - } - export function DeviceUnlinkRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.deviceId] - ] - } - export function ChannelNotificationSetting(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.channelId], - [11, 2, param.name], - [2, 3, param.notificationReceivable], - [2, 4, param.messageReceivable], - [2, 5, param.showDefault] - ] - } - export function ChannelSettings(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.unapprovedMessageReceivable] - ] - } - export function GroupExtra(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.creator], - [2, 2, param.preventedJoinByTicket], - [11, 3, param.invitationTicket], - [13, 4, [11, 10, param.memberMids]], - [13, 5, [11, 10, param.inviteeMids]], - [2, 6, param.addFriendDisabled], - [2, 7, param.ticketDisabled], - [2, 8, param.autoName] - ] - } - export function Pb1_A6(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function Pb1_C13208v4(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GroupExtra(param.groupExtra)], - [12, 2, Pb1_A6(param.peerExtra)] - ] - } - export function Chat(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_Z2(param.type)], - [11, 2, param.chatMid], - [10, 3, param.createdTime], - [2, 4, param.notificationDisabled], - [10, 5, param.favoriteTimestamp], - [11, 6, param.chatName], - [11, 7, param.picturePath], - [12, 8, Pb1_C13208v4(param.extra)] - ] - } - export function Pb1_O2(param: LINETypes.Pb1_O2 | undefined): LINETypes.Pb1_O2&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_O2[param] : param - } - export function UpdateChatRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, Chat(param.chat)], - [8, 3, Pb1_O2(param.updatedAttribute)] - ] - } - export function ContactSetting(param: LINETypes.ContactSetting | undefined): LINETypes.ContactSetting&number | undefined { - return typeof param === "string" ? LINETypes.enums.ContactSetting[param] : param - } - export function Pb1_H6(param: LINETypes.Pb1_H6 | undefined): LINETypes.Pb1_H6&number | undefined { - return typeof param === "string" ? LINETypes.enums.Pb1_H6[param] : param - } - export function ExtendedProfileBirthday(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.year], - [8, 2, Pb1_H6(param.yearPrivacyLevelType)], - [2, 3, param.yearEnabled], - [11, 5, param.day], - [8, 6, Pb1_H6(param.dayPrivacyLevelType)], - [2, 7, param.dayEnabled] - ] - } - export function ExtendedProfile(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ExtendedProfileBirthday(param.birthday)] - ] - } - export function Pb1_ad(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.title] - ] - } - export function UpdateGroupCallUrlRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.urlId], - [12, 2, Pb1_ad(param.targetAttribute)] - ] - } - export function NotificationType(param: LINETypes.NotificationType | undefined): LINETypes.NotificationType&number | undefined { - return typeof param === "string" ? LINETypes.enums.NotificationType[param] : param - } - export function UpdatePasswordRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [11, 2, param.hashedPassword] - ] - } - export function ProfileContent(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.value], - [13, 2, [11, 11, param.meta]] - ] - } - export function UpdateProfileAttributesRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [8, 12, map(ProfileContent, param.profileAttributes)]] - ] - } - export function vh_m(param: LINETypes.vh_m | undefined): LINETypes.vh_m&number | undefined { - return typeof param === "string" ? LINETypes.enums.vh_m[param] : param - } - export function UpdateSafetyStatusRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.disasterId], - [8, 2, vh_m(param.safetyStatus)], - [11, 3, param.message] - ] - } - export function UsePhotoboothTicketRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.chatMid], - [11, 2, param.photoboothSessionId] - ] - } - export function r80_EnumC34376p(param: LINETypes.r80_EnumC34376p | undefined): LINETypes.r80_EnumC34376p&number | undefined { - return typeof param === "string" ? LINETypes.enums.r80_EnumC34376p[param] : param - } - export function VerifyAccountUsingHashedPwdRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)], - [11, 3, param.v1HashedPassword], - [11, 4, param.clientHashedPassword] - ] - } - export function VerifyAssertionRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [11, 2, param.credentialId], - [11, 3, param.assertionObject], - [11, 4, param.clientDataJSON] - ] - } - export function VerifyAttestationRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.sessionId], - [11, 2, param.attestationObject], - [11, 3, param.clientDataJSON] - ] - } - export function BirthdayGiftAssociationVerifyRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.associationToken] - ] - } - export function T70_j1(param: LINETypes.T70_j1 | undefined): LINETypes.T70_j1&number | undefined { - return typeof param === "string" ? LINETypes.enums.T70_j1[param] : param - } - export function SocialLogin(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, T70_j1(param.type)], - [11, 2, param.accessToken], - [11, 3, param.countryCode] - ] - } - export function a80_EnumC16644b(param: LINETypes.a80_EnumC16644b | undefined): LINETypes.a80_EnumC16644b&number | undefined { - return typeof param === "string" ? LINETypes.enums.a80_EnumC16644b[param] : param - } - export function EapLogin(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, a80_EnumC16644b(param.type)], - [11, 2, param.accessToken], - [11, 3, param.countryCode] - ] - } - export function VerifyEapLoginRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, EapLogin(param.eapLogin)] - ] - } - export function VerifyPhonePinCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, UserPhoneNumber(param.userPhoneNumber)], - [11, 3, param.pinCode] - ] - } - export function VerifyPinCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.pinCode] - ] - } - export function VerifyQrCodeRequest(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [13, 2, [11, 11, param.metaData]] - ] - } - export function acceptChatInvitationByTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptChatInvitationByTicketRequest(param.request)] - ] - } - export function acceptChatInvitation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptChatInvitationRequest(param.request)] - ] - } - export function SquareService_acceptSpeakers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptSpeakersRequest(param.request)] - ] - } - export function SquareService_acceptToChangeRole_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptToChangeRoleRequest(param.request)] - ] - } - export function SquareService_acceptToListen_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptToListenRequest(param.request)] - ] - } - export function SquareService_acceptToSpeak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcceptToSpeakRequest(param.request)] - ] - } - export function SquareService_acquireLiveTalk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AcquireLiveTalkRequest(param.request)] - ] - } - export function SquareService_cancelToSpeak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelToSpeakRequest(param.request)] - ] - } - export function SquareService_fetchLiveTalkEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FetchLiveTalkEventsRequest(param.request)] - ] - } - export function SquareService_findLiveTalkByInvitationTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FindLiveTalkByInvitationTicketRequest(param.request)] - ] - } - export function SquareService_forceEndLiveTalk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ForceEndLiveTalkRequest(param.request)] - ] - } - export function SquareService_getLiveTalkInfoForNonMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetLiveTalkInfoForNonMemberRequest(param.request)] - ] - } - export function SquareService_getLiveTalkInvitationUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetLiveTalkInvitationUrlRequest(param.request)] - ] - } - export function SquareService_getLiveTalkSpeakersForNonMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetLiveTalkSpeakersForNonMemberRequest(param.request)] - ] - } - export function SquareService_getSquareInfoByChatMid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareInfoByChatMidRequest(param.request)] - ] - } - export function SquareService_inviteToChangeRole_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteToChangeRoleRequest(param.request)] - ] - } - export function SquareService_inviteToListen_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteToListenRequest(param.request)] - ] - } - export function SquareService_inviteToLiveTalk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteToLiveTalkRequest(param.request)] - ] - } - export function SquareService_inviteToSpeak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteToSpeakRequest(param.request)] - ] - } - export function SquareService_joinLiveTalk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, JoinLiveTalkRequest(param.request)] - ] - } - export function SquareService_kickOutLiveTalkParticipants_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, KickOutLiveTalkParticipantsRequest(param.request)] - ] - } - export function SquareService_rejectSpeakers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RejectSpeakersRequest(param.request)] - ] - } - export function SquareService_rejectToSpeak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RejectToSpeakRequest(param.request)] - ] - } - export function SquareService_removeLiveTalkSubscription_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RemoveLiveTalkSubscriptionRequest(param.request)] - ] - } - export function SquareService_reportLiveTalk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportLiveTalkRequest(param.request)] - ] - } - export function SquareService_reportLiveTalkSpeaker_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportLiveTalkSpeakerRequest(param.request)] - ] - } - export function SquareService_requestToListen_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RequestToListenRequest(param.request)] - ] - } - export function SquareService_requestToSpeak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RequestToSpeakRequest(param.request)] - ] - } - export function SquareService_updateLiveTalkAttrs_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateLiveTalkAttrsRequest(param.request)] - ] - } - export function acquireCallRoute_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.to], - [8, 3, Pb1_D4(param.callType)], - [13, 4, [11, 11, param.fromEnvInfo]] - ] - } - export function acquireEncryptedAccessToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, Pb1_EnumC13222w4(param.featureType)] - ] - } - export function acquireGroupCallRoute_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.chatMid], - [8, 3, Pb1_EnumC13237x5(param.mediaType)], - [2, 4, param.isInitialHost], - [15, 5, [11, param.capabilities]] - ] - } - export function acquireOACallRoute_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AcquireOACallRouteRequest(param.request)] - ] - } - export function acquirePaidCallRoute_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, PaidCallType(param.paidCallType)], - [11, 3, param.dialedNumber], - [11, 4, param.language], - [11, 5, param.networkCode], - [2, 6, param.disableCallerId], - [11, 7, param.referer], - [11, 8, param.adSessionId] - ] - } - export function activateSubscription_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ActivateSubscriptionRequest(param.request)] - ] - } - export function adTypeOptOutClickEvent_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AdTypeOptOutClickEventRequest(param.request)] - ] - } - export function addFriendByMid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AddFriendByMidRequest(param.request)] - ] - } - export function addItemToCollection_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AddItemToCollectionRequest(param.request)] - ] - } - export function addOaFriend_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_C12155c(param.request)] - ] - } - export function addProductToSubscriptionSlot_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AddProductToSubscriptionSlotRequest(param.req)] - ] - } - export function addThemeToSubscriptionSlot_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AddThemeToSubscriptionSlotRequest(param.req)] - ] - } - export function addToFollowBlacklist_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AddToFollowBlacklistRequest(param.addToFollowBlacklistRequest)] - ] - } - export function SquareService_agreeToTerms_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AgreeToTermsRequest(param.request)] - ] - } - export function SquareService_approveSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ApproveSquareMembersRequest(param.request)] - ] - } - export function SquareService_checkJoinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CheckJoinCodeRequest(param.request)] - ] - } - export function SquareService_createSquareChatAnnouncement_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CreateSquareChatAnnouncementRequest(param.createSquareChatAnnouncementRequest)] - ] - } - export function SquareService_createSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CreateSquareChatRequest(param.request)] - ] - } - export function SquareService_createSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CreateSquareRequest(param.request)] - ] - } - export function SquareService_deleteSquareChatAnnouncement_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteSquareChatAnnouncementRequest(param.deleteSquareChatAnnouncementRequest)] - ] - } - export function SquareService_deleteSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteSquareChatRequest(param.request)] - ] - } - export function SquareService_deleteSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteSquareRequest(param.request)] - ] - } - export function SquareService_destroyMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DestroyMessageRequest(param.request)] - ] - } - export function SquareService_destroyMessages_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DestroyMessagesRequest(param.request)] - ] - } - export function SquareService_fetchMyEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FetchMyEventsRequest(param.request)] - ] - } - export function SquareService_fetchSquareChatEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FetchSquareChatEventsRequest(param.request)] - ] - } - export function SquareService_findSquareByEmid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FindSquareByEmidRequest(param.findSquareByEmidRequest)] - ] - } - export function SquareService_findSquareByInvitationTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FindSquareByInvitationTicketRequest(param.request)] - ] - } - export function SquareService_findSquareByInvitationTicketV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FindSquareByInvitationTicketV2Request(param.request)] - ] - } - export function SquareService_getGoogleAdOptions_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetGoogleAdOptionsRequest(param.request)] - ] - } - export function SquareService_getInvitationTicketUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetInvitationTicketUrlRequest(param.request)] - ] - } - export function SquareService_getJoinableSquareChats_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetJoinableSquareChatsRequest(param.request)] - ] - } - export function SquareService_getJoinedSquareChats_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetJoinedSquareChatsRequest(param.request)] - ] - } - export function SquareService_getJoinedSquares_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetJoinedSquaresRequest(param.request)] - ] - } - export function SquareService_getMessageReactions_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetMessageReactionsRequest(param.request)] - ] - } - export function SquareService_getNoteStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetNoteStatusRequest(param.request)] - ] - } - export function SquareService_getPopularKeywords_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPopularKeywordsRequest(param.request)] - ] - } - export function SquareService_getSquareAuthorities_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareAuthoritiesRequest(param.request)] - ] - } - export function SquareService_getSquareAuthority_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareAuthorityRequest(param.request)] - ] - } - export function SquareService_getCategories_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareCategoriesRequest(param.request)] - ] - } - export function SquareService_getSquareChatAnnouncements_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatAnnouncementsRequest(param.getSquareChatAnnouncementsRequest)] - ] - } - export function SquareService_getSquareChatEmid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatEmidRequest(param.request)] - ] - } - export function SquareService_getSquareChatFeatureSet_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatFeatureSetRequest(param.request)] - ] - } - export function SquareService_getSquareChatMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatMemberRequest(param.request)] - ] - } - export function SquareService_getSquareChatMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatMembersRequest(param.request)] - ] - } - export function SquareService_getSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatRequest(param.request)] - ] - } - export function SquareService_getSquareChatStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareChatStatusRequest(param.request)] - ] - } - export function SquareService_getSquareEmid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareEmidRequest(param.request)] - ] - } - export function SquareService_getSquareFeatureSet_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareFeatureSetRequest(param.request)] - ] - } - export function SquareService_getSquareMemberRelation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareMemberRelationRequest(param.request)] - ] - } - export function SquareService_getSquareMemberRelations_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareMemberRelationsRequest(param.request)] - ] - } - export function SquareService_getSquareMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareMemberRequest(param.request)] - ] - } - export function SquareService_getSquareMembersBySquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareMembersBySquareRequest(param.request)] - ] - } - export function SquareService_getSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareMembersRequest(param.request)] - ] - } - export function SquareService_getSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareRequest(param.request)] - ] - } - export function SquareService_getSquareStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareStatusRequest(param.request)] - ] - } - export function SquareService_getSquareThreadMid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareThreadMidRequest(param.request)] - ] - } - export function SquareService_getSquareThread_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareThreadRequest(param.request)] - ] - } - export function SquareService_getUserSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetUserSettingsRequest(param.request)] - ] - } - export function SquareService_hideSquareMemberContents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, HideSquareMemberContentsRequest(param.request)] - ] - } - export function SquareService_inviteIntoSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteIntoSquareChatRequest(param.request)] - ] - } - export function SquareService_inviteToSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteToSquareRequest(param.request)] - ] - } - export function SquareService_joinSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, JoinSquareChatRequest(param.request)] - ] - } - export function SquareService_joinSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, JoinSquareRequest(param.request)] - ] - } - export function SquareService_joinSquareThread_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, JoinSquareThreadRequest(param.request)] - ] - } - export function SquareService_leaveSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LeaveSquareChatRequest(param.request)] - ] - } - export function SquareService_leaveSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LeaveSquareRequest(param.request)] - ] - } - export function SquareService_leaveSquareThread_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LeaveSquareThreadRequest(param.request)] - ] - } - export function SquareService_manualRepair_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ManualRepairRequest(param.request)] - ] - } - export function SquareService_markAsRead_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, MarkAsReadRequest(param.request)] - ] - } - export function SquareService_markChatsAsRead_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, MarkChatsAsReadRequest(param.request)] - ] - } - export function SquareService_markThreadsAsRead_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, MarkThreadsAsReadRequest(param.request)] - ] - } - export function SquareService_reactToMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReactToMessageRequest(param.request)] - ] - } - export function SquareService_refreshSubscriptions_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RefreshSubscriptionsRequest(param.request)] - ] - } - export function SquareService_rejectSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RejectSquareMembersRequest(param.request)] - ] - } - export function SquareService_removeSubscriptions_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RemoveSubscriptionsRequest(param.request)] - ] - } - export function SquareService_reportMessageSummary_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportMessageSummaryRequest(param.request)] - ] - } - export function SquareService_reportSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportSquareChatRequest(param.request)] - ] - } - export function SquareService_reportSquareMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportSquareMemberRequest(param.request)] - ] - } - export function SquareService_reportSquareMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportSquareMessageRequest(param.request)] - ] - } - export function SquareService_reportSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportSquareRequest(param.request)] - ] - } - export function SquareService_searchSquareChatMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SearchSquareChatMembersRequest(param.request)] - ] - } - export function SquareService_searchSquareChatMentionables_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SearchSquareChatMentionablesRequest(param.request)] - ] - } - export function SquareService_searchSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SearchSquareMembersRequest(param.request)] - ] - } - export function SquareService_searchSquares_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SearchSquaresRequest(param.request)] - ] - } - export function SquareService_sendMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SendMessageRequest(param.request)] - ] - } - export function SquareService_sendSquareThreadMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SendSquareThreadMessageRequest(param.request)] - ] - } - export function SquareService_syncSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SyncSquareMembersRequest(param.request)] - ] - } - export function SquareService_unhideSquareMemberContents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UnhideSquareMemberContentsRequest(param.request)] - ] - } - export function SquareService_unsendMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UnsendMessageRequest(param.request)] - ] - } - export function SquareService_updateSquareAuthority_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareAuthorityRequest(param.request)] - ] - } - export function SquareService_updateSquareChatMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareChatMemberRequest(param.request)] - ] - } - export function SquareService_updateSquareChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareChatRequest(param.request)] - ] - } - export function SquareService_updateSquareFeatureSet_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareFeatureSetRequest(param.request)] - ] - } - export function SquareService_updateSquareMemberRelation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareMemberRelationRequest(param.request)] - ] - } - export function SquareService_updateSquareMember_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareMemberRequest(param.request)] - ] - } - export function SquareService_updateSquareMembers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareMembersRequest(param.request)] - ] - } - export function SquareService_updateSquare_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSquareRequest(param.request)] - ] - } - export function SquareService_updateUserSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateUserSettingsRequest(param.request)] - ] - } - export function approveChannelAndIssueChannelToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.channelId] - ] - } - export function authenticateUsingBankAccountEx_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, r80_EnumC34362b(param.type)], - [11, 2, param.bankId], - [11, 3, param.bankBranchId], - [11, 4, param.realAccountNo], - [8, 5, r80_EnumC34361a(param.accountProductCode)], - [11, 6, param.authToken] - ] - } - export function authenticateWithPaak_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AuthenticateWithPaakRequest(param.request)] - ] - } - export function blockContact_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.id] - ] - } - export function blockRecommendation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.targetMid] - ] - } - export function bulkFollow_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, BulkFollowRequest(param.bulkFollowRequest)] - ] - } - export function bulkGetSetting_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, BulkGetRequest(param.request)] - ] - } - export function bulkSetSetting_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function buyMustbuyProduct_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, BuyMustbuyRequest(param.request)] - ] - } - export function canCreateCombinationSticker_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, CanCreateCombinationStickerRequest(param.request)] - ] - } - export function canReceivePresent_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [11, 3, param.productId], - [12, 4, Locale(param.locale)], - [11, 5, param.recipientMid] - ] - } - export function cancelChatInvitation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelChatInvitationRequest(param.request)] - ] - } - export function cancelPaakAuth_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelPaakAuthRequest(param.request)] - ] - } - export function cancelPaakAuthentication_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelPaakAuthenticationRequest(param.request)] - ] - } - export function cancelPinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelPinCodeRequest(param.request)] - ] - } - export function cancelReaction_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CancelReactionRequest(param.cancelReactionRequest)] - ] - } - export function changeSubscription_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function changeVerificationMethod_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.sessionId], - [8, 3, VerificationMethod(param.method)] - ] - } - export function checkCanUnregisterEx_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, r80_n0(param.type)] - ] - } - export function checkEmailAssigned_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)] - ] - } - export function checkIfEncryptedE2EEKeyReceived_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CheckIfEncryptedE2EEKeyReceivedRequest(param.request)] - ] - } - export function checkIfPasswordSetVerificationEmailVerified_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function checkIfPhonePinCodeMsgVerified_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CheckIfPhonePinCodeMsgVerifiedRequest(param.request)] - ] - } - export function checkOperationTimeEx_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, r80_EnumC34368h(param.type)], - [11, 2, param.lpAccountNo], - [8, 3, r80_EnumC34371k(param.channelType)] - ] - } - export function checkUserAgeAfterApprovalWithDocomoV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CheckUserAgeAfterApprovalWithDocomoV2Request(param.request)] - ] - } - export function checkUserAgeWithDocomoV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CheckUserAgeWithDocomoV2Request(param.request)] - ] - } - export function checkUserAge_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, CarrierCode(param.carrier)], - [11, 3, param.sessionId], - [11, 4, param.verifier], - [8, 5, param.standardAge] - ] - } - export function clearRingtone_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.oid] - ] - } - export function confirmIdentifier_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [12, 3, IdentityCredentialRequest(param.request)] - ] - } - export function connectEapAccount_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ConnectEapAccountRequest(param.request)] - ] - } - export function createChatRoomAnnouncement_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatRoomMid], - [8, 3, Pb1_X2(param.type)], - [12, 4, ChatRoomAnnouncementContents(param.contents)] - ] - } - export function createChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CreateChatRequest(param.request)] - ] - } - export function createCollectionForUser_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function createCombinationSticker_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function createE2EEKeyBackupEnforced_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_C13263z3(param.request)] - ] - } - export function createGroupCallUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, CreateGroupCallUrlRequest(param.request)] - ] - } - export function createLifetimeKeyBackup_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_E3(param.request)] - ] - } - export function createMultiProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CreateMultiProfileRequest(param.request)] - ] - } - export function createRoomV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [15, 2, [11, param.contactIds]] - ] - } - export function createSession_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, h80_C25643c(param.request)] - ] - } - export function decryptFollowEMid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.eMid] - ] - } - export function deleteE2EEKeyBackup_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_H3(param.request)] - ] - } - export function deleteGroupCallUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, DeleteGroupCallUrlRequest(param.request)] - ] - } - export function deleteMultiProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteMultiProfileRequest(param.request)] - ] - } - export function deleteOtherFromChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteOtherFromChatRequest(param.request)] - ] - } - export function deletePrimaryCredential_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, R70_c(param.request)] - ] - } - export function deleteSafetyStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteSafetyStatusRequest(param.req)] - ] - } - export function deleteSelfFromChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeleteSelfFromChatRequest(param.request)] - ] - } - export function determineMediaMessageFlow_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DetermineMediaMessageFlowRequest(param.request)] - ] - } - export function disconnectEapAccount_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DisconnectEapAccountRequest(param.request)] - ] - } - export function editItemsInCollection_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function enablePointForOneTimeKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 1, param.usePoint] - ] - } - export function establishE2EESession_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function existPinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, S70_b(param.request)] - ] - } - export function fetchOperations_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FetchOperationsRequest(param.request)] - ] - } - export function fetchPhonePinCodeMsg_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FetchPhonePinCodeMsgRequest(param.request)] - ] - } - export function findBuddyContactsByQuery_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.language], - [11, 3, param.country], - [11, 4, param.query], - [8, 5, param.fromIndex], - [8, 6, param.count], - [8, 7, Pb1_F0(param.requestSource)] - ] - } - export function findChatByTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, FindChatByTicketRequest(param.request)] - ] - } - export function findContactByUserTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.ticketIdWithTag] - ] - } - export function findContactByUserid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.searchId] - ] - } - export function findContactsByPhone_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [11, param.phones]] - ] - } - export function finishUpdateVerification_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.sessionId] - ] - } - export function follow_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, FollowRequest(param.followRequest)] - ] - } - export function generateUserTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 3, param.expirationTime], - [8, 4, param.maxUseCount] - ] - } - export function getAccessToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetAccessTokenRequest(param.request)] - ] - } - export function getAccountBalanceAsync_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.requestToken], - [11, 2, param.accountId] - ] - } - export function getAcctVerifMethod_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)] - ] - } - export function getAllChatMids_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetAllChatMidsRequest(param.request)], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function getAllContactIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getAllowedRegistrationMethod_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [11, 2, param.countryCode] - ] - } - export function getApprovedChannels_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.lastSynced], - [11, 3, param.locale] - ] - } - export function getAssertionChallenge_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, m80_l(param.request)] - ] - } - export function getAttestationChallenge_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, m80_n(param.request)] - ] - } - export function getAuthRSAKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [8, 3, IdentityProvider(param.identityProvider)] - ] - } - export function getAuthorsLatestProducts_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, LatestProductsByAuthorRequest(param.latestProductsByAuthorRequest)] - ] - } - export function getAutoSuggestionShowcase_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AutoSuggestionShowcaseRequest(param.autoSuggestionShowcaseRequest)] - ] - } - export function getBalanceSummaryV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_C12208u(param.request)] - ] - } - export function getBalanceSummaryV4WithPayV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_C12214w(param.request)] - ] - } - export function getBalance_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ZQ0_b(param.request)] - ] - } - export function getBankBranches_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.financialCorpId], - [11, 2, param.query], - [8, 3, param.startNum], - [8, 4, param.count] - ] - } - export function getBanners_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, BannerRequest(param.request)] - ] - } - export function getBirthdayEffect_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Eh_C8933a(param.req)] - ] - } - export function getBleDevice_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetBleDeviceRequest(param.request)] - ] - } - export function getBlockedContactIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getBlockedRecommendationIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getBrowsingHistory_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getBuddyChatBarV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetBuddyChatBarRequest(param.request)] - ] - } - export function getBuddyDetailWithPersonal_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.buddyMid], - [14, 2, [8, param.attributeSet&&(param.attributeSet).map(e=>Pb1_D0(e))]] - ] - } - export function getBuddyDetail_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 4, param.buddyMid] - ] - } - export function getBuddyLive_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetBuddyLiveRequest(param.request)] - ] - } - export function getBuddyOnAir_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 4, param.buddyMid] - ] - } - export function getBuddyStatusBarV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetBuddyStatusBarV2Request(param.request)] - ] - } - export function getCallStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetCallStatusRequest(param.request)] - ] - } - export function getCampaign_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetCampaignRequest(param.request)] - ] - } - export function getChallengeForPaakAuth_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetChallengeForPaakAuthRequest(param.request)] - ] - } - export function getChallengeForPrimaryReg_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetChallengeForPrimaryRegRequest(param.request)] - ] - } - export function getChannelContext_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetChannelContextRequest(param.request)] - ] - } - export function getChannelInfo_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.channelId], - [11, 3, param.locale] - ] - } - export function getChannelNotificationSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.locale] - ] - } - export function getChatEffectMetaList_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [8, param.categories&&(param.categories).map(e=>Pb1_Q2(e))]] - ] - } - export function getChatRoomAnnouncementsBulk_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [11, param.chatRoomMids]], - [8, 3, Pb1_V7(param.syncReason)] - ] - } - export function getChatRoomAnnouncements_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.chatRoomMid] - ] - } - export function getChatRoomBGMs_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [11, param.chatRoomMids]], - [8, 3, Pb1_V7(param.syncReason)] - ] - } - export function getChatapp_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetChatappRequest(param.request)] - ] - } - export function getChats_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetChatsRequest(param.request)], - [8, 2, Pb1_V7(param.syncReason)] - ] - } - export function getCoinProducts_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetCoinProductsRequest(param.request)] - ] - } - export function getCoinPurchaseHistory_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetCoinHistoryRequest(param.request)] - ] - } - export function getCoinUseAndRefundHistory_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetCoinHistoryRequest(param.request)] - ] - } - export function getCommonDomains_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 1, param.lastSynced] - ] - } - export function getConfigurations_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.revision], - [11, 3, param.regionOfUsim], - [11, 4, param.regionOfTelephone], - [11, 5, param.regionOfLocale], - [11, 6, param.carrier], - [8, 7, Pb1_V7(param.syncReason)] - ] - } - export function getContactCalendarEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetContactCalendarEventsRequest(param.request)] - ] - } - export function getContactsV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetContactsV3Request(param.request)] - ] - } - export function getCountries_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, Pb1_EnumC13221w3(param.countryGroup)] - ] - } - export function getCountryInfo_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 11, SimCard(param.simCard)] - ] - } - export function getDataRetention_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, fN0_C24473e(param.req)] - ] - } - export function getDestinationUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DestinationLIFFRequest(param.request)] - ] - } - export function getDisasterCases_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, vh_C37633d(param.req)] - ] - } - export function getE2EEGroupSharedKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, param.keyVersion], - [11, 3, param.chatMid], - [8, 4, param.groupKeyId] - ] - } - export function getE2EEKeyBackupCertificates_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_W4(param.request)] - ] - } - export function getE2EEKeyBackupInfo_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_Y4(param.request)] - ] - } - export function getE2EEPublicKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.mid], - [8, 3, param.keyVersion], - [8, 4, param.keyId] - ] - } - export function getExchangeKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetExchangeKeyRequest(param.request)] - ] - } - export function getExtendedProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getFollowBlacklist_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetFollowBlacklistRequest(param.getFollowBlacklistRequest)] - ] - } - export function getFollowers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetFollowersRequest(param.getFollowersRequest)] - ] - } - export function getFollowings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetFollowingsRequest(param.getFollowingsRequest)] - ] - } - export function getFontMetas_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetFontMetasRequest(param.request)] - ] - } - export function getFriendDetails_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetFriendDetailsRequest(param.request)] - ] - } - export function getFriendRequests_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_F4(param.direction)], - [10, 2, param.lastSeenSeqId] - ] - } - export function getGnbBadgeStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetGnbBadgeStatusRequest(param.request)] - ] - } - export function getGroupCallUrlInfo_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetGroupCallUrlInfoRequest(param.request)] - ] - } - export function getGroupCallUrls_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_C13042j5(param.request)] - ] - } - export function getGroupCall_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.chatMid] - ] - } - export function getHomeFlexContent_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetHomeFlexContentRequest(param.request)] - ] - } - export function getHomeServiceList_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Eg_C8928b(param.request)] - ] - } - export function getHomeServices_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetHomeServicesRequest(param.request)] - ] - } - export function getIncentiveStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, fN0_C24471c(param.req)] - ] - } - export function getInstantNews_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.region], - [12, 2, Location(param.location)] - ] - } - export function getJoinedMembershipByBotMid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetJoinedMembershipByBotMidRequest(param.request)] - ] - } - export function getJoinedMembership_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetJoinedMembershipRequest(param.request)] - ] - } - export function getKeyBackupCertificatesV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_C13070l5(param.request)] - ] - } - export function getLFLSuggestion_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getLastE2EEGroupSharedKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, param.keyVersion], - [11, 3, param.chatMid] - ] - } - export function getLastE2EEPublicKeys_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.chatMid] - ] - } - export function getLiffViewWithoutUserContext_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiffViewWithoutUserContextRequest(param.request)] - ] - } - export function getLineCardIssueForm_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, r80_EnumC34372l(param.resolutionType)] - ] - } - export function getLoginActorContext_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetLoginActorContextRequest(param.request)] - ] - } - export function getMappedProfileIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetMappedProfileIdsRequest(param.request)] - ] - } - export function getMaskedEmail_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)] - ] - } - export function getMessageBoxes_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, MessageBoxListRequest(param.messageBoxListRequest)], - [8, 3, Pb1_V7(param.syncReason)] - ] - } - export function getMessageReadRange_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [11, param.chatIds]], - [8, 3, Pb1_V7(param.syncReason)] - ] - } - export function getModuleLayoutV4_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetModuleLayoutV4Request(param.request)] - ] - } - export function getModuleWithStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_G(param.request)] - ] - } - export function getModule_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_E(param.request)] - ] - } - export function getModulesV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetModulesRequestV2(param.request)] - ] - } - export function getModulesV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetModulesRequestV3(param.request)] - ] - } - export function getModulesV4WithStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetModulesV4WithStatusRequest(param.request)] - ] - } - export function getMusicSubscriptionStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getMyAssetInformationV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetMyAssetInformationV2Request(param.request)] - ] - } - export function getMyChatapps_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetMyChatappsRequest(param.request)] - ] - } - export function getMyDashboard_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetMyDashboardRequest(param.request)] - ] - } - export function getNewlyReleasedBuddyIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 3, param.country] - ] - } - export function getNotificationSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetNotificationSettingsRequest(param.request)] - ] - } - export function getOwnedProductSummaries_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [8, 3, param.offset], - [8, 4, param.limit], - [12, 5, Locale(param.locale)] - ] - } - export function getPasswordHashingParameter_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPasswordHashingParametersRequest(param.request)] - ] - } - export function getPasswordHashingParametersForPwdReg_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPasswordHashingParametersForPwdRegRequest(param.request)] - ] - } - export function getPasswordHashingParametersForPwdVerif_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPasswordHashingParametersForPwdVerifRequest(param.request)] - ] - } - export function getPaymentUrlByKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.key] - ] - } - export function getPhoneVerifMethodForRegistration_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPhoneVerifMethodForRegistrationRequest(param.request)] - ] - } - export function getPhoneVerifMethodV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPhoneVerifMethodV2Request(param.request)] - ] - } - export function getPhotoboothBalance_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_C13126p5(param.request)] - ] - } - export function getPredefinedScenarioSets_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPredefinedScenarioSetsRequest(param.request)] - ] - } - export function getPrefetchableBanners_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, BannerRequest(param.request)] - ] - } - export function getPremiumStatusForUpgrade_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, fN0_C24475g(param.req)] - ] - } - export function getPremiumStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, fN0_C24476h(param.req)] - ] - } - export function getPreviousMessagesV2WithRequest_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetPreviousMessagesV2Request(param.request)], - [8, 3, Pb1_V7(param.syncReason)] - ] - } - export function getProductByVersion_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [11, 3, param.productId], - [10, 4, param.productVersion], - [12, 5, Locale(param.locale)] - ] - } - export function getProductLatestVersionForUser_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getProductSummariesInSubscriptionSlots_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getProductV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getProductValidationScheme_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [11, 3, param.productId], - [10, 4, param.productVersion] - ] - } - export function getProductsByAuthor_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getPromotedBuddyContacts_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.language], - [11, 3, param.country] - ] - } - export function getPublishedMemberships_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetPublishedMembershipsRequest(param.request)] - ] - } - export function getPurchaseEnabledStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, PurchaseEnabledRequest(param.request)] - ] - } - export function getPurchasedProducts_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [8, 3, param.offset], - [8, 4, param.limit], - [12, 5, Locale(param.locale)] - ] - } - export function getQuickMenu_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_S(param.request)] - ] - } - export function getReceivedPresents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [8, 3, param.offset], - [8, 4, param.limit], - [12, 5, Locale(param.locale)] - ] - } - export function getRecentFriendRequests_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getRecommendationDetails_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetRecommendationDetailsRequest(param.request)] - ] - } - export function getRecommendationIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getRecommendationList_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getRepairElements_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetRepairElementsRequest(param.request)] - ] - } - export function getResourceFile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - - ] - } - export function getResponseStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetResponseStatusRequest(param.request)] - ] - } - export function getReturnUrlWithRequestTokenForAutoLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, WebLoginRequest(param.webLoginRequest)] - ] - } - export function getReturnUrlWithRequestTokenForMultiLiffLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiffWebLoginRequest(param.request)] - ] - } - export function getRoomsV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 2, [11, param.roomIds]] - ] - } - export function getSCC_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSCCRequest(param.request)] - ] - } - export function getSeasonalEffects_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Eh_C8935c(param.req)] - ] - } - export function getSecondAuthMethod_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function getSentPresents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [8, 3, param.offset], - [8, 4, param.limit], - [12, 5, Locale(param.locale)] - ] - } - export function getServiceShortcutMenu_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_U(param.request)] - ] - } - export function getSessionContentBeforeMigCompletion_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function getSettingsAttributes2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 2, [8, param.attributesToRetrieve&&(param.attributesToRetrieve).map(e=>SettingsAttributeEx(e))]] - ] - } - export function getSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_V7(param.syncReason)] - ] - } - export function getSmartChannelRecommendations_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSmartChannelRecommendationsRequest(param.request)] - ] - } - export function getSquareBot_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetSquareBotRequest(param.req)] - ] - } - export function getStudentInformation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Ob1_C12606a0(param.req)] - ] - } - export function getSubscriptionPlans_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetSubscriptionPlansRequest(param.req)] - ] - } - export function getSubscriptionSlotHistory_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Ob1_C12618e0(param.req)] - ] - } - export function getSubscriptionStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetSubscriptionStatusRequest(param.req)] - ] - } - export function getSuggestDictionarySetting_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Ob1_C12630i0(param.req)] - ] - } - export function getSuggestResourcesV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, GetSuggestResourcesV2Request(param.req)] - ] - } - export function getTaiwanBankBalance_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetTaiwanBankBalanceRequest(param.request)] - ] - } - export function getTargetProfiles_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetTargetProfilesRequest(param.request)] - ] - } - export function getTargetingPopup_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NZ0_C12150a0(param.request)] - ] - } - export function getThaiBankBalance_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetThaiBankBalanceRequest(param.request)] - ] - } - export function getTotalCoinBalance_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetTotalCoinBalanceRequest(param.request)] - ] - } - export function getUpdatedChannelIds_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.channelIds&&(param.channelIds).map(e=>ChannelIdWithLastUpdated(e))]] - ] - } - export function getUserCollections_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetUserCollectionsRequest(param.request)] - ] - } - export function getUserProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, AccountIdentifier(param.accountIdentifier)] - ] - } - export function getUserVector_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetUserVectorRequest(param.request)] - ] - } - export function getUsersMappedByProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, GetUsersMappedByProfileRequest(param.request)] - ] - } - export function getWebLoginDisallowedUrlForMultiLiffLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiffWebLoginRequest(param.request)] - ] - } - export function getWebLoginDisallowedUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, WebLoginRequest(param.webLoginRequest)] - ] - } - export function inviteFriends_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteFriendsRequest(param.request)] - ] - } - export function inviteIntoChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, InviteIntoChatRequest(param.request)] - ] - } - export function inviteIntoGroupCall_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.chatMid], - [15, 3, [11, param.memberMids]], - [8, 4, Pb1_EnumC13237x5(param.mediaType)] - ] - } - export function inviteIntoRoom_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.roomId], - [15, 3, [11, param.contactIds]] - ] - } - export function isProductForCollections_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, IsProductForCollectionsRequest(param.request)] - ] - } - export function isStickerAvailableForCombinationSticker_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, IsStickerAvailableForCombinationStickerRequest(param.request)] - ] - } - export function isUseridAvailable_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.searchId] - ] - } - export function issueChannelToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.channelId] - ] - } - export function issueLiffView_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiffViewRequest(param.request)] - ] - } - export function issueRequestTokenWithAuthScheme_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.channelId], - [11, 2, param.otpId], - [15, 3, [11, param.authScheme]], - [11, 4, param.returnUrl] - ] - } - export function issueSubLiffView_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LiffViewRequest(param.request)] - ] - } - export function issueTokenForAccountMigrationSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [2, 2, param.enforce] - ] - } - export function issueToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, IssueBirthdayGiftTokenRequest(param.request)] - ] - } - export function issueV3TokenForPrimary_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, IssueV3TokenForPrimaryRequest(param.request)] - ] - } - export function issueWebAuthDetailsForSecondAuth_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function joinChatByCallUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, JoinChatByCallUrlRequest(param.request)] - ] - } - export function kickoutFromGroupCall_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, KickoutFromGroupCallRequest(param.kickoutFromGroupCallRequest)] - ] - } - export function leaveRoom_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.roomId] - ] - } - export function linkDevice_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeviceLinkRequest(param.request)] - ] - } - export function lookupAvailableEap_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, LookupAvailableEapRequest(param.request)] - ] - } - export function lookupPaidCall_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.dialedNumber], - [11, 3, param.language], - [11, 4, param.referer] - ] - } - export function mapProfileToUsers_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, MapProfileToUsersRequest(param.request)] - ] - } - export function migratePrimaryUsingEapAccountWithTokenV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function migratePrimaryUsingPhoneWithTokenV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function migratePrimaryUsingQrCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, MigratePrimaryUsingQrCodeRequest(param.request)] - ] - } - export function negotiateE2EEPublicKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.mid] - ] - } - export function notifyChatAdEntry_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NotifyChatAdEntryRequest(param.request)] - ] - } - export function notifyDeviceConnection_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NotifyDeviceConnectionRequest(param.request)] - ] - } - export function notifyDeviceDisconnection_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NotifyDeviceDisconnectionRequest(param.request)] - ] - } - export function notifyInstalled_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.udidHash], - [11, 3, param.applicationTypeWithExtensions] - ] - } - export function notifyOATalkroomEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NotifyOATalkroomEventsRequest(param.request)] - ] - } - export function notifyProductEvent_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [11, 3, param.productId], - [10, 4, param.productVersion], - [10, 5, param.productEvent] - ] - } - export function notifyRegistrationComplete_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.udidHash], - [11, 3, param.applicationTypeWithExtensions] - ] - } - export function notifyScenarioExecuted_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, NotifyScenarioExecutedRequest(param.request)] - ] - } - export function notifyUpdated_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.lastRev], - [12, 3, DeviceInfo(param.deviceInfo)], - [11, 4, param.udidHash], - [11, 5, param.oldUdidHash] - ] - } - export function openAuthSession_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, AuthSessionRequest(param.request)] - ] - } - export function openSession_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, OpenSessionRequest(param.request)] - ] - } - export function permitLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, PermitLoginRequest(param.request)] - ] - } - export function placePurchaseOrderForFreeProduct_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, PurchaseOrder(param.purchaseOrder)] - ] - } - export function placePurchaseOrderWithLineCoin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, PurchaseOrder(param.purchaseOrder)] - ] - } - export function postPopupButtonEvents_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.buttonId], - [13, 2, [11, 2, param.checkboxes]] - ] - } - export function purchaseSubscription_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, PurchaseSubscriptionRequest(param.req)] - ] - } - export function putE2eeKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, PutE2eeKeyRequest(param.request)] - ] - } - export function react_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReactRequest(param.reactRequest)] - ] - } - export function refresh_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RefreshAccessTokenRequest(param.request)] - ] - } - export function registerBarcodeAsync_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.requestToken], - [11, 2, param.barcodeRequestId], - [11, 3, param.barcode], - [12, 4, RSAEncryptedPassword(param.password)] - ] - } - export function registerCampaignReward_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RegisterCampaignRewardRequest(param.request)] - ] - } - export function registerE2EEGroupKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, param.keyVersion], - [11, 3, param.chatMid], - [15, 4, [11, param.members]], - [15, 5, [8, param.keyIds]], - [15, 6, [11, param.encryptedSharedKeys]] - ] - } - export function registerE2EEPublicKeyV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_W6(param.request)] - ] - } - export function registerE2EEPublicKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, Pb1_C13097n4(param.publicKey)] - ] - } - export function registerPrimaryCredential_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RegisterPrimaryCredentialRequest(param.request)] - ] - } - export function registerPrimaryUsingEapAccount_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId] - ] - } - export function registerPrimaryUsingPhoneWithTokenV3_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId] - ] - } - export function registerUserid_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.searchId] - ] - } - export function reissueChatTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReissueChatTicketRequest(param.request)] - ] - } - export function rejectChatInvitation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RejectChatInvitationRequest(param.request)] - ] - } - export function removeChatRoomAnnouncement_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatRoomMid], - [10, 3, param.announcementSeq] - ] - } - export function removeFollower_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, RemoveFollowerRequest(param.removeFollowerRequest)] - ] - } - export function removeFriendRequest_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_F4(param.direction)], - [11, 2, param.midOrEMid] - ] - } - export function removeFromFollowBlacklist_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, RemoveFromFollowBlacklistRequest(param.removeFromFollowBlacklistRequest)] - ] - } - export function removeIdentifier_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [12, 3, IdentityCredentialRequest(param.request)] - ] - } - export function removeItemFromCollection_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RemoveItemFromCollectionRequest(param.request)] - ] - } - export function removeLinePayAccount_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.accountId] - ] - } - export function removeProductFromSubscriptionSlot_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, RemoveProductFromSubscriptionSlotRequest(param.req)] - ] - } - export function reportAbuseEx_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, ReportAbuseExRequest(param.request)] - ] - } - export function reportDeviceState_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 2, [8, 2, param.booleanState]], - [13, 3, [8, 11, param.stringState]] - ] - } - export function reportLocation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Geolocation(param.location)], - [8, 2, Pb1_EnumC12917a6(param.trigger)], - [12, 3, ClientNetworkStatus(param.networkStatus)], - [10, 4, param.measuredAt], - [10, 6, param.clientCurrentTimestamp], - [12, 7, LocationDebugInfo(param.debugInfo)] - ] - } - export function reportNetworkStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, Pb1_EnumC12917a6(param.trigger)], - [12, 2, ClientNetworkStatus(param.networkStatus)], - [10, 3, param.measuredAt], - [10, 4, param.scanCompletionTimestamp] - ] - } - export function reportProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.syncOpRevision], - [12, 3, Profile(param.profile)] - ] - } - export function reportPushRecvReports_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [15, 2, [12, param.pushRecvReports&&(param.pushRecvReports).map(e=>PushRecvReport(e))]] - ] - } - export function reportRefreshedAccessToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReportRefreshedAccessTokenRequest(param.request)] - ] - } - export function reportSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.syncOpRevision], - [12, 3, Settings(param.settings)] - ] - } - export function requestCleanupUserProvidedData_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [14, 1, [8, param.dataTypes&&(param.dataTypes).map(e=>Pb1_od(e))]] - ] - } - export function requestToSendPasswordSetVerificationEmail_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [11, 2, param.email], - [12, 3, AccountIdentifier(param.accountIdentifier)] - ] - } - export function requestToSendPhonePinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReqToSendPhonePinCodeRequest(param.request)] - ] - } - export function requestTradeNumber_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.requestToken], - [8, 2, r80_g0(param.requestType)], - [11, 3, param.amount], - [11, 4, param.name] - ] - } - export function resendIdentifierConfirmation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [12, 3, IdentityCredentialRequest(param.request)] - ] - } - export function resendPinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.sessionId] - ] - } - export function reserveCoinPurchase_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, CoinPurchaseReservation(param.request)] - ] - } - export function reserveSubscriptionPurchase_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReserveSubscriptionPurchaseRequest(param.request)] - ] - } - export function reserve_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ReserveRequest(param.request)] - ] - } - export function restoreE2EEKeyBackup_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Pb1_C13155r7(param.request)] - ] - } - export function retrieveRequestTokenWithDocomoV2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, Pb1_C13183t7(param.request)] - ] - } - export function retrieveRequestToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 2, CarrierCode(param.carrier)] - ] - } - export function revokeTokens_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, RevokeTokensRequest(param.request)] - ] - } - export function saveStudentInformation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, SaveStudentInformationRequest(param.req)] - ] - } - export function sendChatChecked_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.seq], - [11, 2, param.chatMid], - [11, 3, param.lastMessageId], - [3, 4, param.sessionId] - ] - } - export function sendChatRemoved_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.seq], - [11, 2, param.chatMid], - [11, 3, param.lastMessageId], - [3, 4, param.sessionId] - ] - } - export function sendEncryptedE2EEKey_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SendEncryptedE2EEKeyRequest(param.request)] - ] - } - export function sendMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.seq], - [12, 2, Message(param.message)] - ] - } - export function sendPostback_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, SendPostbackRequest(param.request)] - ] - } - export function setChatHiddenStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SetChatHiddenStatusRequest(param.setChatHiddenStatusRequest)] - ] - } - export function setHashedPassword_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SetHashedPasswordRequest(param.request)] - ] - } - export function setIdentifier_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [12, 3, IdentityCredentialRequest(param.request)] - ] - } - export function setNotificationsEnabled_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [8, 2, MIDType(param.type)], - [11, 3, param.target], - [2, 4, param.enablement] - ] - } - export function setPassword_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SetPasswordRequest(param.request)] - ] - } - export function shouldShowWelcomeStickerBanner_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, Ob1_C12660s1(param.request)] - ] - } - export function startPhotobooth_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, StartPhotoboothRequest(param.request)] - ] - } - export function startUpdateVerification_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.region], - [8, 3, CarrierCode(param.carrier)], - [11, 4, param.phone], - [11, 5, param.udidHash], - [12, 6, DeviceInfo(param.deviceInfo)], - [11, 7, param.networkCode], - [11, 8, param.locale], - [12, 9, SIMInfo(param.simInfo)] - ] - } - export function stopBundleSubscription_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, StopBundleSubscriptionRequest(param.request)] - ] - } - export function storeShareTargetPickerResult_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ShareTargetPickerResultRequest(param.request)] - ] - } - export function storeSubWindowResult_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SubWindowResultRequest(param.request)] - ] - } - export function syncContacts_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [15, 2, [12, param.localContacts&&(param.localContacts).map(e=>ContactModification(e))]] - ] - } - export function sync_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, SyncRequest(param.request)] - ] - } - export function tryFriendRequest_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.midOrEMid], - [8, 2, Pb1_G4(param.method)], - [11, 3, param.friendRequestParams] - ] - } - export function unblockContact_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.id], - [11, 3, param.reference] - ] - } - export function unblockRecommendation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.targetMid] - ] - } - export function unfollow_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, UnfollowRequest(param.unfollowRequest)] - ] - } - export function unlinkDevice_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, DeviceUnlinkRequest(param.request)] - ] - } - export function unsendMessage_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.seq], - [11, 2, param.messageId] - ] - } - export function updateAndGetNearby_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [4, 2, param.latitude], - [4, 3, param.longitude], - [12, 4, GeolocationAccuracy(param.accuracy)], - [12, 5, ClientNetworkStatus(param.networkStatus)], - [4, 6, param.altitudeMeters], - [4, 7, param.velocityMetersPerSecond], - [4, 8, param.bearingDegrees], - [10, 9, param.measuredAtTimestamp], - [10, 10, param.clientCurrentTimestamp] - ] - } - export function updateChannelNotificationSetting_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [12, param.setting&&(param.setting).map(e=>ChannelNotificationSetting(e))]] - ] - } - export function updateChannelSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, ChannelSettings(param.channelSettings)] - ] - } - export function updateChatRoomBGM_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.chatRoomMid], - [11, 3, param.chatRoomBGMInfo] - ] - } - export function updateChat_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateChatRequest(param.request)] - ] - } - export function updateContactSetting_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [11, 2, param.mid], - [8, 3, ContactSetting(param.flag)], - [11, 4, param.value] - ] - } - export function updateExtendedProfileAttribute_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - , - [12, 3, ExtendedProfile(param.extendedProfile)] - ] - } - export function updateGroupCallUrl_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, UpdateGroupCallUrlRequest(param.request)] - ] - } - export function updateIdentifier_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.authSessionId], - [12, 3, IdentityCredentialRequest(param.request)] - ] - } - export function updateNotificationToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.token], - [8, 3, NotificationType(param.type)] - ] - } - export function updatePassword_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdatePasswordRequest(param.request)] - ] - } - export function updateProfileAttributes_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 2, UpdateProfileAttributesRequest(param.request)] - ] - } - export function updateSafetyStatus_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, UpdateSafetyStatusRequest(param.req)] - ] - } - export function updateSettingsAttributes2_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.reqSeq], - [12, 3, Settings(param.settings)], - [14, 4, [8, param.attributesToUpdate&&(param.attributesToUpdate).map(e=>SettingsAttributeEx(e))]] - ] - } - export function updateUserGeneralSettings_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [13, 1, [8, 11, param.settings]] - ] - } - export function usePhotoboothTicket_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, UsePhotoboothTicketRequest(param.request)] - ] - } - export function validateEligibleFriends_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [15, 1, [11, param.friends]], - [8, 2, r80_EnumC34376p(param.type)] - ] - } - export function validateProduct_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.shopId], - [11, 3, param.productId], - [10, 4, param.productVersion], - - ] - } - export function validateProfile_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [11, 2, param.displayName] - ] - } - export function verifyAccountUsingHashedPwd_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyAccountUsingHashedPwdRequest(param.request)] - ] - } - export function verifyAssertion_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyAssertionRequest(param.request)] - ] - } - export function verifyAttestation_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyAttestationRequest(param.request)] - ] - } - export function verifyBirthdayGiftAssociationToken_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 2, BirthdayGiftAssociationVerifyRequest(param.req)] - ] - } - export function verifyEapAccountForRegistration_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, Device(param.device)], - [12, 3, SocialLogin(param.socialLogin)] - ] - } - export function verifyEapLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyEapLoginRequest(param.request)] - ] - } - export function verifyPhoneNumber_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.sessionId], - [11, 3, param.pinCode], - [11, 4, param.udidHash], - [11, 5, param.migrationPincodeSessionId], - [11, 6, param.oldUdidHash] - ] - } - export function verifyPhonePinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyPhonePinCodeRequest(param.request)] - ] - } - export function verifyPinCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyPinCodeRequest(param.request)] - ] - } - export function verifyQrCode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, VerifyQrCodeRequest(param.request)] - ] - } - export function verifyQrcode_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 2, param.verifier], - [11, 3, param.pinCode] - ] - } - export function verifySocialLogin_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [11, 1, param.authSessionId], - [12, 2, Device(param.device)], - [12, 3, SocialLogin(param.socialLogin)] - ] - } - export function wakeUpLongPolling_args(param?: PartialDeep | undefined): NestedArray { - return typeof param === "undefined" ? [] : [ - [10, 2, param.clientRevision] - ] - } \ No newline at end of file +export function AcceptChatInvitationByTicketRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [11, 3, param.ticketId], + ]; +} +export function AcceptChatInvitationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + ]; +} +export function AcceptSpeakersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [14, 3, [11, param.targetMids]], + ]; +} +export function AcceptToChangeRoleRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.inviteRequestId], + ]; +} +export function AcceptToListenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.inviteRequestId], + ]; +} +export function AcceptToSpeakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.inviteRequestId], + ]; +} +export function LiveTalkType( + param: LINETypes.LiveTalkType | undefined, +): LINETypes.LiveTalkType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.LiveTalkType[param] + : param; +} +export function LiveTalkSpeakerSetting( + param: LINETypes.LiveTalkSpeakerSetting | undefined, +): LINETypes.LiveTalkSpeakerSetting & number | undefined { + return typeof param === "string" + ? LINETypes.enums.LiveTalkSpeakerSetting[param] + : param; +} +export function AcquireLiveTalkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.title], + [8, 3, LiveTalkType(param.type)], + [8, 4, LiveTalkSpeakerSetting(param.speakerSetting)], + ]; +} +export function CancelToSpeakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function FetchLiveTalkEventsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.syncToken], + [8, 4, param.limit], + ]; +} +export function FindLiveTalkByInvitationTicketRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.invitationTicket], + ]; +} +export function ForceEndLiveTalkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function GetLiveTalkInfoForNonMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [15, 3, [11, param.speakers]], + ]; +} +export function GetLiveTalkInvitationUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function GetLiveTalkSpeakersForNonMemberRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [15, 3, [11, param.speakers]], + ]; +} +export function GetSquareInfoByChatMidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + ]; +} +export function LiveTalkRole( + param: LINETypes.LiveTalkRole | undefined, +): LINETypes.LiveTalkRole & number | undefined { + return typeof param === "string" + ? LINETypes.enums.LiveTalkRole[param] + : param; +} +export function InviteToChangeRoleRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.targetMid], + [8, 4, LiveTalkRole(param.targetRole)], + ]; +} +export function InviteToListenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.targetMid], + ]; +} +export function InviteToLiveTalkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [15, 3, [11, param.invitees]], + ]; +} +export function InviteToSpeakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.targetMid], + ]; +} +export function BooleanState( + param: LINETypes.BooleanState | undefined, +): LINETypes.BooleanState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.BooleanState[param] + : param; +} +export function JoinLiveTalkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [2, 3, param.wantToSpeak], + [8, 4, BooleanState(param.claimAdult)], + ]; +} +export function LiveTalkParticipant( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.mid], + ]; +} +export function AllNonMemberLiveTalkParticipants( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LiveTalkKickOutTarget( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiveTalkParticipant(param.liveTalkParticipant)], + [ + 12, + 2, + AllNonMemberLiveTalkParticipants(param.allNonMemberLiveTalkParticipants), + ], + ]; +} +export function KickOutLiveTalkParticipantsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [12, 3, LiveTalkKickOutTarget(param.target)], + ]; +} +export function RejectSpeakersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [14, 3, [11, param.targetMids]], + ]; +} +export function RejectToSpeakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.inviteRequestId], + ]; +} +export function RemoveLiveTalkSubscriptionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function LiveTalkReportType( + param: LINETypes.LiveTalkReportType | undefined, +): LINETypes.LiveTalkReportType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.LiveTalkReportType[param] + : param; +} +export function ReportLiveTalkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [8, 3, LiveTalkReportType(param.reportType)], + ]; +} +export function ReportLiveTalkSpeakerRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.speakerMemberMid], + [8, 4, LiveTalkReportType(param.reportType)], + ]; +} +export function RequestToListenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function RequestToSpeakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + ]; +} +export function LiveTalkAttribute( + param: LINETypes.LiveTalkAttribute | undefined, +): LINETypes.LiveTalkAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.LiveTalkAttribute[param] + : param; +} +export function LiveTalk( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.sessionId], + [11, 3, param.title], + [8, 4, LiveTalkType(param.type)], + [8, 5, LiveTalkSpeakerSetting(param.speakerSetting)], + [2, 6, param.allowRequestToSpeak], + [11, 7, param.hostMemberMid], + [11, 8, param.announcement], + [8, 9, param.participantCount], + [10, 10, param.revision], + [10, 11, param.startedAt], + ]; +} +export function UpdateLiveTalkAttrsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [ + 8, + param.updatedAttrs && param.updatedAttrs.map((e) => LiveTalkAttribute(e)), + ]], + [12, 2, LiveTalk(param.liveTalk)], + ]; +} +export function Pb1_D4( + param: LINETypes.Pb1_D4 | undefined, +): LINETypes.Pb1_D4 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_D4[param] : param; +} +export function Pb1_EnumC13222w4( + param: LINETypes.Pb1_EnumC13222w4 | undefined, +): LINETypes.Pb1_EnumC13222w4 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13222w4[param] + : param; +} +export function Pb1_EnumC13237x5( + param: LINETypes.Pb1_EnumC13237x5 | undefined, +): LINETypes.Pb1_EnumC13237x5 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13237x5[param] + : param; +} +export function AcquireOACallRouteRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.searchId], + [13, 2, [11, 11, param.fromEnvInfo]], + [11, 3, param.otp], + ]; +} +export function PaidCallType( + param: LINETypes.PaidCallType | undefined, +): LINETypes.PaidCallType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.PaidCallType[param] + : param; +} +export function og_EnumC32661b( + param: LINETypes.og_EnumC32661b | undefined, +): LINETypes.og_EnumC32661b & number | undefined { + return typeof param === "string" + ? LINETypes.enums.og_EnumC32661b[param] + : param; +} +export function ActivateSubscriptionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.uniqueKey], + [8, 2, og_EnumC32661b(param.activeStatus)], + ]; +} +export function AdTypeOptOutClickEventRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.moduleAdId], + [11, 2, param.targetId], + ]; +} +export function AddMetaInvalid( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hint], + ]; +} +export function AddMetaByPhone( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.phone], + ]; +} +export function AddMetaBySearchId( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.searchId], + ]; +} +export function AddMetaByUserTicket( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.ticket], + ]; +} +export function AddMetaGroupMemberList( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function LN0_P( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_L( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_G( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11282h( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11300q( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11307u( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddMetaShareContact( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageId], + [11, 2, param.chatMid], + [11, 3, param.senderMid], + ]; +} +export function AddMetaStrangerMessage( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageId], + [11, 2, param.chatMid], + ]; +} +export function AddMetaStrangerCall( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageId], + ]; +} +export function AddMetaMentionInChat( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.messageId], + ]; +} +export function LN0_O( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_Q( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11313x( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_A( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddMetaGroupVideoCall( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function LN0_r( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11315y( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11316z( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_B( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11280g( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_T( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11276e( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_S( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddMetaProfileUndefined( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hint], + ]; +} +export function LN0_F( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11294n( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11290l( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11309v( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11292m( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddMetaChatNote( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function AddMetaChatNoteMenu( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function LN0_U( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_E( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddMetaSearchIdInUnifiedSearch( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.searchId], + ]; +} +export function LN0_D( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11278f( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_H( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LN0_C11274d( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AddMetaInvalid(param.invalid)], + [12, 2, AddMetaByPhone(param.byPhone)], + [12, 3, AddMetaBySearchId(param.bySearchId)], + [12, 4, AddMetaByUserTicket(param.byUserTicket)], + [12, 5, AddMetaGroupMemberList(param.groupMemberList)], + [12, 6, LN0_P(param.timelineCPF)], + [12, 7, LN0_L(param.smartChannelCPF)], + [12, 8, LN0_G(param.openchatCPF)], + [12, 9, LN0_C11282h(param.beaconBanner)], + [12, 10, LN0_C11300q(param.friendRecommendation)], + [12, 11, LN0_C11307u(param.homeRecommendation)], + [12, 12, AddMetaShareContact(param.shareContact)], + [12, 13, AddMetaStrangerMessage(param.strangerMessage)], + [12, 14, AddMetaStrangerCall(param.strangerCall)], + [12, 15, AddMetaMentionInChat(param.mentionInChat)], + [12, 16, LN0_O(param.timeline)], + [12, 17, LN0_Q(param.unifiedSearch)], + [12, 18, LN0_C11313x(param.lineLab)], + [12, 19, LN0_A(param.lineToCall)], + [12, 20, AddMetaGroupVideoCall(param.groupVideo)], + [12, 21, LN0_r(param.friendRequest)], + [12, 22, LN0_C11315y(param.liveViewer)], + [12, 23, LN0_C11316z(param.lineThings)], + [12, 24, LN0_B(param.mediaCapture)], + [12, 25, LN0_C11280g(param.avatarOASetting)], + [12, 26, LN0_T(param.urlScheme)], + [12, 27, LN0_C11276e(param.addressBook)], + [12, 28, LN0_S(param.unifiedSearchOATab)], + [12, 29, AddMetaProfileUndefined(param.profileUndefined)], + [12, 30, LN0_F(param.DEPRECATED_oaChatHeader)], + [12, 31, LN0_C11294n(param.chatMenu)], + [12, 32, LN0_C11290l(param.chatHeader)], + [12, 33, LN0_C11309v(param.homeTabCPF)], + [12, 34, LN0_C11292m(param.chatList)], + [12, 35, AddMetaChatNote(param.chatNote)], + [12, 36, AddMetaChatNoteMenu(param.chatNoteMenu)], + [12, 37, LN0_U(param.walletTabCPF)], + [12, 38, LN0_E(param.oaCall)], + [12, 39, AddMetaSearchIdInUnifiedSearch(param.searchIdInUnifiedSearch)], + [12, 40, LN0_D(param.newsDigestADCPF)], + [12, 41, LN0_C11278f(param.albumCPF)], + [12, 42, LN0_H(param.premiumAgreement)], + ]; +} +export function AddFriendTracking( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.reference], + [12, 2, LN0_C11274d(param.trackingMeta)], + ]; +} +export function AddFriendByMidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.userMid], + [12, 3, AddFriendTracking(param.tracking)], + ]; +} +export function Ob1_O0( + param: LINETypes.Ob1_O0 | undefined, +): LINETypes.Ob1_O0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Ob1_O0[param] : param; +} +export function AddItemToCollectionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.collectionId], + [8, 2, Ob1_O0(param.productType)], + [11, 3, param.productId], + [11, 4, param.itemId], + ]; +} +export function NZ0_C12155c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AddProductToSubscriptionSlotRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [11, 2, param.productId], + [11, 3, param.oldProductId], + ]; +} +export function AddThemeToSubscriptionSlotRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.productId], + [11, 2, param.currentlyAppliedProductId], + ]; +} +export function Pb1_A4( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.mid], + [11, 2, param.eMid], + ]; +} +export function AddToFollowBlacklistRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + ]; +} +export function TermsAgreement( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function AgreeToTermsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [12, 2, TermsAgreement(param.termsAgreement)], + ]; +} +export function ApproveSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [15, 3, [11, param.requestedMemberMids]], + ]; +} +export function CheckJoinCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [11, 3, param.joinCode], + ]; +} +export function TextMessageAnnouncementContents( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageId], + [11, 2, param.text], + [11, 3, param.senderSquareMemberMid], + [10, 4, param.createdAt], + ]; +} +export function SquareChatAnnouncementContents( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [ + 12, + 1, + TextMessageAnnouncementContents(param.textMessageAnnouncementContents), + ], + ]; +} +export function SquareChatAnnouncement( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.announcementSeq], + [8, 2, param.type], + [12, 3, SquareChatAnnouncementContents(param.contents)], + [10, 4, param.createdAt], + [11, 5, param.creator], + ]; +} +export function CreateSquareChatAnnouncementRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.squareChatMid], + [12, 3, SquareChatAnnouncement(param.squareChatAnnouncement)], + ]; +} +export function SquareChatType( + param: LINETypes.SquareChatType | undefined, +): LINETypes.SquareChatType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareChatType[param] + : param; +} +export function SquareChatState( + param: LINETypes.SquareChatState | undefined, +): LINETypes.SquareChatState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareChatState[param] + : param; +} +export function MessageVisibility( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.showJoinMessage], + [2, 2, param.showLeaveMessage], + [2, 3, param.showKickoutMessage], + ]; +} +export function SquareChat( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.squareMid], + [8, 3, SquareChatType(param.type)], + [11, 4, param.name], + [11, 5, param.chatImageObsHash], + [10, 6, param.squareChatRevision], + [8, 7, param.maxMemberCount], + [8, 8, SquareChatState(param.state)], + [11, 9, param.invitationUrl], + [12, 10, MessageVisibility(param.messageVisibility)], + [8, 11, BooleanState(param.ableToSearchMessage)], + ]; +} +export function CreateSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, SquareChat(param.squareChat)], + [15, 3, [11, param.squareMemberMids]], + ]; +} +export function SquareType( + param: LINETypes.SquareType | undefined, +): LINETypes.SquareType & number | undefined { + return typeof param === "string" ? LINETypes.enums.SquareType[param] : param; +} +export function SquareState( + param: LINETypes.SquareState | undefined, +): LINETypes.SquareState & number | undefined { + return typeof param === "string" ? LINETypes.enums.SquareState[param] : param; +} +export function SquareEmblem( + param: LINETypes.SquareEmblem | undefined, +): LINETypes.SquareEmblem & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareEmblem[param] + : param; +} +export function SquareJoinMethodType( + param: LINETypes.SquareJoinMethodType | undefined, +): LINETypes.SquareJoinMethodType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareJoinMethodType[param] + : param; +} +export function ApprovalValue( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.message], + ]; +} +export function CodeValue( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.code], + ]; +} +export function SquareJoinMethodValue( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ApprovalValue(param.approvalValue)], + [12, 2, CodeValue(param.codeValue)], + ]; +} +export function SquareJoinMethod( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, SquareJoinMethodType(param.type)], + [12, 2, SquareJoinMethodValue(param.value)], + ]; +} +export function Square( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.mid], + [11, 2, param.name], + [11, 3, param.welcomeMessage], + [11, 4, param.profileImageObsHash], + [11, 5, param.desc], + [2, 6, param.searchable], + [8, 7, SquareType(param.type)], + [8, 8, param.categoryId], + [11, 9, param.invitationURL], + [10, 10, param.revision], + [2, 11, param.ableToUseInvitationTicket], + [8, 12, SquareState(param.state)], + [15, 13, [8, param.emblems && param.emblems.map((e) => SquareEmblem(e))]], + [12, 14, SquareJoinMethod(param.joinMethod)], + [8, 15, BooleanState(param.adultOnly)], + [15, 16, [11, param.svcTags]], + [10, 17, param.createdAt], + ]; +} +export function SquareMembershipState( + param: LINETypes.SquareMembershipState | undefined, +): LINETypes.SquareMembershipState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareMembershipState[param] + : param; +} +export function SquareMemberRole( + param: LINETypes.SquareMemberRole | undefined, +): LINETypes.SquareMemberRole & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareMemberRole[param] + : param; +} +export function SquarePreference( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.favoriteTimestamp], + [2, 2, param.notiForNewJoinRequest], + ]; +} +export function SquareMember( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMemberMid], + [11, 2, param.squareMid], + [11, 3, param.displayName], + [11, 4, param.profileImageObsHash], + [2, 5, param.ableToReceiveMessage], + [8, 7, SquareMembershipState(param.membershipState)], + [8, 8, SquareMemberRole(param.role)], + [10, 9, param.revision], + [12, 10, SquarePreference(param.preference)], + [11, 11, param.joinMessage], + [10, 12, param.createdAt], + ]; +} +export function CreateSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, Square(param.square)], + [12, 3, SquareMember(param.creator)], + ]; +} +export function DeleteSquareChatAnnouncementRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [10, 3, param.announcementSeq], + ]; +} +export function DeleteSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [10, 3, param.revision], + ]; +} +export function DeleteSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.mid], + [10, 3, param.revision], + ]; +} +export function DestroyMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [11, 4, param.messageId], + [11, 5, param.threadMid], + ]; +} +export function DestroyMessagesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [14, 4, [11, param.messageIds]], + [11, 5, param.threadMid], + ]; +} +export function FetchMyEventsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.subscriptionId], + [11, 2, param.syncToken], + [8, 3, param.limit], + [11, 4, param.continuationToken], + ]; +} +export function FetchDirection( + param: LINETypes.FetchDirection | undefined, +): LINETypes.FetchDirection & number | undefined { + return typeof param === "string" + ? LINETypes.enums.FetchDirection[param] + : param; +} +export function FetchType( + param: LINETypes.FetchType | undefined, +): LINETypes.FetchType & number | undefined { + return typeof param === "string" ? LINETypes.enums.FetchType[param] : param; +} +export function FetchSquareChatEventsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.subscriptionId], + [11, 2, param.squareChatMid], + [11, 3, param.syncToken], + [8, 4, param.limit], + [8, 5, FetchDirection(param.direction)], + [8, 6, BooleanState(param.inclusive)], + [11, 7, param.continuationToken], + [8, 8, FetchType(param.fetchType)], + [11, 9, param.threadMid], + ]; +} +export function FindSquareByEmidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.emid], + ]; +} +export function FindSquareByInvitationTicketRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.invitationTicket], + ]; +} +export function FindSquareByInvitationTicketV2Request( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.invitationTicket], + ]; +} +export function AdScreen( + param: LINETypes.AdScreen | undefined, +): LINETypes.AdScreen & number | undefined { + return typeof param === "string" ? LINETypes.enums.AdScreen[param] : param; +} +export function GetGoogleAdOptionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + [11, 2, param.chatMid], + [8, 3, AdScreen(param.adScreen)], + ]; +} +export function GetInvitationTicketUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.mid], + ]; +} +export function GetJoinableSquareChatsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + [11, 10, param.continuationToken], + [8, 11, param.limit], + ]; +} +export function GetJoinedSquareChatsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.continuationToken], + [8, 3, param.limit], + ]; +} +export function GetJoinedSquaresRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.continuationToken], + [8, 3, param.limit], + ]; +} +export function MessageReactionType( + param: LINETypes.MessageReactionType | undefined, +): LINETypes.MessageReactionType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.MessageReactionType[param] + : param; +} +export function GetMessageReactionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.messageId], + [8, 3, MessageReactionType(param.type)], + [11, 4, param.continuationToken], + [8, 5, param.limit], + [11, 6, param.threadMid], + ]; +} +export function GetNoteStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + ]; +} +export function GetPopularKeywordsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetSquareAuthoritiesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [11, param.squareMids]], + ]; +} +export function GetSquareAuthorityRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + ]; +} +export function GetSquareCategoriesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetSquareChatAnnouncementsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + ]; +} +export function GetSquareChatEmidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + ]; +} +export function GetSquareChatFeatureSetRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + ]; +} +export function GetSquareChatMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMemberMid], + [11, 3, param.squareChatMid], + ]; +} +export function GetSquareChatMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [11, 2, param.continuationToken], + [8, 3, param.limit], + ]; +} +export function GetSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + ]; +} +export function GetSquareChatStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + ]; +} +export function GetSquareEmidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + ]; +} +export function GetSquareFeatureSetRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + ]; +} +export function GetSquareMemberRelationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [11, 3, param.targetSquareMemberMid], + ]; +} +export function SquareMemberRelationState( + param: LINETypes.SquareMemberRelationState | undefined, +): LINETypes.SquareMemberRelationState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareMemberRelationState[param] + : param; +} +export function GetSquareMemberRelationsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, SquareMemberRelationState(param.state)], + [11, 3, param.continuationToken], + [8, 4, param.limit], + ]; +} +export function GetSquareMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMemberMid], + ]; +} +export function GetSquareMembersBySquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [14, 3, [11, param.squareMemberMids]], + ]; +} +export function GetSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [11, param.mids]], + ]; +} +export function GetSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.mid], + ]; +} +export function GetSquareStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + ]; +} +export function GetSquareThreadMidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.messageId], + ]; +} +export function GetSquareThreadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.threadMid], + [2, 2, param.includeRootMessage], + ]; +} +export function GetUserSettingsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function HideSquareMemberContentsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMemberMid], + ]; +} +export function InviteIntoSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.inviteeMids]], + [11, 2, param.squareChatMid], + ]; +} +export function InviteToSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [15, 3, [11, param.invitees]], + [11, 4, param.squareChatMid], + ]; +} +export function JoinSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + ]; +} +export function JoinSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [12, 3, SquareMember(param.member)], + [11, 4, param.squareChatMid], + [12, 5, SquareJoinMethodValue(param.joinValue)], + [8, 6, BooleanState(param.claimAdult)], + ]; +} +export function JoinSquareThreadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.threadMid], + ]; +} +export function LeaveSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [2, 3, param.sayGoodbye], + [10, 4, param.squareChatMemberRevision], + ]; +} +export function LeaveSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + ]; +} +export function LeaveSquareThreadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.threadMid], + ]; +} +export function ManualRepairRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.syncToken], + [8, 2, param.limit], + [11, 3, param.continuationToken], + ]; +} +export function MarkAsReadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [11, 4, param.messageId], + [11, 5, param.threadMid], + ]; +} +export function MarkChatsAsReadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [11, param.chatMids]], + ]; +} +export function MarkThreadsAsReadRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function ReactToMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.squareChatMid], + [11, 3, param.messageId], + [8, 4, MessageReactionType(param.reactionType)], + [11, 5, param.threadMid], + ]; +} +export function RefreshSubscriptionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [10, param.subscriptions]], + ]; +} +export function RejectSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [15, 3, [11, param.requestedMemberMids]], + ]; +} +export function RemoveSubscriptionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [10, param.unsubscriptions]], + ]; +} +export function MessageSummaryReportType( + param: LINETypes.MessageSummaryReportType | undefined, +): LINETypes.MessageSummaryReportType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.MessageSummaryReportType[param] + : param; +} +export function ReportMessageSummaryRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatEmid], + [10, 2, param.messageSummaryRangeTo], + [8, 3, MessageSummaryReportType(param.reportType)], + ]; +} +export function ReportType( + param: LINETypes.ReportType | undefined, +): LINETypes.ReportType & number | undefined { + return typeof param === "string" ? LINETypes.enums.ReportType[param] : param; +} +export function ReportSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [11, 3, param.squareChatMid], + [8, 5, ReportType(param.reportType)], + [11, 6, param.otherReason], + ]; +} +export function ReportSquareMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMemberMid], + [8, 3, ReportType(param.reportType)], + [11, 4, param.otherReason], + [11, 5, param.squareChatMid], + [11, 6, param.threadMid], + ]; +} +export function ReportSquareMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [11, 3, param.squareChatMid], + [11, 4, param.squareMessageId], + [8, 5, ReportType(param.reportType)], + [11, 6, param.otherReason], + [11, 7, param.threadMid], + ]; +} +export function ReportSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [8, 3, ReportType(param.reportType)], + [11, 4, param.otherReason], + ]; +} +export function SquareChatMemberSearchOption( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.displayName], + [2, 2, param.includingMe], + ]; +} +export function SearchSquareChatMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [12, 2, SquareChatMemberSearchOption(param.searchOption)], + [11, 3, param.continuationToken], + [8, 4, param.limit], + ]; +} +export function SquareChatMentionableSearchOption( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.displayName], + ]; +} +export function SearchSquareChatMentionablesRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + [12, 2, SquareChatMentionableSearchOption(param.searchOption)], + [11, 3, param.continuationToken], + [8, 4, param.limit], + ]; +} +export function SquareMemberSearchOption( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, SquareMembershipState(param.membershipState)], + [14, 2, [ + 8, + param.memberRoles && param.memberRoles.map((e) => SquareMemberRole(e)), + ]], + [11, 3, param.displayName], + [8, 4, BooleanState(param.ableToReceiveMessage)], + [8, 5, BooleanState(param.ableToReceiveFriendRequest)], + [11, 6, param.chatMidToExcludeMembers], + [2, 7, param.includingMe], + [2, 8, param.excludeBlockedMembers], + [2, 9, param.includingMeOnlyMatch], + ]; +} +export function SearchSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [12, 3, SquareMemberSearchOption(param.searchOption)], + [11, 4, param.continuationToken], + [8, 5, param.limit], + ]; +} +export function SearchSquaresRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.query], + [11, 3, param.continuationToken], + [8, 4, param.limit], + ]; +} +export function MIDType( + param: LINETypes.MIDType | undefined, +): LINETypes.MIDType & number | undefined { + return typeof param === "string" ? LINETypes.enums.MIDType[param] : param; +} +export function Pb1_D6( + param: LINETypes.Pb1_D6 | undefined, +): LINETypes.Pb1_D6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_D6[param] : param; +} +export function Pb1_EnumC13050k( + param: LINETypes.Pb1_EnumC13050k | undefined, +): LINETypes.Pb1_EnumC13050k & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13050k[param] + : param; +} +export function GeolocationAccuracy( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [4, 1, param.radiusMeters], + [4, 2, param.radiusConfidence], + [4, 3, param.altitudeAccuracy], + [4, 4, param.velocityAccuracy], + [4, 5, param.bearingAccuracy], + [8, 6, Pb1_EnumC13050k(param.accuracyMode)], + ]; +} +export function Location( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.title], + [11, 2, param.address], + [4, 3, param.latitude], + [4, 4, param.longitude], + [11, 5, param.phone], + [11, 6, param.categoryId], + [8, 7, Pb1_D6(param.provider)], + [12, 8, GeolocationAccuracy(param.accuracy)], + [4, 9, param.altitudeMeters], + ]; +} +export function ContentType( + param: LINETypes.ContentType | undefined, +): LINETypes.ContentType & number | undefined { + return typeof param === "string" ? LINETypes.enums.ContentType[param] : param; +} +export function Pb1_EnumC13015h6( + param: LINETypes.Pb1_EnumC13015h6 | undefined, +): LINETypes.Pb1_EnumC13015h6 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13015h6[param] + : param; +} +export function Pb1_E7( + param: LINETypes.Pb1_E7 | undefined, +): LINETypes.Pb1_E7 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_E7[param] : param; +} +export function Pb1_B( + param: LINETypes.Pb1_B | undefined, +): LINETypes.Pb1_B & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_B[param] : param; +} +export function ReactionType( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, MessageReactionType(param.predefinedReactionType)], + ]; +} +export function Reaction( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.fromUserMid], + [10, 2, param.atMillis], + [12, 3, ReactionType(param.reactionType)], + ]; +} +export function Message( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.from], + [11, 2, param.to], + [8, 3, MIDType(param.toType)], + [11, 4, param.id], + [10, 5, param.createdTime], + [10, 6, param.deliveredTime], + [11, 10, param.text], + [12, 11, Location(param.location)], + [2, 14, param.hasContent], + [8, 15, ContentType(param.contentType)], + [11, 17, param.contentPreview], + [13, 18, [11, 11, param.contentMetadata]], + [3, 19, param.sessionId], + [15, 20, [11, param.chunks]], + [11, 21, param.relatedMessageId], + [8, 22, Pb1_EnumC13015h6(param.messageRelationType)], + [8, 23, param.readCount], + [8, 24, Pb1_E7(param.relatedMessageServiceCode)], + [8, 25, Pb1_B(param.appExtensionType)], + [15, 27, [12, param.reactions && param.reactions.map((e) => Reaction(e))]], + ]; +} +export function SquareMessageState( + param: LINETypes.SquareMessageState | undefined, +): LINETypes.SquareMessageState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareMessageState[param] + : param; +} +export function SquareMessageThreadInfo( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatThreadMid], + [2, 2, param.threadRoot], + ]; +} +export function SquareMessage( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Message(param.message)], + [8, 3, MIDType(param.fromType)], + [10, 4, param.squareMessageRevision], + [8, 5, SquareMessageState(param.state)], + [12, 6, SquareMessageThreadInfo(param.threadInfo)], + ]; +} +export function SendMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.squareChatMid], + [12, 3, SquareMessage(param.squareMessage)], + ]; +} +export function SendSquareThreadMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [11, 3, param.threadMid], + [12, 4, SquareMessage(param.threadMessage)], + ]; +} +export function SyncSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + [13, 2, [11, 10, param.squareMembers]], + ]; +} +export function UnhideSquareMemberContentsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMemberMid], + ]; +} +export function UnsendMessageRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareChatMid], + [11, 3, param.messageId], + [11, 4, param.threadMid], + ]; +} +export function SquareAuthorityAttribute( + param: LINETypes.SquareAuthorityAttribute | undefined, +): LINETypes.SquareAuthorityAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareAuthorityAttribute[param] + : param; +} +export function SquareAuthority( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + [8, 2, SquareMemberRole(param.updateSquareProfile)], + [8, 3, SquareMemberRole(param.inviteNewMember)], + [8, 4, SquareMemberRole(param.approveJoinRequest)], + [8, 5, SquareMemberRole(param.createPost)], + [8, 6, SquareMemberRole(param.createOpenSquareChat)], + [8, 7, SquareMemberRole(param.deleteSquareChatOrPost)], + [8, 8, SquareMemberRole(param.removeSquareMember)], + [8, 9, SquareMemberRole(param.grantRole)], + [8, 10, SquareMemberRole(param.enableInvitationTicket)], + [10, 11, param.revision], + [8, 12, SquareMemberRole(param.createSquareChatAnnouncement)], + [8, 13, SquareMemberRole(param.updateMaxChatMemberCount)], + [8, 14, SquareMemberRole(param.useReadonlyDefaultChat)], + [8, 15, SquareMemberRole(param.sendAllMention)], + ]; +} +export function UpdateSquareAuthorityRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updateAttributes && + param.updateAttributes.map((e) => SquareAuthorityAttribute(e)), + ]], + [12, 3, SquareAuthority(param.authority)], + ]; +} +export function SquareChatMemberAttribute( + param: LINETypes.SquareChatMemberAttribute | undefined, +): LINETypes.SquareChatMemberAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareChatMemberAttribute[param] + : param; +} +export function SquareChatMembershipState( + param: LINETypes.SquareChatMembershipState | undefined, +): LINETypes.SquareChatMembershipState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareChatMembershipState[param] + : param; +} +export function SquareChatMember( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMemberMid], + [11, 2, param.squareChatMid], + [10, 3, param.revision], + [8, 4, SquareChatMembershipState(param.membershipState)], + [2, 5, param.notificationForMessage], + [2, 6, param.notificationForNewMember], + ]; +} +export function UpdateSquareChatMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updatedAttrs && + param.updatedAttrs.map((e) => SquareChatMemberAttribute(e)), + ]], + [12, 3, SquareChatMember(param.chatMember)], + ]; +} +export function SquareChatAttribute( + param: LINETypes.SquareChatAttribute | undefined, +): LINETypes.SquareChatAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareChatAttribute[param] + : param; +} +export function UpdateSquareChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updatedAttrs && + param.updatedAttrs.map((e) => SquareChatAttribute(e)), + ]], + [12, 3, SquareChat(param.squareChat)], + ]; +} +export function SquareFeatureSetAttribute( + param: LINETypes.SquareFeatureSetAttribute | undefined, +): LINETypes.SquareFeatureSetAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareFeatureSetAttribute[param] + : param; +} +export function SquareFeatureControlState( + param: LINETypes.SquareFeatureControlState | undefined, +): LINETypes.SquareFeatureControlState & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareFeatureControlState[param] + : param; +} +export function SquareFeature( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, SquareFeatureControlState(param.controlState)], + [8, 2, BooleanState(param.booleanValue)], + ]; +} +export function SquareFeatureSet( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareMid], + [10, 2, param.revision], + [12, 11, SquareFeature(param.creatingSecretSquareChat)], + [12, 12, SquareFeature(param.invitingIntoOpenSquareChat)], + [12, 13, SquareFeature(param.creatingSquareChat)], + [12, 14, SquareFeature(param.readonlyDefaultChat)], + [12, 15, SquareFeature(param.showingAdvertisement)], + [12, 16, SquareFeature(param.delegateJoinToPlug)], + [12, 17, SquareFeature(param.delegateKickOutToPlug)], + [12, 18, SquareFeature(param.disableUpdateJoinMethod)], + [12, 19, SquareFeature(param.disableTransferAdmin)], + [12, 20, SquareFeature(param.creatingLiveTalk)], + [12, 21, SquareFeature(param.disableUpdateSearchable)], + [12, 22, SquareFeature(param.summarizingMessages)], + [12, 23, SquareFeature(param.creatingSquareThread)], + [12, 24, SquareFeature(param.enableSquareThread)], + [12, 25, SquareFeature(param.disableChangeRoleCoAdmin)], + ]; +} +export function UpdateSquareFeatureSetRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updateAttributes && + param.updateAttributes.map((e) => SquareFeatureSetAttribute(e)), + ]], + [12, 3, SquareFeatureSet(param.squareFeatureSet)], + ]; +} +export function SquareMemberRelation( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, SquareMemberRelationState(param.state)], + [10, 2, param.revision], + ]; +} +export function UpdateSquareMemberRelationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.squareMid], + [11, 3, param.targetSquareMemberMid], + [14, 4, [8, param.updatedAttrs]], + [12, 5, SquareMemberRelation(param.relation)], + ]; +} +export function SquareMemberAttribute( + param: LINETypes.SquareMemberAttribute | undefined, +): LINETypes.SquareMemberAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareMemberAttribute[param] + : param; +} +export function SquarePreferenceAttribute( + param: LINETypes.SquarePreferenceAttribute | undefined, +): LINETypes.SquarePreferenceAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquarePreferenceAttribute[param] + : param; +} +export function UpdateSquareMemberRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updatedAttrs && + param.updatedAttrs.map((e) => SquareMemberAttribute(e)), + ]], + [14, 3, [ + 8, + param.updatedPreferenceAttrs && + param.updatedPreferenceAttrs.map((e) => SquarePreferenceAttribute(e)), + ]], + [12, 4, SquareMember(param.squareMember)], + ]; +} +export function UpdateSquareMembersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updatedAttrs && + param.updatedAttrs.map((e) => SquareMemberAttribute(e)), + ]], + [15, 3, [12, param.members && param.members.map((e) => SquareMember(e))]], + ]; +} +export function SquareAttribute( + param: LINETypes.SquareAttribute | undefined, +): LINETypes.SquareAttribute & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SquareAttribute[param] + : param; +} +export function UpdateSquareRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.updatedAttrs && param.updatedAttrs.map((e) => SquareAttribute(e)), + ]], + [12, 3, Square(param.square)], + ]; +} +export function SquareUserSettings( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, BooleanState(param.liveTalkNotification)], + ]; +} +export function UpdateUserSettingsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [12, 2, SquareUserSettings(param.userSettings)], + ]; +} +export function r80_EnumC34362b( + param: LINETypes.r80_EnumC34362b | undefined, +): LINETypes.r80_EnumC34362b & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34362b[param] + : param; +} +export function r80_EnumC34361a( + param: LINETypes.r80_EnumC34361a | undefined, +): LINETypes.r80_EnumC34361a & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34361a[param] + : param; +} +export function AuthenticatorAssertionResponse( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.clientDataJSON], + [11, 2, param.authenticatorData], + [11, 3, param.signature], + [11, 4, param.userHandle], + ]; +} +export function AuthenticationExtensionsClientOutputs( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 91, param.lineAuthenSel], + ]; +} +export function AuthPublicKeyCredential( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.id], + [11, 2, param.type], + [12, 3, AuthenticatorAssertionResponse(param.response)], + [12, 4, AuthenticationExtensionsClientOutputs(param.extensionResults)], + ]; +} +export function AuthenticateWithPaakRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [12, 2, AuthPublicKeyCredential(param.credential)], + ]; +} +export function BulkFollowRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [11, param.followTargetMids]], + [14, 2, [11, param.unfollowTargetMids]], + [2, 3, param.hasNext], + ]; +} +export function t80_h( + param: LINETypes.t80_h | undefined, +): LINETypes.t80_h & number | undefined { + return typeof param === "string" ? LINETypes.enums.t80_h[param] : param; +} +export function GetRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.keyName], + [8, 2, t80_h(param.ns)], + ]; +} +export function BulkGetRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [12, param.requests && param.requests.map((e) => GetRequest(e))]], + ]; +} +export function BuyMustbuyRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [11, 2, param.productId], + [11, 3, param.serialNumber], + ]; +} +export function CanCreateCombinationStickerRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [11, param.packageIds]], + ]; +} +export function Locale( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.language], + [11, 2, param.country], + ]; +} +export function CancelChatInvitationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [14, 3, [11, param.targetUserMids]], + ]; +} +export function CancelPaakAuthRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function CancelPaakAuthenticationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function CancelPinCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function CancelReactionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [10, 2, param.messageId], + ]; +} +export function VerificationMethod( + param: LINETypes.VerificationMethod | undefined, +): LINETypes.VerificationMethod & number | undefined { + return typeof param === "string" + ? LINETypes.enums.VerificationMethod[param] + : param; +} +export function r80_n0( + param: LINETypes.r80_n0 | undefined, +): LINETypes.r80_n0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.r80_n0[param] : param; +} +export function T70_EnumC14390b( + param: LINETypes.T70_EnumC14390b | undefined, +): LINETypes.T70_EnumC14390b & number | undefined { + return typeof param === "string" + ? LINETypes.enums.T70_EnumC14390b[param] + : param; +} +export function AccountIdentifier( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, T70_EnumC14390b(param.type)], + [11, 2, param.identifier], + [11, 11, param.countryCode], + ]; +} +export function h80_t( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.newDevicePublicKey], + [11, 2, param.encryptedQrIdentifier], + ]; +} +export function CheckIfEncryptedE2EEKeyReceivedRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [12, 2, h80_t(param.secureChannelData)], + ]; +} +export function UserPhoneNumber( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.phoneNumber], + [11, 2, param.countryCode], + ]; +} +export function CheckIfPhonePinCodeMsgVerifiedRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, UserPhoneNumber(param.userPhoneNumber)], + ]; +} +export function r80_EnumC34368h( + param: LINETypes.r80_EnumC34368h | undefined, +): LINETypes.r80_EnumC34368h & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34368h[param] + : param; +} +export function r80_EnumC34371k( + param: LINETypes.r80_EnumC34371k | undefined, +): LINETypes.r80_EnumC34371k & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34371k[param] + : param; +} +export function CheckUserAgeAfterApprovalWithDocomoV2Request( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.accessToken], + [11, 2, param.agprm], + ]; +} +export function CheckUserAgeWithDocomoV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authCode], + ]; +} +export function CarrierCode( + param: LINETypes.CarrierCode | undefined, +): LINETypes.CarrierCode & number | undefined { + return typeof param === "string" ? LINETypes.enums.CarrierCode[param] : param; +} +export function IdentityProvider( + param: LINETypes.IdentityProvider | undefined, +): LINETypes.IdentityProvider & number | undefined { + return typeof param === "string" + ? LINETypes.enums.IdentityProvider[param] + : param; +} +export function IdentifierConfirmationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [11, 11, param.metaData]], + [2, 2, param.forceRegistration], + [11, 3, param.verificationCode], + ]; +} +export function IdentityCredentialRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [11, 11, param.metaData]], + [8, 2, IdentityProvider(param.identityProvider)], + [11, 3, param.cipherKeyId], + [11, 4, param.cipherText], + [12, 5, IdentifierConfirmationRequest(param.confirmationRequest)], + ]; +} +export function ConnectEapAccountRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function Pb1_X2( + param: LINETypes.Pb1_X2 | undefined, +): LINETypes.Pb1_X2 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_X2[param] : param; +} +export function ChatRoomAnnouncementContentMetadata( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.replace], + [11, 2, param.sticonOwnership], + [11, 3, param.postNotificationMetadata], + ]; +} +export function ChatRoomAnnouncementContents( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.displayFields], + [11, 2, param.text], + [11, 3, param.link], + [11, 4, param.thumbnail], + [12, 5, ChatRoomAnnouncementContentMetadata(param.contentMetadata)], + ]; +} +export function Pb1_Z2( + param: LINETypes.Pb1_Z2 | undefined, +): LINETypes.Pb1_Z2 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_Z2[param] : param; +} +export function CreateChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [8, 2, Pb1_Z2(param.type)], + [11, 3, param.name], + [14, 4, [11, param.targetUserMids]], + [11, 5, param.picturePath], + ]; +} +export function Pb1_A3( + param: LINETypes.Pb1_A3 | undefined, +): LINETypes.Pb1_A3 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_A3[param] : param; +} +export function Pb1_C13263z3( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.blobHeader], + [11, 2, param.blobPayload], + [8, 3, Pb1_A3(param.reason)], + ]; +} +export function CreateGroupCallUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.title], + ]; +} +export function E2EEMetadata( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.e2EEPublicKeyId], + ]; +} +export function SingleValueMetadata( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Pb1_W5( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, E2EEMetadata(param.e2ee)], + [12, 2, SingleValueMetadata(param.singleValue)], + ]; +} +export function Pb1_X5( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_W5(param.metadata)], + [11, 2, param.blobPayload], + ]; +} +export function Pb1_E3( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.blobHeader], + [15, 2, [ + 12, + param.payloadDataList && param.payloadDataList.map((e) => Pb1_X5(e)), + ]], + ]; +} +export function CreateMultiProfileRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.displayName], + ]; +} +export function h80_C25643c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Pb1_H3( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function DeleteGroupCallUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.urlId], + ]; +} +export function DeleteMultiProfileRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.profileId], + ]; +} +export function DeleteOtherFromChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [14, 3, [11, param.targetUserMids]], + ]; +} +export function R70_c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function DeleteSafetyStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.disasterId], + ]; +} +export function DeleteSelfFromChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [10, 3, param.lastSeenMessageDeliveredTime], + [11, 4, param.lastSeenMessageId], + [10, 5, param.lastMessageDeliveredTime], + [11, 6, param.lastMessageId], + ]; +} +export function DetermineMediaMessageFlowRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function Q70_q( + param: LINETypes.Q70_q | undefined, +): LINETypes.Q70_q & number | undefined { + return typeof param === "string" ? LINETypes.enums.Q70_q[param] : param; +} +export function DisconnectEapAccountRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Q70_q(param.eapType)], + ]; +} +export function S70_b( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function FetchOperationsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + [10, 2, param.offsetFrom], + ]; +} +export function FetchPhonePinCodeMsgRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, UserPhoneNumber(param.userPhoneNumber)], + ]; +} +export function Pb1_F0( + param: LINETypes.Pb1_F0 | undefined, +): LINETypes.Pb1_F0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_F0[param] : param; +} +export function FindChatByTicketRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.ticketId], + ]; +} +export function FollowRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + ]; +} +export function GetAccessTokenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.fontId], + ]; +} +export function GetAllChatMidsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.withMemberChats], + [2, 2, param.withInvitedChats], + ]; +} +export function Pb1_V7( + param: LINETypes.Pb1_V7 | undefined, +): LINETypes.Pb1_V7 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_V7[param] : param; +} +export function m80_l( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function m80_n( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LatestProductsByAuthorRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [10, 2, param.authorId], + [8, 3, param.limit], + ]; +} +export function Ob1_a2( + param: LINETypes.Ob1_a2 | undefined, +): LINETypes.Ob1_a2 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Ob1_a2[param] : param; +} +export function AutoSuggestionShowcaseRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [8, 2, Ob1_a2(param.suggestionType)], + ]; +} +export function NZ0_C12208u( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function NZ0_C12214w( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function ZQ0_b( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function UEN( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.revision], + ]; +} +export function Beacon( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hardwareId], + ]; +} +export function Uf_C14856C( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UEN(param.uen)], + [12, 2, Beacon(param.beacon)], + ]; +} +export function AdRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [11, 11, param.headers]], + [13, 2, [11, 11, param.queryParams]], + ]; +} +export function Uf_EnumC14873o( + param: LINETypes.Uf_EnumC14873o | undefined, +): LINETypes.Uf_EnumC14873o & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Uf_EnumC14873o[param] + : param; +} +export function ContentRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Uf_EnumC14873o(param.os)], + [11, 2, param.appv], + [11, 3, param.lineAcceptableLanguage], + [11, 4, param.countryCode], + ]; +} +export function BannerRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.test], + [12, 2, Uf_C14856C(param.trigger)], + [12, 3, AdRequest(param.ad)], + [12, 4, ContentRequest(param.content)], + ]; +} +export function Eh_C8933a( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetBleDeviceRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.serviceUuid], + [11, 2, param.psdi], + ]; +} +export function GetBuddyChatBarRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.buddyMid], + [10, 2, param.chatBarRevision], + [11, 3, param.richMenuId], + ]; +} +export function Pb1_D0( + param: LINETypes.Pb1_D0 | undefined, +): LINETypes.Pb1_D0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_D0[param] : param; +} +export function GetBuddyLiveRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.mid], + ]; +} +export function GetBuddyStatusBarV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.botMid], + [10, 2, param.revision], + ]; +} +export function GetCallStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.basicSearchId], + [11, 2, param.otp], + ]; +} +export function GetCampaignRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.campaignType], + ]; +} +export function GetChallengeForPaakAuthRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function GetChallengeForPrimaryRegRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function GetChannelContextRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function Pb1_Q2( + param: LINETypes.Pb1_Q2 | undefined, +): LINETypes.Pb1_Q2 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_Q2[param] : param; +} +export function GetChatappRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatappId], + [11, 2, param.language], + ]; +} +export function GetChatsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.chatMids]], + [2, 2, param.withMembers], + [2, 3, param.withInvitees], + ]; +} +export function jO0_EnumC27533B( + param: LINETypes.jO0_EnumC27533B | undefined, +): LINETypes.jO0_EnumC27533B & number | undefined { + return typeof param === "string" + ? LINETypes.enums.jO0_EnumC27533B[param] + : param; +} +export function jO0_EnumC27559z( + param: LINETypes.jO0_EnumC27559z | undefined, +): LINETypes.jO0_EnumC27559z & number | undefined { + return typeof param === "string" + ? LINETypes.enums.jO0_EnumC27559z[param] + : param; +} +export function GetCoinProductsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, jO0_EnumC27533B(param.appStoreCode)], + [11, 2, param.country], + [11, 3, param.language], + [8, 4, jO0_EnumC27559z(param.pgCode)], + ]; +} +export function GetCoinHistoryRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, jO0_EnumC27533B(param.appStoreCode)], + [11, 2, param.country], + [11, 3, param.language], + [11, 4, param.searchEndDate], + [8, 5, param.offset], + [8, 6, param.limit], + ]; +} +export function GetContactCalendarEventTarget( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.targetUserMid], + ]; +} +export function GetContactCalendarEventsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.targetUsers && + param.targetUsers.map((e) => GetContactCalendarEventTarget(e)), + ]], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function GetContactV3Target( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.targetUserMid], + ]; +} +export function GetContactsV3Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.targetUsers && param.targetUsers.map((e) => GetContactV3Target(e)), + ]], + [8, 2, Pb1_V7(param.syncReason)], + [2, 3, param.checkUserStatusStrictly], + ]; +} +export function Pb1_EnumC13221w3( + param: LINETypes.Pb1_EnumC13221w3 | undefined, +): LINETypes.Pb1_EnumC13221w3 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13221w3[param] + : param; +} +export function SimCard( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.countryCode], + [11, 2, param.hni], + [11, 3, param.carrierName], + ]; +} +export function fN0_C24473e( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function DestinationLIFFRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.originalUrl], + ]; +} +export function vh_C37633d( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Pb1_W4( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Pb1_Y4( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetExchangeKeyRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function GetFollowBlacklistRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.cursor], + ]; +} +export function GetFollowersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + [11, 2, param.cursor], + ]; +} +export function GetFollowingsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + [11, 2, param.cursor], + ]; +} +export function VR0_l( + param: LINETypes.VR0_l | undefined, +): LINETypes.VR0_l & number | undefined { + return typeof param === "string" ? LINETypes.enums.VR0_l[param] : param; +} +export function GetFontMetasRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, VR0_l(param.requestCause)], + ]; +} +export function GetFriendDetailTarget( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.targetUserMid], + ]; +} +export function GetFriendDetailsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.targetUsers && + param.targetUsers.map((e) => GetFriendDetailTarget(e)), + ]], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function Pb1_F4( + param: LINETypes.Pb1_F4 | undefined, +): LINETypes.Pb1_F4 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_F4[param] : param; +} +export function GetGnbBadgeStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.uenRevision], + ]; +} +export function GetGroupCallUrlInfoRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.urlId], + ]; +} +export function Pb1_C13042j5( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetHomeFlexContentRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.supportedFlexVersion], + ]; +} +export function Eg_C8928b( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetHomeServicesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [8, param.ids]], + ]; +} +export function fN0_C24471c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetJoinedMembershipByBotMidRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.botMid], + ]; +} +export function GetJoinedMembershipRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.uniqueKey], + ]; +} +export function Pb1_C13070l5( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function LiffViewWithoutUserContextRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.liffId], + ]; +} +export function r80_EnumC34372l( + param: LINETypes.r80_EnumC34372l | undefined, +): LINETypes.r80_EnumC34372l & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34372l[param] + : param; +} +export function GetLoginActorContextRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function GetMappedProfileIdsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.targetUserMids]], + ]; +} +export function MessageBoxListRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.minChatId], + [11, 2, param.maxChatId], + [2, 3, param.activeOnly], + [8, 4, param.messageBoxCountLimit], + [2, 5, param.withUnreadCount], + [8, 6, param.lastMessagesPerMessageBoxCount], + [2, 7, param.unreadOnly], + ]; +} +export function GetModuleLayoutV4Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.etag], + ]; +} +export function NZ0_G( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.id], + [11, 2, param.etag], + [11, 3, param.recommendedModelId], + [11, 4, param.deviceAdId], + [2, 5, param.agreedWithTargetingAdByMid], + [11, 6, param.deviceId], + ]; +} +export function NZ0_E( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.id], + [11, 2, param.etag], + [11, 3, param.recommendedModelId], + [11, 4, param.deviceAdId], + [2, 5, param.agreedWithTargetingAdByMid], + [11, 6, param.deviceId], + ]; +} +export function GetModulesRequestV2( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.etag], + [11, 2, param.deviceAdId], + ]; +} +export function NZ0_EnumC12169g1( + param: LINETypes.NZ0_EnumC12169g1 | undefined, +): LINETypes.NZ0_EnumC12169g1 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.NZ0_EnumC12169g1[param] + : param; +} +export function GetModulesRequestV3( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.etag], + [8, 2, NZ0_EnumC12169g1(param.tabIdentifier)], + [11, 3, param.deviceAdId], + [2, 4, param.agreedWithTargetingAdByMid], + ]; +} +export function GetModulesV4WithStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.etag], + [11, 2, param.subTabId], + [11, 3, param.deviceAdId], + [2, 4, param.agreedWithTargetingAdByMid], + [11, 5, param.deviceId], + ]; +} +export function GetMyAssetInformationV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.refresh], + ]; +} +export function GetMyChatappsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.language], + [11, 2, param.continuationToken], + ]; +} +export function GetMyDashboardRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, NZ0_EnumC12169g1(param.tabIdentifier)], + ]; +} +export function GetNotificationSettingsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [11, param.chatMids]], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function GetPasswordHashingParametersRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function GetPasswordHashingParametersForPwdRegRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function GetPasswordHashingParametersForPwdVerifRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function Device( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.udid], + [11, 2, param.deviceModel], + ]; +} +export function GetPhoneVerifMethodForRegistrationRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, Device(param.device)], + [12, 3, UserPhoneNumber(param.userPhoneNumber)], + ]; +} +export function GetPhoneVerifMethodV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, Device(param.device)], + [12, 3, UserPhoneNumber(param.userPhoneNumber)], + ]; +} +export function Pb1_C13126p5( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetPredefinedScenarioSetsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.deviceIds]], + ]; +} +export function fN0_C24475g( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function fN0_C24476h( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function MessageBoxV2MessageId( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.deliveredTime], + [10, 2, param.messageId], + ]; +} +export function GetPreviousMessagesV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageBoxId], + [12, 2, MessageBoxV2MessageId(param.endMessageId)], + [8, 3, param.messagesCount], + [2, 4, param.withReadCount], + [2, 5, param.receivedOnly], + ]; +} +export function GetPublishedMembershipsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.basicSearchId], + ]; +} +export function PurchaseEnabledRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.uniqueKey], + ]; +} +export function NZ0_S( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetRecommendationDetailTarget( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.targetUserMid], + ]; +} +export function GetRecommendationDetailsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.targetUsers && + param.targetUsers.map((e) => GetRecommendationDetailTarget(e)), + ]], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function ConfigurationsParams( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.regionOfUsim], + [11, 2, param.regionOfTelephone], + [11, 3, param.regionOfLocale], + [11, 4, param.carrier], + ]; +} +export function RepairGroupMembers( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.numMembers], + [2, 3, param.invalidGroup], + ]; +} +export function GetRepairElementsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.profile], + [2, 2, param.settings], + [12, 3, ConfigurationsParams(param.configurations)], + [8, 4, param.numLocalJoinedGroups], + [8, 5, param.numLocalInvitedGroups], + [8, 6, param.numLocalFriends], + [8, 7, param.numLocalRecommendations], + [8, 8, param.numLocalBlockedFriends], + [8, 9, param.numLocalBlockedRecommendations], + [13, 10, [11, 12, map(RepairGroupMembers, param.localGroupMembers)]], + [8, 11, Pb1_V7(param.syncReason)], + [13, 12, [11, 8, param.localProfileMappings]], + ]; +} +export function GetResponseStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.botMid], + ]; +} +export function WebLoginRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hookedFullUrl], + [11, 2, param.sessionString], + [2, 3, param.fromIAB], + [11, 4, param.sourceApplication], + ]; +} +export function LiffChatContext( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function LiffSquareChatContext( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.squareChatMid], + ]; +} +export function Qj_C13595l( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [12, 2, LiffChatContext(param.chat)], + [12, 3, LiffSquareChatContext(param.squareChat)], + ]; +} +export function Qj_EnumC13584a( + param: LINETypes.Qj_EnumC13584a | undefined, +): LINETypes.Qj_EnumC13584a & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Qj_EnumC13584a[param] + : param; +} +export function SKAdNetwork( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.identifiers], + [11, 2, param.version], + ]; +} +export function LiffAdvertisingId( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.advertisingId], + [2, 2, param.tracking], + [8, 3, Qj_EnumC13584a(param.att)], + [12, 4, SKAdNetwork(param.skAdNetwork)], + ]; +} +export function LiffDeviceSetting( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.videoAutoPlayAllowed], + [12, 2, LiffAdvertisingId(param.advertisingId)], + ]; +} +export function LiffWebLoginRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hookedFullUrl], + [11, 2, param.sessionString], + [12, 3, Qj_C13595l(param.context)], + [12, 4, LiffDeviceSetting(param.deviceSetting)], + ]; +} +export function GetSCCRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.basicSearchId], + ]; +} +export function Eh_C8935c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function NZ0_U( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function SettingsAttributeEx( + param: LINETypes.SettingsAttributeEx | undefined, +): LINETypes.SettingsAttributeEx & number | undefined { + return typeof param === "string" + ? LINETypes.enums.SettingsAttributeEx[param] + : param; +} +export function GetSmartChannelRecommendationsRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.maxResults], + [11, 2, param.placement], + [2, 3, param.testMode], + ]; +} +export function GetSquareBotRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.botMid], + ]; +} +export function Ob1_C12606a0( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Ob1_K1( + param: LINETypes.Ob1_K1 | undefined, +): LINETypes.Ob1_K1 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Ob1_K1[param] : param; +} +export function GetSubscriptionPlansRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [8, 2, Ob1_K1(param.storeCode)], + ]; +} +export function Ob1_C12618e0( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [11, 2, param.continuationToken], + [8, 3, param.limit], + [8, 4, Ob1_O0(param.productType)], + ]; +} +export function GetSubscriptionStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.includeOtherOwnedSubscriptions], + ]; +} +export function Ob1_C12630i0( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetSuggestResourcesV2Request( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [15, 2, [11, param.productIds]], + ]; +} +export function GetTaiwanBankBalanceRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.accessToken], + [11, 2, param.authorizationCode], + [11, 3, param.codeVerifier], + ]; +} +export function GetTargetProfileTarget( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.targetUserMid], + ]; +} +export function GetTargetProfilesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.targetUsers && + param.targetUsers.map((e) => GetTargetProfileTarget(e)), + ]], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function NZ0_C12150a0( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function GetThaiBankBalanceRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + ]; +} +export function GetTotalCoinBalanceRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, jO0_EnumC27533B(param.appStoreCode)], + ]; +} +export function ChannelIdWithLastUpdated( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.channelId], + [10, 2, param.lastUpdated], + ]; +} +export function GetUserCollectionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.lastUpdatedTimeMillis], + [2, 2, param.includeSummary], + [8, 3, Ob1_O0(param.productType)], + ]; +} +export function GetUserVectorRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.majorVersion], + ]; +} +export function GetUsersMappedByProfileRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.profileId], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function InviteFriendsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.campaignId], + [15, 2, [11, param.invitees]], + ]; +} +export function InviteIntoChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [14, 3, [11, param.targetUserMids]], + ]; +} +export function IsProductForCollectionsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [11, 2, param.productId], + ]; +} +export function IsStickerAvailableForCombinationStickerRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.packageId], + ]; +} +export function LiffViewRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.liffId], + [12, 2, Qj_C13595l(param.context)], + [11, 3, param.lang], + [12, 4, LiffDeviceSetting(param.deviceSetting)], + [11, 5, param.msit], + [2, 6, param.subsequentLiff], + [11, 7, param.domain], + ]; +} +export function IssueBirthdayGiftTokenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.recipientUserMid], + ]; +} +export function IssueV3TokenForPrimaryRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.udid], + [11, 2, param.systemDisplayName], + [11, 3, param.modelName], + ]; +} +export function JoinChatByCallUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.urlId], + [8, 2, param.reqSeq], + ]; +} +export function KickoutFromGroupCallRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [15, 2, [11, param.targetMids]], + ]; +} +export function DeviceLinkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + ]; +} +export function LookupAvailableEapRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function MapProfileToUsersRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.profileId], + [15, 2, [11, param.targetMids]], + ]; +} +export function MigratePrimaryUsingQrCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [11, 2, param.nonce], + ]; +} +export function NotifyChatAdEntryRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.scenarioId], + [11, 3, param.sdata], + ]; +} +export function do0_EnumC23148f( + param: LINETypes.do0_EnumC23148f | undefined, +): LINETypes.do0_EnumC23148f & number | undefined { + return typeof param === "string" + ? LINETypes.enums.do0_EnumC23148f[param] + : param; +} +export function do0_EnumC23147e( + param: LINETypes.do0_EnumC23147e | undefined, +): LINETypes.do0_EnumC23147e & number | undefined { + return typeof param === "string" + ? LINETypes.enums.do0_EnumC23147e[param] + : param; +} +export function NotifyDeviceConnectionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + [11, 2, param.connectionId], + [8, 3, do0_EnumC23148f(param.connectionType)], + [8, 4, do0_EnumC23147e(param.code)], + [11, 5, param.errorReason], + [10, 6, param.startTime], + [10, 7, param.endTime], + ]; +} +export function NotifyDeviceDisconnectionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + [11, 2, param.connectionId], + [10, 4, param.disconnectedTime], + ]; +} +export function kf_p( + param: LINETypes.kf_p | undefined, +): LINETypes.kf_p & number | undefined { + return typeof param === "string" ? LINETypes.enums.kf_p[param] : param; +} +export function kf_o( + param: LINETypes.kf_o | undefined, +): LINETypes.kf_o & number | undefined { + return typeof param === "string" ? LINETypes.enums.kf_o[param] : param; +} +export function OATalkroomEventContext( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.timestampMillis], + [11, 2, param.botMid], + [11, 3, param.userMid], + [8, 4, kf_o(param.os)], + [11, 5, param.osVersion], + [11, 6, param.appVersion], + [11, 7, param.region], + ]; +} +export function kf_u( + param: LINETypes.kf_u | undefined, +): LINETypes.kf_u & number | undefined { + return typeof param === "string" ? LINETypes.enums.kf_u[param] : param; +} +export function RichmenuCoordinates( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [4, 1, param.x], + [4, 2, param.y], + ]; +} +export function kf_r( + param: LINETypes.kf_r | undefined, +): LINETypes.kf_r & number | undefined { + return typeof param === "string" ? LINETypes.enums.kf_r[param] : param; +} +export function RichmenuEvent( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, kf_u(param.type)], + [11, 2, param.richmenuId], + [12, 3, RichmenuCoordinates(param.coordinates)], + [8, 4, param.areaIndex], + [11, 5, param.clickUrl], + [8, 6, kf_r(param.clickAction)], + ]; +} +export function kf_x( + param: LINETypes.kf_x | undefined, +): LINETypes.kf_x & number | undefined { + return typeof param === "string" ? LINETypes.enums.kf_x[param] : param; +} +export function kf_w( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function TalkroomEnterReferer( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.urlScheme], + [8, 2, kf_x(param.type)], + [12, 3, kf_w(param.content)], + ]; +} +export function TalkroomEvent( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [12, 2, TalkroomEnterReferer(param.referer)], + ]; +} +export function kf_m( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RichmenuEvent(param.richmenu)], + [12, 2, TalkroomEvent(param.talkroom)], + ]; +} +export function OATalkroomEvent( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.eventId], + [8, 2, kf_p(param.type)], + [12, 3, OATalkroomEventContext(param.context)], + [12, 4, kf_m(param.content)], + ]; +} +export function NotifyOATalkroomEventsRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [12, param.events && param.events.map((e) => OATalkroomEvent(e))]], + ]; +} +export function do0_G( + param: LINETypes.do0_G | undefined, +): LINETypes.do0_G & number | undefined { + return typeof param === "string" ? LINETypes.enums.do0_G[param] : param; +} +export function do0_m0( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function do0_C23143a( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.bytes], + ]; +} +export function do0_C23142E( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, do0_m0(param.voidResult)], + [12, 2, do0_C23143a(param.binaryResult)], + ]; +} +export function do0_F( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.scenarioId], + [11, 2, param.deviceId], + [10, 3, param.revision], + [10, 4, param.startTime], + [10, 5, param.endTime], + [8, 6, do0_G(param.code)], + [11, 7, param.errorReason], + [11, 8, param.bleNotificationPayload], + [15, 9, [ + 12, + param.actionResults && param.actionResults.map((e) => do0_C23142E(e)), + ]], + [11, 10, param.connectionId], + ]; +} +export function NotifyScenarioExecutedRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [ + 12, + param.scenarioResults && param.scenarioResults.map((e) => do0_F(e)), + ]], + ]; +} +export function ApplicationType( + param: LINETypes.ApplicationType | undefined, +): LINETypes.ApplicationType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.ApplicationType[param] + : param; +} +export function DeviceInfo( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceName], + [11, 2, param.systemName], + [11, 3, param.systemVersion], + [11, 4, param.model], + [11, 5, param.webViewVersion], + [8, 10, CarrierCode(param.carrierCode)], + [11, 11, param.carrierName], + [8, 20, ApplicationType(param.applicationType)], + ]; +} +export function AuthSessionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [11, 11, param.metaData]], + ]; +} +export function OpenSessionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [11, 11, param.metaData]], + ]; +} +export function PermitLoginRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [13, 2, [11, 11, param.metaData]], + ]; +} +export function Price( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.currency], + [11, 2, param.amount], + [11, 3, param.priceString], + ]; +} +export function PurchaseOrder( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.shopId], + [11, 2, param.productId], + [11, 5, param.recipientMid], + [12, 11, Price(param.price)], + [2, 12, param.enableLinePointAutoExchange], + [12, 21, Locale(param.locale)], + [13, 31, [11, 11, param.presentAttributes]], + ]; +} +export function PurchaseSubscriptionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.billingItemId], + , + [8, 3, Ob1_K1(param.storeCode)], + [11, 4, param.storeOrderId], + [2, 5, param.outsideAppPurchase], + [2, 6, param.unavailableItemPurchase], + ]; +} +export function PutE2eeKeyRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [13, 2, [11, 11, param.e2eeKey]], + ]; +} +export function ReactRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [10, 2, param.messageId], + [12, 3, ReactionType(param.reactionType)], + ]; +} +export function RefreshAccessTokenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.refreshToken], + ]; +} +export function RSAEncryptedPassword( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.encrypted], + [11, 2, param.keyName], + ]; +} +export function RegisterCampaignRewardRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.campaignId], + ]; +} +export function Pb1_C13097n4( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.version], + [8, 2, param.keyId], + [11, 4, param.keyData], + [10, 5, param.createdTime], + ]; +} +export function Pb1_W6( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, Pb1_C13097n4(param.publicKey)], + [11, 3, param.blobPayload], + ]; +} +export function RegisterPrimaryCredentialRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function ReissueChatTicketRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.groupMid], + ]; +} +export function RejectChatInvitationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + ]; +} +export function RemoveFollowerRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + ]; +} +export function RemoveFromFollowBlacklistRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + ]; +} +export function RemoveItemFromCollectionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.collectionId], + [11, 3, param.productId], + [11, 4, param.itemId], + ]; +} +export function RemoveProductFromSubscriptionSlotRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Ob1_O0(param.productType)], + [11, 2, param.productId], + , + [14, 4, [11, param.productIds]], + ]; +} +export function Pb1_EnumC13128p7( + param: LINETypes.Pb1_EnumC13128p7 | undefined, +): LINETypes.Pb1_EnumC13128p7 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13128p7[param] + : param; +} +export function AbuseMessage( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.messageId], + [11, 2, param.message], + [11, 3, param.senderMid], + [8, 4, ContentType(param.contentType)], + [10, 5, param.createdTime], + [13, 6, [11, 11, param.metadata]], + ]; +} +export function AbuseReport( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_EnumC13128p7(param.reportSource)], + [8, 2, ApplicationType(param.applicationType)], + [15, 3, [8, param.spammerReasons]], + [15, 4, [ + 12, + param.abuseMessages && param.abuseMessages.map((e) => AbuseMessage(e)), + ]], + [13, 5, [11, 11, param.metadata]], + ]; +} +export function EvidenceId( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.spaceId], + [11, 2, param.objectId], + ]; +} +export function AbuseReportLineMeeting( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.reporteeMid], + [15, 2, [8, param.spammerReasons]], + [15, 3, [ + 12, + param.evidenceIds && param.evidenceIds.map((e) => EvidenceId(e)), + ]], + [11, 4, param.chatMid], + ]; +} +export function Pb1_C12938c( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AbuseReport(param.message)], + [12, 2, AbuseReportLineMeeting(param.lineMeeting)], + ]; +} +export function ReportAbuseExRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_C12938c(param.abuseReportEntry)], + ]; +} +export function BeaconData( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.hwid], + [8, 2, param.rssi], + [8, 3, param.txPower], + [10, 4, param.scannedTimestampMs], + ]; +} +export function Geolocation( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [4, 1, param.longitude], + [4, 2, param.latitude], + [12, 3, GeolocationAccuracy(param.accuracy)], + [4, 4, param.altitudeMeters], + [4, 5, param.velocityMetersPerSecond], + [4, 6, param.bearingDegrees], + [15, 7, [ + 12, + param.beaconData && param.beaconData.map((e) => BeaconData(e)), + ]], + ]; +} +export function Pb1_EnumC12917a6( + param: LINETypes.Pb1_EnumC12917a6 | undefined, +): LINETypes.Pb1_EnumC12917a6 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC12917a6[param] + : param; +} +export function Pb1_EnumC12998g3( + param: LINETypes.Pb1_EnumC12998g3 | undefined, +): LINETypes.Pb1_EnumC12998g3 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC12998g3[param] + : param; +} +export function WifiSignal( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.ssid], + [11, 3, param.bssid], + [11, 4, param.wifiStandard], + [4, 5, param.frequency], + [10, 10, param.lastSeenTimestamp], + [8, 11, param.rssi], + ]; +} +export function ClientNetworkStatus( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_EnumC12998g3(param.networkType)], + [15, 2, [ + 12, + param.wifiSignals && param.wifiSignals.map((e) => WifiSignal(e)), + ]], + ]; +} +export function Pb1_F6( + param: LINETypes.Pb1_F6 | undefined, +): LINETypes.Pb1_F6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_F6[param] : param; +} +export function PoiInfo( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.poiId], + [8, 2, Pb1_F6(param.poiRealm)], + ]; +} +export function LocationDebugInfo( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, PoiInfo(param.poiInfo)], + ]; +} +export function AvatarProfile( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.version], + [10, 2, param.updatedMillis], + [11, 3, param.thumbnail], + [2, 4, param.usablePublicly], + ]; +} +export function Pb1_N6( + param: LINETypes.Pb1_N6 | undefined, +): LINETypes.Pb1_N6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_N6[param] : param; +} +export function Pb1_O6( + param: LINETypes.Pb1_O6 | undefined, +): LINETypes.Pb1_O6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_O6[param] : param; +} +export function Profile( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.mid], + [11, 3, param.userid], + [11, 10, param.phone], + [11, 11, param.email], + [11, 12, param.regionCode], + [11, 20, param.displayName], + [11, 21, param.phoneticName], + [11, 22, param.pictureStatus], + [11, 23, param.thumbnailUrl], + [11, 24, param.statusMessage], + [2, 31, param.allowSearchByUserid], + [2, 32, param.allowSearchByEmail], + [11, 33, param.picturePath], + [11, 34, param.musicProfile], + [11, 35, param.videoProfile], + [13, 36, [11, 11, param.statusMessageContentMetadata]], + [12, 37, AvatarProfile(param.avatarProfile)], + [2, 38, param.nftProfile], + [8, 39, Pb1_N6(param.pictureSource)], + [11, 40, param.profileId], + [8, 41, Pb1_O6(param.profileType)], + [10, 42, param.createdTimeMillis], + ]; +} +export function Pb1_EnumC13009h0( + param: LINETypes.Pb1_EnumC13009h0 | undefined, +): LINETypes.Pb1_EnumC13009h0 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13009h0[param] + : param; +} +export function PushRecvReport( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.pushTrackingId], + [10, 2, param.recvTimestamp], + [8, 3, param.battery], + [8, 4, Pb1_EnumC13009h0(param.batteryMode)], + [8, 5, Pb1_EnumC12998g3(param.clientNetworkType)], + [11, 6, param.carrierCode], + [10, 7, param.displayTimestamp], + ]; +} +export function ReportRefreshedAccessTokenRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.accessToken], + ]; +} +export function EmailConfirmationStatus( + param: LINETypes.EmailConfirmationStatus | undefined, +): LINETypes.EmailConfirmationStatus & number | undefined { + return typeof param === "string" + ? LINETypes.enums.EmailConfirmationStatus[param] + : param; +} +export function AccountMigrationPincodeType( + param: LINETypes.AccountMigrationPincodeType | undefined, +): LINETypes.AccountMigrationPincodeType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.AccountMigrationPincodeType[param] + : param; +} +export function Pb1_I6( + param: LINETypes.Pb1_I6 | undefined, +): LINETypes.Pb1_I6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_I6[param] : param; +} +export function Pb1_S7( + param: LINETypes.Pb1_S7 | undefined, +): LINETypes.Pb1_S7 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_S7[param] : param; +} +export function Pb1_M6( + param: LINETypes.Pb1_M6 | undefined, +): LINETypes.Pb1_M6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_M6[param] : param; +} +export function Pb1_gd( + param: LINETypes.Pb1_gd | undefined, +): LINETypes.Pb1_gd & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_gd[param] : param; +} +export function Settings( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 10, param.notificationEnable], + [10, 11, param.notificationMuteExpiration], + [2, 12, param.notificationNewMessage], + [2, 13, param.notificationGroupInvitation], + [2, 14, param.notificationShowMessage], + [2, 15, param.notificationIncomingCall], + [11, 16, param.notificationSoundMessage], + [11, 17, param.notificationSoundGroup], + [2, 18, param.notificationDisabledWithSub], + [2, 19, param.notificationPayment], + [2, 20, param.privacySyncContacts], + [2, 21, param.privacySearchByPhoneNumber], + [2, 22, param.privacySearchByUserid], + [2, 23, param.privacySearchByEmail], + [2, 24, param.privacyAllowSecondaryDeviceLogin], + [2, 25, param.privacyProfileImagePostToMyhome], + [2, 26, param.privacyReceiveMessagesFromNotFriend], + [2, 27, param.privacyAgreeUseLineCoinToPaidCall], + [2, 28, param.privacyAgreeUsePaidCall], + [2, 29, param.privacyAllowFriendRequest], + [11, 30, param.contactMyTicket], + [8, 40, IdentityProvider(param.identityProvider)], + [11, 41, param.identityIdentifier], + [13, 42, [8, 11, param.snsAccounts]], + [2, 43, param.phoneRegistration], + [8, 44, EmailConfirmationStatus(param.emailConfirmationStatus)], + [8, 45, AccountMigrationPincodeType(param.accountMigrationPincodeType)], + [2, 46, param.enforcedInputAccountMigrationPincode], + [8, 47, AccountMigrationPincodeType(param.securityCenterSettingsType)], + [2, 48, param.allowUnregistrationSecondaryDevice], + [2, 49, param.pwlessPrimaryCredentialRegistration], + [11, 50, param.preferenceLocale], + [13, 60, [8, 11, param.customModes]], + [2, 61, param.e2eeEnable], + [2, 62, param.hitokotoBackupRequested], + [2, 63, param.privacyProfileMusicPostToMyhome], + [2, 65, param.privacyAllowNearby], + [10, 66, param.agreementNearbyTime], + [10, 67, param.agreementSquareTime], + [2, 68, param.notificationMention], + [10, 69, param.botUseAgreementAcceptedAt], + [10, 70, param.agreementShakeFunction], + [10, 71, param.agreementMobileContactName], + [2, 72, param.notificationThumbnail], + [10, 73, param.agreementSoundToText], + [11, 74, param.privacyPolicyVersion], + [10, 75, param.agreementAdByWebAccess], + [10, 76, param.agreementPhoneNumberMatching], + [10, 77, param.agreementCommunicationInfo], + [8, 78, Pb1_I6(param.privacySharePersonalInfoToFriends)], + [10, 79, param.agreementThingsWirelessCommunication], + [10, 80, param.agreementGdpr], + [8, 81, Pb1_S7(param.privacyStatusMessageHistory)], + [10, 82, param.agreementProvideLocation], + [10, 83, param.agreementBeacon], + [8, 85, Pb1_M6(param.privacyAllowProfileHistory)], + [10, 86, param.agreementContentsSuggest], + [10, 87, param.agreementContentsSuggestDataCollection], + [8, 88, Pb1_gd(param.privacyAgeResult)], + [2, 89, param.privacyAgeResultReceived], + [10, 90, param.agreementOcrImageCollection], + [2, 91, param.privacyAllowFollow], + [2, 92, param.privacyShowFollowList], + [2, 93, param.notificationBadgeTalkOnly], + [10, 94, param.agreementIcna], + [2, 95, param.notificationReaction], + [10, 96, param.agreementMid], + [2, 97, param.homeNotificationNewFriend], + [2, 98, param.homeNotificationFavoriteFriendUpdate], + [2, 99, param.homeNotificationGroupMemberUpdate], + [2, 100, param.homeNotificationBirthday], + [13, 101, [8, 2, param.eapAllowedToConnect]], + [10, 102, param.agreementLineOutUse], + [10, 103, param.agreementLineOutProvideInfo], + [2, 104, param.notificationShowProfileImage], + [10, 105, param.agreementPdpa], + [11, 106, param.agreementLocationVersion], + [2, 107, param.zhdPageAllowedToShow], + [10, 108, param.agreementSnowAiAvatar], + [2, 109, param.eapOnlyAccountTargetCountry], + [10, 110, param.agreementLypPremiumAlbum], + [10, 112, param.agreementLypPremiumAlbumVersion], + [10, 113, param.agreementAlbumUsageData], + [10, 114, param.agreementAlbumUsageDataVersion], + [10, 115, param.agreementLypPremiumBackup], + [10, 116, param.agreementLypPremiumBackupVersion], + [10, 117, param.agreementOaAiAssistant], + [10, 118, param.agreementOaAiAssistantVersion], + [10, 119, param.agreementLypPremiumMultiProfile], + [10, 120, param.agreementLypPremiumMultiProfileVersion], + ]; +} +export function Pb1_od( + param: LINETypes.Pb1_od | undefined, +): LINETypes.Pb1_od & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_od[param] : param; +} +export function T70_K( + param: LINETypes.T70_K | undefined, +): LINETypes.T70_K & number | undefined { + return typeof param === "string" ? LINETypes.enums.T70_K[param] : param; +} +export function ReqToSendPhonePinCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, UserPhoneNumber(param.userPhoneNumber)], + [8, 3, T70_K(param.verifMethod)], + ]; +} +export function r80_g0( + param: LINETypes.r80_g0 | undefined, +): LINETypes.r80_g0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.r80_g0[param] : param; +} +export function CoinPurchaseReservation( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.productId], + [11, 2, param.country], + [11, 3, param.currency], + [11, 4, param.price], + [8, 5, jO0_EnumC27533B(param.appStoreCode)], + [11, 6, param.language], + [8, 7, jO0_EnumC27559z(param.pgCode)], + [11, 8, param.redirectUrl], + ]; +} +export function fN0_G( + param: LINETypes.fN0_G | undefined, +): LINETypes.fN0_G & number | undefined { + return typeof param === "string" ? LINETypes.enums.fN0_G[param] : param; +} +export function ReserveSubscriptionPurchaseRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.billingItemId], + [8, 2, fN0_G(param.storeCode)], + [2, 3, param.addOaFriend], + [11, 4, param.entryPoint], + [11, 5, param.campaignId], + [11, 6, param.invitationId], + ]; +} +export function ReserveRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.uniqueKey], + ]; +} +export function Pb1_C13155r7( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.restoreClaim], + ]; +} +export function Pb1_C13183t7( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function RevokeTokensRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.accessTokens]], + ]; +} +export function StudentInformation( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.schoolName], + [11, 2, param.graduationDate], + ]; +} +export function SaveStudentInformationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, StudentInformation(param.studentInformation)], + ]; +} +export function SendEncryptedE2EEKeyRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + ]; +} +export function SendPostbackRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.messageId], + [11, 2, param.url], + [11, 3, param.chatMID], + [11, 4, param.originMID], + ]; +} +export function SetChatHiddenStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatMid], + [10, 3, param.lastMessageId], + [2, 4, param.hidden], + ]; +} +export function SetHashedPasswordRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [11, 2, param.password], + ]; +} +export function SetPasswordRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [11, 2, param.hashedPassword], + ]; +} +export function Ob1_C12660s1( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function StartPhotoboothRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + ]; +} +export function SIMInfo( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.phoneNumber], + [11, 2, param.countryCode], + ]; +} +export function StopBundleSubscriptionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + , + [8, 2, Ob1_K1(param.storeCode)], + ]; +} +export function Qj_e0( + param: LINETypes.Qj_e0 | undefined, +): LINETypes.Qj_e0 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Qj_e0[param] : param; +} +export function ShareTargetPickerResultRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.ott], + [11, 2, param.liffId], + [8, 3, Qj_e0(param.resultCode)], + [11, 4, param.resultDescription], + ]; +} +export function SubWindowResultRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.msit], + [11, 2, param.mstVerifier], + ]; +} +export function Pb1_EnumC13029i6( + param: LINETypes.Pb1_EnumC13029i6 | undefined, +): LINETypes.Pb1_EnumC13029i6 & number | undefined { + return typeof param === "string" + ? LINETypes.enums.Pb1_EnumC13029i6[param] + : param; +} +export function ContactModification( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_EnumC13029i6(param.type)], + [11, 2, param.luid], + [15, 11, [11, param.phones]], + [15, 12, [11, param.emails]], + [15, 13, [11, param.userids]], + [11, 14, param.mobileContactName], + [11, 15, param.phoneticName], + ]; +} +export function Pb1_J4( + param: LINETypes.Pb1_J4 | undefined, +): LINETypes.Pb1_J4 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_J4[param] : param; +} +export function SyncRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.lastRevision], + [8, 2, param.count], + [10, 3, param.lastGlobalRevision], + [10, 4, param.lastIndividualRevision], + [8, 5, Pb1_J4(param.fullSyncRequestReason)], + [13, 6, [8, 10, param.lastPartialFullSyncs]], + ]; +} +export function Pb1_G4( + param: LINETypes.Pb1_G4 | undefined, +): LINETypes.Pb1_G4 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_G4[param] : param; +} +export function UnfollowRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_A4(param.followMid)], + ]; +} +export function DeviceUnlinkRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.deviceId], + ]; +} +export function ChannelNotificationSetting( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.channelId], + [11, 2, param.name], + [2, 3, param.notificationReceivable], + [2, 4, param.messageReceivable], + [2, 5, param.showDefault], + ]; +} +export function ChannelSettings( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.unapprovedMessageReceivable], + ]; +} +export function GroupExtra( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.creator], + [2, 2, param.preventedJoinByTicket], + [11, 3, param.invitationTicket], + [13, 4, [11, 10, param.memberMids]], + [13, 5, [11, 10, param.inviteeMids]], + [2, 6, param.addFriendDisabled], + [2, 7, param.ticketDisabled], + [2, 8, param.autoName], + ]; +} +export function Pb1_A6( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function Pb1_C13208v4( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GroupExtra(param.groupExtra)], + [12, 2, Pb1_A6(param.peerExtra)], + ]; +} +export function Chat( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_Z2(param.type)], + [11, 2, param.chatMid], + [10, 3, param.createdTime], + [2, 4, param.notificationDisabled], + [10, 5, param.favoriteTimestamp], + [11, 6, param.chatName], + [11, 7, param.picturePath], + [12, 8, Pb1_C13208v4(param.extra)], + ]; +} +export function Pb1_O2( + param: LINETypes.Pb1_O2 | undefined, +): LINETypes.Pb1_O2 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_O2[param] : param; +} +export function UpdateChatRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, Chat(param.chat)], + [8, 3, Pb1_O2(param.updatedAttribute)], + ]; +} +export function ContactSetting( + param: LINETypes.ContactSetting | undefined, +): LINETypes.ContactSetting & number | undefined { + return typeof param === "string" + ? LINETypes.enums.ContactSetting[param] + : param; +} +export function Pb1_H6( + param: LINETypes.Pb1_H6 | undefined, +): LINETypes.Pb1_H6 & number | undefined { + return typeof param === "string" ? LINETypes.enums.Pb1_H6[param] : param; +} +export function ExtendedProfileBirthday( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.year], + [8, 2, Pb1_H6(param.yearPrivacyLevelType)], + [2, 3, param.yearEnabled], + [11, 5, param.day], + [8, 6, Pb1_H6(param.dayPrivacyLevelType)], + [2, 7, param.dayEnabled], + ]; +} +export function ExtendedProfile( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ExtendedProfileBirthday(param.birthday)], + ]; +} +export function Pb1_ad( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.title], + ]; +} +export function UpdateGroupCallUrlRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.urlId], + [12, 2, Pb1_ad(param.targetAttribute)], + ]; +} +export function NotificationType( + param: LINETypes.NotificationType | undefined, +): LINETypes.NotificationType & number | undefined { + return typeof param === "string" + ? LINETypes.enums.NotificationType[param] + : param; +} +export function UpdatePasswordRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [11, 2, param.hashedPassword], + ]; +} +export function ProfileContent( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.value], + [13, 2, [11, 11, param.meta]], + ]; +} +export function UpdateProfileAttributesRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [8, 12, map(ProfileContent, param.profileAttributes)]], + ]; +} +export function vh_m( + param: LINETypes.vh_m | undefined, +): LINETypes.vh_m & number | undefined { + return typeof param === "string" ? LINETypes.enums.vh_m[param] : param; +} +export function UpdateSafetyStatusRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.disasterId], + [8, 2, vh_m(param.safetyStatus)], + [11, 3, param.message], + ]; +} +export function UsePhotoboothTicketRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.chatMid], + [11, 2, param.photoboothSessionId], + ]; +} +export function r80_EnumC34376p( + param: LINETypes.r80_EnumC34376p | undefined, +): LINETypes.r80_EnumC34376p & number | undefined { + return typeof param === "string" + ? LINETypes.enums.r80_EnumC34376p[param] + : param; +} +export function VerifyAccountUsingHashedPwdRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + [11, 3, param.v1HashedPassword], + [11, 4, param.clientHashedPassword], + ]; +} +export function VerifyAssertionRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [11, 2, param.credentialId], + [11, 3, param.assertionObject], + [11, 4, param.clientDataJSON], + ]; +} +export function VerifyAttestationRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.sessionId], + [11, 2, param.attestationObject], + [11, 3, param.clientDataJSON], + ]; +} +export function BirthdayGiftAssociationVerifyRequest( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.associationToken], + ]; +} +export function T70_j1( + param: LINETypes.T70_j1 | undefined, +): LINETypes.T70_j1 & number | undefined { + return typeof param === "string" ? LINETypes.enums.T70_j1[param] : param; +} +export function SocialLogin( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, T70_j1(param.type)], + [11, 2, param.accessToken], + [11, 3, param.countryCode], + ]; +} +export function a80_EnumC16644b( + param: LINETypes.a80_EnumC16644b | undefined, +): LINETypes.a80_EnumC16644b & number | undefined { + return typeof param === "string" + ? LINETypes.enums.a80_EnumC16644b[param] + : param; +} +export function EapLogin( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, a80_EnumC16644b(param.type)], + [11, 2, param.accessToken], + [11, 3, param.countryCode], + ]; +} +export function VerifyEapLoginRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, EapLogin(param.eapLogin)], + ]; +} +export function VerifyPhonePinCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, UserPhoneNumber(param.userPhoneNumber)], + [11, 3, param.pinCode], + ]; +} +export function VerifyPinCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.pinCode], + ]; +} +export function VerifyQrCodeRequest( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [13, 2, [11, 11, param.metaData]], + ]; +} +export function acceptChatInvitationByTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptChatInvitationByTicketRequest(param.request)], + ]; +} +export function acceptChatInvitation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptChatInvitationRequest(param.request)], + ]; +} +export function SquareService_acceptSpeakers_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptSpeakersRequest(param.request)], + ]; +} +export function SquareService_acceptToChangeRole_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptToChangeRoleRequest(param.request)], + ]; +} +export function SquareService_acceptToListen_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptToListenRequest(param.request)], + ]; +} +export function SquareService_acceptToSpeak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcceptToSpeakRequest(param.request)], + ]; +} +export function SquareService_acquireLiveTalk_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AcquireLiveTalkRequest(param.request)], + ]; +} +export function SquareService_cancelToSpeak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelToSpeakRequest(param.request)], + ]; +} +export function SquareService_fetchLiveTalkEvents_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FetchLiveTalkEventsRequest(param.request)], + ]; +} +export function SquareService_findLiveTalkByInvitationTicket_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FindLiveTalkByInvitationTicketRequest(param.request)], + ]; +} +export function SquareService_forceEndLiveTalk_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ForceEndLiveTalkRequest(param.request)], + ]; +} +export function SquareService_getLiveTalkInfoForNonMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetLiveTalkInfoForNonMemberRequest(param.request)], + ]; +} +export function SquareService_getLiveTalkInvitationUrl_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetLiveTalkInvitationUrlRequest(param.request)], + ]; +} +export function SquareService_getLiveTalkSpeakersForNonMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetLiveTalkSpeakersForNonMemberRequest(param.request)], + ]; +} +export function SquareService_getSquareInfoByChatMid_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareInfoByChatMidRequest(param.request)], + ]; +} +export function SquareService_inviteToChangeRole_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteToChangeRoleRequest(param.request)], + ]; +} +export function SquareService_inviteToListen_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteToListenRequest(param.request)], + ]; +} +export function SquareService_inviteToLiveTalk_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteToLiveTalkRequest(param.request)], + ]; +} +export function SquareService_inviteToSpeak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteToSpeakRequest(param.request)], + ]; +} +export function SquareService_joinLiveTalk_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, JoinLiveTalkRequest(param.request)], + ]; +} +export function SquareService_kickOutLiveTalkParticipants_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, KickOutLiveTalkParticipantsRequest(param.request)], + ]; +} +export function SquareService_rejectSpeakers_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RejectSpeakersRequest(param.request)], + ]; +} +export function SquareService_rejectToSpeak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RejectToSpeakRequest(param.request)], + ]; +} +export function SquareService_removeLiveTalkSubscription_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RemoveLiveTalkSubscriptionRequest(param.request)], + ]; +} +export function SquareService_reportLiveTalk_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportLiveTalkRequest(param.request)], + ]; +} +export function SquareService_reportLiveTalkSpeaker_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportLiveTalkSpeakerRequest(param.request)], + ]; +} +export function SquareService_requestToListen_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RequestToListenRequest(param.request)], + ]; +} +export function SquareService_requestToSpeak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RequestToSpeakRequest(param.request)], + ]; +} +export function SquareService_updateLiveTalkAttrs_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateLiveTalkAttrsRequest(param.request)], + ]; +} +export function acquireCallRoute_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.to], + [8, 3, Pb1_D4(param.callType)], + [13, 4, [11, 11, param.fromEnvInfo]], + ]; +} +export function acquireEncryptedAccessToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, Pb1_EnumC13222w4(param.featureType)], + ]; +} +export function acquireGroupCallRoute_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.chatMid], + [8, 3, Pb1_EnumC13237x5(param.mediaType)], + [2, 4, param.isInitialHost], + [15, 5, [11, param.capabilities]], + ]; +} +export function acquireOACallRoute_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AcquireOACallRouteRequest(param.request)], + ]; +} +export function acquirePaidCallRoute_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, PaidCallType(param.paidCallType)], + [11, 3, param.dialedNumber], + [11, 4, param.language], + [11, 5, param.networkCode], + [2, 6, param.disableCallerId], + [11, 7, param.referer], + [11, 8, param.adSessionId], + ]; +} +export function activateSubscription_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ActivateSubscriptionRequest(param.request)], + ]; +} +export function adTypeOptOutClickEvent_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AdTypeOptOutClickEventRequest(param.request)], + ]; +} +export function addFriendByMid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AddFriendByMidRequest(param.request)], + ]; +} +export function addItemToCollection_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AddItemToCollectionRequest(param.request)], + ]; +} +export function addOaFriend_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_C12155c(param.request)], + ]; +} +export function addProductToSubscriptionSlot_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AddProductToSubscriptionSlotRequest(param.req)], + ]; +} +export function addThemeToSubscriptionSlot_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AddThemeToSubscriptionSlotRequest(param.req)], + ]; +} +export function addToFollowBlacklist_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AddToFollowBlacklistRequest(param.addToFollowBlacklistRequest)], + ]; +} +export function SquareService_agreeToTerms_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AgreeToTermsRequest(param.request)], + ]; +} +export function SquareService_approveSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ApproveSquareMembersRequest(param.request)], + ]; +} +export function SquareService_checkJoinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CheckJoinCodeRequest(param.request)], + ]; +} +export function SquareService_createSquareChatAnnouncement_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [ + 12, + 1, + CreateSquareChatAnnouncementRequest( + param.createSquareChatAnnouncementRequest, + ), + ], + ]; +} +export function SquareService_createSquareChat_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CreateSquareChatRequest(param.request)], + ]; +} +export function SquareService_createSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CreateSquareRequest(param.request)], + ]; +} +export function SquareService_deleteSquareChatAnnouncement_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [ + 12, + 1, + DeleteSquareChatAnnouncementRequest( + param.deleteSquareChatAnnouncementRequest, + ), + ], + ]; +} +export function SquareService_deleteSquareChat_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteSquareChatRequest(param.request)], + ]; +} +export function SquareService_deleteSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteSquareRequest(param.request)], + ]; +} +export function SquareService_destroyMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DestroyMessageRequest(param.request)], + ]; +} +export function SquareService_destroyMessages_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DestroyMessagesRequest(param.request)], + ]; +} +export function SquareService_fetchMyEvents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FetchMyEventsRequest(param.request)], + ]; +} +export function SquareService_fetchSquareChatEvents_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FetchSquareChatEventsRequest(param.request)], + ]; +} +export function SquareService_findSquareByEmid_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FindSquareByEmidRequest(param.findSquareByEmidRequest)], + ]; +} +export function SquareService_findSquareByInvitationTicket_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FindSquareByInvitationTicketRequest(param.request)], + ]; +} +export function SquareService_findSquareByInvitationTicketV2_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FindSquareByInvitationTicketV2Request(param.request)], + ]; +} +export function SquareService_getGoogleAdOptions_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetGoogleAdOptionsRequest(param.request)], + ]; +} +export function SquareService_getInvitationTicketUrl_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetInvitationTicketUrlRequest(param.request)], + ]; +} +export function SquareService_getJoinableSquareChats_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetJoinableSquareChatsRequest(param.request)], + ]; +} +export function SquareService_getJoinedSquareChats_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetJoinedSquareChatsRequest(param.request)], + ]; +} +export function SquareService_getJoinedSquares_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetJoinedSquaresRequest(param.request)], + ]; +} +export function SquareService_getMessageReactions_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetMessageReactionsRequest(param.request)], + ]; +} +export function SquareService_getNoteStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetNoteStatusRequest(param.request)], + ]; +} +export function SquareService_getPopularKeywords_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPopularKeywordsRequest(param.request)], + ]; +} +export function SquareService_getSquareAuthorities_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareAuthoritiesRequest(param.request)], + ]; +} +export function SquareService_getSquareAuthority_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareAuthorityRequest(param.request)], + ]; +} +export function SquareService_getCategories_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareCategoriesRequest(param.request)], + ]; +} +export function SquareService_getSquareChatAnnouncements_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [ + 12, + 1, + GetSquareChatAnnouncementsRequest( + param.getSquareChatAnnouncementsRequest, + ), + ], + ]; +} +export function SquareService_getSquareChatEmid_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatEmidRequest(param.request)], + ]; +} +export function SquareService_getSquareChatFeatureSet_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatFeatureSetRequest(param.request)], + ]; +} +export function SquareService_getSquareChatMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatMemberRequest(param.request)], + ]; +} +export function SquareService_getSquareChatMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatMembersRequest(param.request)], + ]; +} +export function SquareService_getSquareChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatRequest(param.request)], + ]; +} +export function SquareService_getSquareChatStatus_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareChatStatusRequest(param.request)], + ]; +} +export function SquareService_getSquareEmid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareEmidRequest(param.request)], + ]; +} +export function SquareService_getSquareFeatureSet_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareFeatureSetRequest(param.request)], + ]; +} +export function SquareService_getSquareMemberRelation_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareMemberRelationRequest(param.request)], + ]; +} +export function SquareService_getSquareMemberRelations_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareMemberRelationsRequest(param.request)], + ]; +} +export function SquareService_getSquareMember_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareMemberRequest(param.request)], + ]; +} +export function SquareService_getSquareMembersBySquare_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareMembersBySquareRequest(param.request)], + ]; +} +export function SquareService_getSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareMembersRequest(param.request)], + ]; +} +export function SquareService_getSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareRequest(param.request)], + ]; +} +export function SquareService_getSquareStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareStatusRequest(param.request)], + ]; +} +export function SquareService_getSquareThreadMid_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareThreadMidRequest(param.request)], + ]; +} +export function SquareService_getSquareThread_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareThreadRequest(param.request)], + ]; +} +export function SquareService_getUserSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetUserSettingsRequest(param.request)], + ]; +} +export function SquareService_hideSquareMemberContents_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, HideSquareMemberContentsRequest(param.request)], + ]; +} +export function SquareService_inviteIntoSquareChat_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteIntoSquareChatRequest(param.request)], + ]; +} +export function SquareService_inviteToSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteToSquareRequest(param.request)], + ]; +} +export function SquareService_joinSquareChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, JoinSquareChatRequest(param.request)], + ]; +} +export function SquareService_joinSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, JoinSquareRequest(param.request)], + ]; +} +export function SquareService_joinSquareThread_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, JoinSquareThreadRequest(param.request)], + ]; +} +export function SquareService_leaveSquareChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LeaveSquareChatRequest(param.request)], + ]; +} +export function SquareService_leaveSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LeaveSquareRequest(param.request)], + ]; +} +export function SquareService_leaveSquareThread_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LeaveSquareThreadRequest(param.request)], + ]; +} +export function SquareService_manualRepair_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ManualRepairRequest(param.request)], + ]; +} +export function SquareService_markAsRead_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, MarkAsReadRequest(param.request)], + ]; +} +export function SquareService_markChatsAsRead_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, MarkChatsAsReadRequest(param.request)], + ]; +} +export function SquareService_markThreadsAsRead_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, MarkThreadsAsReadRequest(param.request)], + ]; +} +export function SquareService_reactToMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReactToMessageRequest(param.request)], + ]; +} +export function SquareService_refreshSubscriptions_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RefreshSubscriptionsRequest(param.request)], + ]; +} +export function SquareService_rejectSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RejectSquareMembersRequest(param.request)], + ]; +} +export function SquareService_removeSubscriptions_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RemoveSubscriptionsRequest(param.request)], + ]; +} +export function SquareService_reportMessageSummary_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportMessageSummaryRequest(param.request)], + ]; +} +export function SquareService_reportSquareChat_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportSquareChatRequest(param.request)], + ]; +} +export function SquareService_reportSquareMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportSquareMemberRequest(param.request)], + ]; +} +export function SquareService_reportSquareMessage_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportSquareMessageRequest(param.request)], + ]; +} +export function SquareService_reportSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportSquareRequest(param.request)], + ]; +} +export function SquareService_searchSquareChatMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SearchSquareChatMembersRequest(param.request)], + ]; +} +export function SquareService_searchSquareChatMentionables_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SearchSquareChatMentionablesRequest(param.request)], + ]; +} +export function SquareService_searchSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SearchSquareMembersRequest(param.request)], + ]; +} +export function SquareService_searchSquares_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SearchSquaresRequest(param.request)], + ]; +} +export function SquareService_sendMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SendMessageRequest(param.request)], + ]; +} +export function SquareService_sendSquareThreadMessage_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SendSquareThreadMessageRequest(param.request)], + ]; +} +export function SquareService_syncSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SyncSquareMembersRequest(param.request)], + ]; +} +export function SquareService_unhideSquareMemberContents_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UnhideSquareMemberContentsRequest(param.request)], + ]; +} +export function SquareService_unsendMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UnsendMessageRequest(param.request)], + ]; +} +export function SquareService_updateSquareAuthority_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareAuthorityRequest(param.request)], + ]; +} +export function SquareService_updateSquareChatMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareChatMemberRequest(param.request)], + ]; +} +export function SquareService_updateSquareChat_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareChatRequest(param.request)], + ]; +} +export function SquareService_updateSquareFeatureSet_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareFeatureSetRequest(param.request)], + ]; +} +export function SquareService_updateSquareMemberRelation_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareMemberRelationRequest(param.request)], + ]; +} +export function SquareService_updateSquareMember_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareMemberRequest(param.request)], + ]; +} +export function SquareService_updateSquareMembers_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareMembersRequest(param.request)], + ]; +} +export function SquareService_updateSquare_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSquareRequest(param.request)], + ]; +} +export function SquareService_updateUserSettings_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateUserSettingsRequest(param.request)], + ]; +} +export function approveChannelAndIssueChannelToken_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.channelId], + ]; +} +export function authenticateUsingBankAccountEx_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, r80_EnumC34362b(param.type)], + [11, 2, param.bankId], + [11, 3, param.bankBranchId], + [11, 4, param.realAccountNo], + [8, 5, r80_EnumC34361a(param.accountProductCode)], + [11, 6, param.authToken], + ]; +} +export function authenticateWithPaak_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, AuthenticateWithPaakRequest(param.request)], + ]; +} +export function blockContact_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.id], + ]; +} +export function blockRecommendation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.targetMid], + ]; +} +export function bulkFollow_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, BulkFollowRequest(param.bulkFollowRequest)], + ]; +} +export function bulkGetSetting_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, BulkGetRequest(param.request)], + ]; +} +export function bulkSetSetting_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function buyMustbuyProduct_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, BuyMustbuyRequest(param.request)], + ]; +} +export function canCreateCombinationSticker_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, CanCreateCombinationStickerRequest(param.request)], + ]; +} +export function canReceivePresent_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [11, 3, param.productId], + [12, 4, Locale(param.locale)], + [11, 5, param.recipientMid], + ]; +} +export function cancelChatInvitation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelChatInvitationRequest(param.request)], + ]; +} +export function cancelPaakAuth_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelPaakAuthRequest(param.request)], + ]; +} +export function cancelPaakAuthentication_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelPaakAuthenticationRequest(param.request)], + ]; +} +export function cancelPinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelPinCodeRequest(param.request)], + ]; +} +export function cancelReaction_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CancelReactionRequest(param.cancelReactionRequest)], + ]; +} +export function changeSubscription_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function changeVerificationMethod_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.sessionId], + [8, 3, VerificationMethod(param.method)], + ]; +} +export function checkCanUnregisterEx_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, r80_n0(param.type)], + ]; +} +export function checkEmailAssigned_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function checkIfEncryptedE2EEKeyReceived_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CheckIfEncryptedE2EEKeyReceivedRequest(param.request)], + ]; +} +export function checkIfPasswordSetVerificationEmailVerified_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function checkIfPhonePinCodeMsgVerified_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CheckIfPhonePinCodeMsgVerifiedRequest(param.request)], + ]; +} +export function checkOperationTimeEx_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, r80_EnumC34368h(param.type)], + [11, 2, param.lpAccountNo], + [8, 3, r80_EnumC34371k(param.channelType)], + ]; +} +export function checkUserAgeAfterApprovalWithDocomoV2_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CheckUserAgeAfterApprovalWithDocomoV2Request(param.request)], + ]; +} +export function checkUserAgeWithDocomoV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CheckUserAgeWithDocomoV2Request(param.request)], + ]; +} +export function checkUserAge_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, CarrierCode(param.carrier)], + [11, 3, param.sessionId], + [11, 4, param.verifier], + [8, 5, param.standardAge], + ]; +} +export function clearRingtone_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.oid], + ]; +} +export function confirmIdentifier_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [12, 3, IdentityCredentialRequest(param.request)], + ]; +} +export function connectEapAccount_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ConnectEapAccountRequest(param.request)], + ]; +} +export function createChatRoomAnnouncement_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatRoomMid], + [8, 3, Pb1_X2(param.type)], + [12, 4, ChatRoomAnnouncementContents(param.contents)], + ]; +} +export function createChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CreateChatRequest(param.request)], + ]; +} +export function createCollectionForUser_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function createCombinationSticker_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function createE2EEKeyBackupEnforced_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_C13263z3(param.request)], + ]; +} +export function createGroupCallUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, CreateGroupCallUrlRequest(param.request)], + ]; +} +export function createLifetimeKeyBackup_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_E3(param.request)], + ]; +} +export function createMultiProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CreateMultiProfileRequest(param.request)], + ]; +} +export function createRoomV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [15, 2, [11, param.contactIds]], + ]; +} +export function createSession_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, h80_C25643c(param.request)], + ]; +} +export function decryptFollowEMid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.eMid], + ]; +} +export function deleteE2EEKeyBackup_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_H3(param.request)], + ]; +} +export function deleteGroupCallUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, DeleteGroupCallUrlRequest(param.request)], + ]; +} +export function deleteMultiProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteMultiProfileRequest(param.request)], + ]; +} +export function deleteOtherFromChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteOtherFromChatRequest(param.request)], + ]; +} +export function deletePrimaryCredential_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, R70_c(param.request)], + ]; +} +export function deleteSafetyStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteSafetyStatusRequest(param.req)], + ]; +} +export function deleteSelfFromChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeleteSelfFromChatRequest(param.request)], + ]; +} +export function determineMediaMessageFlow_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DetermineMediaMessageFlowRequest(param.request)], + ]; +} +export function disconnectEapAccount_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DisconnectEapAccountRequest(param.request)], + ]; +} +export function editItemsInCollection_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function enablePointForOneTimeKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 1, param.usePoint], + ]; +} +export function establishE2EESession_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function existPinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, S70_b(param.request)], + ]; +} +export function fetchOperations_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FetchOperationsRequest(param.request)], + ]; +} +export function fetchPhonePinCodeMsg_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FetchPhonePinCodeMsgRequest(param.request)], + ]; +} +export function findBuddyContactsByQuery_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.language], + [11, 3, param.country], + [11, 4, param.query], + [8, 5, param.fromIndex], + [8, 6, param.count], + [8, 7, Pb1_F0(param.requestSource)], + ]; +} +export function findChatByTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, FindChatByTicketRequest(param.request)], + ]; +} +export function findContactByUserTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.ticketIdWithTag], + ]; +} +export function findContactByUserid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.searchId], + ]; +} +export function findContactsByPhone_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [11, param.phones]], + ]; +} +export function finishUpdateVerification_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.sessionId], + ]; +} +export function follow_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, FollowRequest(param.followRequest)], + ]; +} +export function generateUserTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 3, param.expirationTime], + [8, 4, param.maxUseCount], + ]; +} +export function getAccessToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetAccessTokenRequest(param.request)], + ]; +} +export function getAccountBalanceAsync_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.requestToken], + [11, 2, param.accountId], + ]; +} +export function getAcctVerifMethod_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function getAllChatMids_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetAllChatMidsRequest(param.request)], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function getAllContactIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getAllowedRegistrationMethod_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [11, 2, param.countryCode], + ]; +} +export function getApprovedChannels_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.lastSynced], + [11, 3, param.locale], + ]; +} +export function getAssertionChallenge_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, m80_l(param.request)], + ]; +} +export function getAttestationChallenge_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, m80_n(param.request)], + ]; +} +export function getAuthRSAKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [8, 3, IdentityProvider(param.identityProvider)], + ]; +} +export function getAuthorsLatestProducts_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, LatestProductsByAuthorRequest(param.latestProductsByAuthorRequest)], + ]; +} +export function getAutoSuggestionShowcase_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AutoSuggestionShowcaseRequest(param.autoSuggestionShowcaseRequest)], + ]; +} +export function getBalanceSummaryV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_C12208u(param.request)], + ]; +} +export function getBalanceSummaryV4WithPayV3_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_C12214w(param.request)], + ]; +} +export function getBalance_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ZQ0_b(param.request)], + ]; +} +export function getBankBranches_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.financialCorpId], + [11, 2, param.query], + [8, 3, param.startNum], + [8, 4, param.count], + ]; +} +export function getBanners_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, BannerRequest(param.request)], + ]; +} +export function getBirthdayEffect_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Eh_C8933a(param.req)], + ]; +} +export function getBleDevice_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetBleDeviceRequest(param.request)], + ]; +} +export function getBlockedContactIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getBlockedRecommendationIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getBrowsingHistory_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getBuddyChatBarV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetBuddyChatBarRequest(param.request)], + ]; +} +export function getBuddyDetailWithPersonal_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.buddyMid], + [14, 2, [ + 8, + param.attributeSet && param.attributeSet.map((e) => Pb1_D0(e)), + ]], + ]; +} +export function getBuddyDetail_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 4, param.buddyMid], + ]; +} +export function getBuddyLive_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetBuddyLiveRequest(param.request)], + ]; +} +export function getBuddyOnAir_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 4, param.buddyMid], + ]; +} +export function getBuddyStatusBarV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetBuddyStatusBarV2Request(param.request)], + ]; +} +export function getCallStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetCallStatusRequest(param.request)], + ]; +} +export function getCampaign_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetCampaignRequest(param.request)], + ]; +} +export function getChallengeForPaakAuth_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetChallengeForPaakAuthRequest(param.request)], + ]; +} +export function getChallengeForPrimaryReg_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetChallengeForPrimaryRegRequest(param.request)], + ]; +} +export function getChannelContext_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetChannelContextRequest(param.request)], + ]; +} +export function getChannelInfo_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.channelId], + [11, 3, param.locale], + ]; +} +export function getChannelNotificationSettings_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.locale], + ]; +} +export function getChatEffectMetaList_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [8, param.categories && param.categories.map((e) => Pb1_Q2(e))]], + ]; +} +export function getChatRoomAnnouncementsBulk_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [11, param.chatRoomMids]], + [8, 3, Pb1_V7(param.syncReason)], + ]; +} +export function getChatRoomAnnouncements_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.chatRoomMid], + ]; +} +export function getChatRoomBGMs_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [11, param.chatRoomMids]], + [8, 3, Pb1_V7(param.syncReason)], + ]; +} +export function getChatapp_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetChatappRequest(param.request)], + ]; +} +export function getChats_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetChatsRequest(param.request)], + [8, 2, Pb1_V7(param.syncReason)], + ]; +} +export function getCoinProducts_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetCoinProductsRequest(param.request)], + ]; +} +export function getCoinPurchaseHistory_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetCoinHistoryRequest(param.request)], + ]; +} +export function getCoinUseAndRefundHistory_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetCoinHistoryRequest(param.request)], + ]; +} +export function getCommonDomains_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 1, param.lastSynced], + ]; +} +export function getConfigurations_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.revision], + [11, 3, param.regionOfUsim], + [11, 4, param.regionOfTelephone], + [11, 5, param.regionOfLocale], + [11, 6, param.carrier], + [8, 7, Pb1_V7(param.syncReason)], + ]; +} +export function getContactCalendarEvents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetContactCalendarEventsRequest(param.request)], + ]; +} +export function getContactsV3_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetContactsV3Request(param.request)], + ]; +} +export function getCountries_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, Pb1_EnumC13221w3(param.countryGroup)], + ]; +} +export function getCountryInfo_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 11, SimCard(param.simCard)], + ]; +} +export function getDataRetention_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, fN0_C24473e(param.req)], + ]; +} +export function getDestinationUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DestinationLIFFRequest(param.request)], + ]; +} +export function getDisasterCases_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, vh_C37633d(param.req)], + ]; +} +export function getE2EEGroupSharedKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, param.keyVersion], + [11, 3, param.chatMid], + [8, 4, param.groupKeyId], + ]; +} +export function getE2EEKeyBackupCertificates_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_W4(param.request)], + ]; +} +export function getE2EEKeyBackupInfo_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_Y4(param.request)], + ]; +} +export function getE2EEPublicKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.mid], + [8, 3, param.keyVersion], + [8, 4, param.keyId], + ]; +} +export function getExchangeKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetExchangeKeyRequest(param.request)], + ]; +} +export function getExtendedProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getFollowBlacklist_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetFollowBlacklistRequest(param.getFollowBlacklistRequest)], + ]; +} +export function getFollowers_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetFollowersRequest(param.getFollowersRequest)], + ]; +} +export function getFollowings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetFollowingsRequest(param.getFollowingsRequest)], + ]; +} +export function getFontMetas_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetFontMetasRequest(param.request)], + ]; +} +export function getFriendDetails_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetFriendDetailsRequest(param.request)], + ]; +} +export function getFriendRequests_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_F4(param.direction)], + [10, 2, param.lastSeenSeqId], + ]; +} +export function getGnbBadgeStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetGnbBadgeStatusRequest(param.request)], + ]; +} +export function getGroupCallUrlInfo_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetGroupCallUrlInfoRequest(param.request)], + ]; +} +export function getGroupCallUrls_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_C13042j5(param.request)], + ]; +} +export function getGroupCall_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.chatMid], + ]; +} +export function getHomeFlexContent_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetHomeFlexContentRequest(param.request)], + ]; +} +export function getHomeServiceList_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Eg_C8928b(param.request)], + ]; +} +export function getHomeServices_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetHomeServicesRequest(param.request)], + ]; +} +export function getIncentiveStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, fN0_C24471c(param.req)], + ]; +} +export function getInstantNews_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.region], + [12, 2, Location(param.location)], + ]; +} +export function getJoinedMembershipByBotMid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetJoinedMembershipByBotMidRequest(param.request)], + ]; +} +export function getJoinedMembership_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetJoinedMembershipRequest(param.request)], + ]; +} +export function getKeyBackupCertificatesV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_C13070l5(param.request)], + ]; +} +export function getLFLSuggestion_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getLastE2EEGroupSharedKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, param.keyVersion], + [11, 3, param.chatMid], + ]; +} +export function getLastE2EEPublicKeys_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.chatMid], + ]; +} +export function getLiffViewWithoutUserContext_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiffViewWithoutUserContextRequest(param.request)], + ]; +} +export function getLineCardIssueForm_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, r80_EnumC34372l(param.resolutionType)], + ]; +} +export function getLoginActorContext_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetLoginActorContextRequest(param.request)], + ]; +} +export function getMappedProfileIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetMappedProfileIdsRequest(param.request)], + ]; +} +export function getMaskedEmail_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function getMessageBoxes_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, MessageBoxListRequest(param.messageBoxListRequest)], + [8, 3, Pb1_V7(param.syncReason)], + ]; +} +export function getMessageReadRange_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [11, param.chatIds]], + [8, 3, Pb1_V7(param.syncReason)], + ]; +} +export function getModuleLayoutV4_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetModuleLayoutV4Request(param.request)], + ]; +} +export function getModuleWithStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_G(param.request)], + ]; +} +export function getModule_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_E(param.request)], + ]; +} +export function getModulesV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetModulesRequestV2(param.request)], + ]; +} +export function getModulesV3_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetModulesRequestV3(param.request)], + ]; +} +export function getModulesV4WithStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetModulesV4WithStatusRequest(param.request)], + ]; +} +export function getMusicSubscriptionStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getMyAssetInformationV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetMyAssetInformationV2Request(param.request)], + ]; +} +export function getMyChatapps_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetMyChatappsRequest(param.request)], + ]; +} +export function getMyDashboard_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetMyDashboardRequest(param.request)], + ]; +} +export function getNewlyReleasedBuddyIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 3, param.country], + ]; +} +export function getNotificationSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetNotificationSettingsRequest(param.request)], + ]; +} +export function getOwnedProductSummaries_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [8, 3, param.offset], + [8, 4, param.limit], + [12, 5, Locale(param.locale)], + ]; +} +export function getPasswordHashingParameter_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPasswordHashingParametersRequest(param.request)], + ]; +} +export function getPasswordHashingParametersForPwdReg_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPasswordHashingParametersForPwdRegRequest(param.request)], + ]; +} +export function getPasswordHashingParametersForPwdVerif_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPasswordHashingParametersForPwdVerifRequest(param.request)], + ]; +} +export function getPaymentUrlByKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.key], + ]; +} +export function getPhoneVerifMethodForRegistration_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPhoneVerifMethodForRegistrationRequest(param.request)], + ]; +} +export function getPhoneVerifMethodV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPhoneVerifMethodV2Request(param.request)], + ]; +} +export function getPhotoboothBalance_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_C13126p5(param.request)], + ]; +} +export function getPredefinedScenarioSets_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPredefinedScenarioSetsRequest(param.request)], + ]; +} +export function getPrefetchableBanners_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, BannerRequest(param.request)], + ]; +} +export function getPremiumStatusForUpgrade_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, fN0_C24475g(param.req)], + ]; +} +export function getPremiumStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, fN0_C24476h(param.req)], + ]; +} +export function getPreviousMessagesV2WithRequest_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetPreviousMessagesV2Request(param.request)], + [8, 3, Pb1_V7(param.syncReason)], + ]; +} +export function getProductByVersion_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [11, 3, param.productId], + [10, 4, param.productVersion], + [12, 5, Locale(param.locale)], + ]; +} +export function getProductLatestVersionForUser_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getProductSummariesInSubscriptionSlots_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getProductV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getProductValidationScheme_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [11, 3, param.productId], + [10, 4, param.productVersion], + ]; +} +export function getProductsByAuthor_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getPromotedBuddyContacts_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.language], + [11, 3, param.country], + ]; +} +export function getPublishedMemberships_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetPublishedMembershipsRequest(param.request)], + ]; +} +export function getPurchaseEnabledStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, PurchaseEnabledRequest(param.request)], + ]; +} +export function getPurchasedProducts_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [8, 3, param.offset], + [8, 4, param.limit], + [12, 5, Locale(param.locale)], + ]; +} +export function getQuickMenu_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_S(param.request)], + ]; +} +export function getReceivedPresents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [8, 3, param.offset], + [8, 4, param.limit], + [12, 5, Locale(param.locale)], + ]; +} +export function getRecentFriendRequests_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getRecommendationDetails_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetRecommendationDetailsRequest(param.request)], + ]; +} +export function getRecommendationIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getRecommendationList_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getRepairElements_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetRepairElementsRequest(param.request)], + ]; +} +export function getResourceFile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : []; +} +export function getResponseStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetResponseStatusRequest(param.request)], + ]; +} +export function getReturnUrlWithRequestTokenForAutoLogin_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, WebLoginRequest(param.webLoginRequest)], + ]; +} +export function getReturnUrlWithRequestTokenForMultiLiffLogin_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiffWebLoginRequest(param.request)], + ]; +} +export function getRoomsV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 2, [11, param.roomIds]], + ]; +} +export function getSCC_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSCCRequest(param.request)], + ]; +} +export function getSeasonalEffects_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Eh_C8935c(param.req)], + ]; +} +export function getSecondAuthMethod_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function getSentPresents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [8, 3, param.offset], + [8, 4, param.limit], + [12, 5, Locale(param.locale)], + ]; +} +export function getServiceShortcutMenu_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_U(param.request)], + ]; +} +export function getSessionContentBeforeMigCompletion_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function getSettingsAttributes2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 2, [ + 8, + param.attributesToRetrieve && + param.attributesToRetrieve.map((e) => SettingsAttributeEx(e)), + ]], + ]; +} +export function getSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_V7(param.syncReason)], + ]; +} +export function getSmartChannelRecommendations_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSmartChannelRecommendationsRequest(param.request)], + ]; +} +export function getSquareBot_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetSquareBotRequest(param.req)], + ]; +} +export function getStudentInformation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Ob1_C12606a0(param.req)], + ]; +} +export function getSubscriptionPlans_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetSubscriptionPlansRequest(param.req)], + ]; +} +export function getSubscriptionSlotHistory_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Ob1_C12618e0(param.req)], + ]; +} +export function getSubscriptionStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetSubscriptionStatusRequest(param.req)], + ]; +} +export function getSuggestDictionarySetting_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Ob1_C12630i0(param.req)], + ]; +} +export function getSuggestResourcesV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, GetSuggestResourcesV2Request(param.req)], + ]; +} +export function getTaiwanBankBalance_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetTaiwanBankBalanceRequest(param.request)], + ]; +} +export function getTargetProfiles_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetTargetProfilesRequest(param.request)], + ]; +} +export function getTargetingPopup_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NZ0_C12150a0(param.request)], + ]; +} +export function getThaiBankBalance_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetThaiBankBalanceRequest(param.request)], + ]; +} +export function getTotalCoinBalance_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetTotalCoinBalanceRequest(param.request)], + ]; +} +export function getUpdatedChannelIds_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.channelIds && + param.channelIds.map((e) => ChannelIdWithLastUpdated(e)), + ]], + ]; +} +export function getUserCollections_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetUserCollectionsRequest(param.request)], + ]; +} +export function getUserProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function getUserVector_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetUserVectorRequest(param.request)], + ]; +} +export function getUsersMappedByProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, GetUsersMappedByProfileRequest(param.request)], + ]; +} +export function getWebLoginDisallowedUrlForMultiLiffLogin_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiffWebLoginRequest(param.request)], + ]; +} +export function getWebLoginDisallowedUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, WebLoginRequest(param.webLoginRequest)], + ]; +} +export function inviteFriends_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteFriendsRequest(param.request)], + ]; +} +export function inviteIntoChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, InviteIntoChatRequest(param.request)], + ]; +} +export function inviteIntoGroupCall_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.chatMid], + [15, 3, [11, param.memberMids]], + [8, 4, Pb1_EnumC13237x5(param.mediaType)], + ]; +} +export function inviteIntoRoom_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.roomId], + [15, 3, [11, param.contactIds]], + ]; +} +export function isProductForCollections_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, IsProductForCollectionsRequest(param.request)], + ]; +} +export function isStickerAvailableForCombinationSticker_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, IsStickerAvailableForCombinationStickerRequest(param.request)], + ]; +} +export function isUseridAvailable_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.searchId], + ]; +} +export function issueChannelToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.channelId], + ]; +} +export function issueLiffView_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiffViewRequest(param.request)], + ]; +} +export function issueRequestTokenWithAuthScheme_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.channelId], + [11, 2, param.otpId], + [15, 3, [11, param.authScheme]], + [11, 4, param.returnUrl], + ]; +} +export function issueSubLiffView_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LiffViewRequest(param.request)], + ]; +} +export function issueTokenForAccountMigrationSettings_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [2, 2, param.enforce], + ]; +} +export function issueToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, IssueBirthdayGiftTokenRequest(param.request)], + ]; +} +export function issueV3TokenForPrimary_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, IssueV3TokenForPrimaryRequest(param.request)], + ]; +} +export function issueWebAuthDetailsForSecondAuth_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function joinChatByCallUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, JoinChatByCallUrlRequest(param.request)], + ]; +} +export function kickoutFromGroupCall_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, KickoutFromGroupCallRequest(param.kickoutFromGroupCallRequest)], + ]; +} +export function leaveRoom_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.roomId], + ]; +} +export function linkDevice_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeviceLinkRequest(param.request)], + ]; +} +export function lookupAvailableEap_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, LookupAvailableEapRequest(param.request)], + ]; +} +export function lookupPaidCall_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.dialedNumber], + [11, 3, param.language], + [11, 4, param.referer], + ]; +} +export function mapProfileToUsers_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, MapProfileToUsersRequest(param.request)], + ]; +} +export function migratePrimaryUsingEapAccountWithTokenV3_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function migratePrimaryUsingPhoneWithTokenV3_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function migratePrimaryUsingQrCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, MigratePrimaryUsingQrCodeRequest(param.request)], + ]; +} +export function negotiateE2EEPublicKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.mid], + ]; +} +export function notifyChatAdEntry_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NotifyChatAdEntryRequest(param.request)], + ]; +} +export function notifyDeviceConnection_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NotifyDeviceConnectionRequest(param.request)], + ]; +} +export function notifyDeviceDisconnection_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NotifyDeviceDisconnectionRequest(param.request)], + ]; +} +export function notifyInstalled_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.udidHash], + [11, 3, param.applicationTypeWithExtensions], + ]; +} +export function notifyOATalkroomEvents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NotifyOATalkroomEventsRequest(param.request)], + ]; +} +export function notifyProductEvent_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [11, 3, param.productId], + [10, 4, param.productVersion], + [10, 5, param.productEvent], + ]; +} +export function notifyRegistrationComplete_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.udidHash], + [11, 3, param.applicationTypeWithExtensions], + ]; +} +export function notifyScenarioExecuted_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, NotifyScenarioExecutedRequest(param.request)], + ]; +} +export function notifyUpdated_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.lastRev], + [12, 3, DeviceInfo(param.deviceInfo)], + [11, 4, param.udidHash], + [11, 5, param.oldUdidHash], + ]; +} +export function openAuthSession_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, AuthSessionRequest(param.request)], + ]; +} +export function openSession_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, OpenSessionRequest(param.request)], + ]; +} +export function permitLogin_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, PermitLoginRequest(param.request)], + ]; +} +export function placePurchaseOrderForFreeProduct_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, PurchaseOrder(param.purchaseOrder)], + ]; +} +export function placePurchaseOrderWithLineCoin_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, PurchaseOrder(param.purchaseOrder)], + ]; +} +export function postPopupButtonEvents_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.buttonId], + [13, 2, [11, 2, param.checkboxes]], + ]; +} +export function purchaseSubscription_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, PurchaseSubscriptionRequest(param.req)], + ]; +} +export function putE2eeKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, PutE2eeKeyRequest(param.request)], + ]; +} +export function react_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReactRequest(param.reactRequest)], + ]; +} +export function refresh_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RefreshAccessTokenRequest(param.request)], + ]; +} +export function registerBarcodeAsync_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.requestToken], + [11, 2, param.barcodeRequestId], + [11, 3, param.barcode], + [12, 4, RSAEncryptedPassword(param.password)], + ]; +} +export function registerCampaignReward_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RegisterCampaignRewardRequest(param.request)], + ]; +} +export function registerE2EEGroupKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, param.keyVersion], + [11, 3, param.chatMid], + [15, 4, [11, param.members]], + [15, 5, [8, param.keyIds]], + [15, 6, [11, param.encryptedSharedKeys]], + ]; +} +export function registerE2EEPublicKeyV2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_W6(param.request)], + ]; +} +export function registerE2EEPublicKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, Pb1_C13097n4(param.publicKey)], + ]; +} +export function registerPrimaryCredential_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RegisterPrimaryCredentialRequest(param.request)], + ]; +} +export function registerPrimaryUsingEapAccount_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + ]; +} +export function registerPrimaryUsingPhoneWithTokenV3_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + ]; +} +export function registerUserid_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.searchId], + ]; +} +export function reissueChatTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReissueChatTicketRequest(param.request)], + ]; +} +export function rejectChatInvitation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RejectChatInvitationRequest(param.request)], + ]; +} +export function removeChatRoomAnnouncement_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatRoomMid], + [10, 3, param.announcementSeq], + ]; +} +export function removeFollower_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, RemoveFollowerRequest(param.removeFollowerRequest)], + ]; +} +export function removeFriendRequest_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_F4(param.direction)], + [11, 2, param.midOrEMid], + ]; +} +export function removeFromFollowBlacklist_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [ + 12, + 2, + RemoveFromFollowBlacklistRequest(param.removeFromFollowBlacklistRequest), + ], + ]; +} +export function removeIdentifier_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [12, 3, IdentityCredentialRequest(param.request)], + ]; +} +export function removeItemFromCollection_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RemoveItemFromCollectionRequest(param.request)], + ]; +} +export function removeLinePayAccount_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.accountId], + ]; +} +export function removeProductFromSubscriptionSlot_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, RemoveProductFromSubscriptionSlotRequest(param.req)], + ]; +} +export function reportAbuseEx_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, ReportAbuseExRequest(param.request)], + ]; +} +export function reportDeviceState_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 2, [8, 2, param.booleanState]], + [13, 3, [8, 11, param.stringState]], + ]; +} +export function reportLocation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Geolocation(param.location)], + [8, 2, Pb1_EnumC12917a6(param.trigger)], + [12, 3, ClientNetworkStatus(param.networkStatus)], + [10, 4, param.measuredAt], + [10, 6, param.clientCurrentTimestamp], + [12, 7, LocationDebugInfo(param.debugInfo)], + ]; +} +export function reportNetworkStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, Pb1_EnumC12917a6(param.trigger)], + [12, 2, ClientNetworkStatus(param.networkStatus)], + [10, 3, param.measuredAt], + [10, 4, param.scanCompletionTimestamp], + ]; +} +export function reportProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.syncOpRevision], + [12, 3, Profile(param.profile)], + ]; +} +export function reportPushRecvReports_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [15, 2, [ + 12, + param.pushRecvReports && + param.pushRecvReports.map((e) => PushRecvReport(e)), + ]], + ]; +} +export function reportRefreshedAccessToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReportRefreshedAccessTokenRequest(param.request)], + ]; +} +export function reportSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.syncOpRevision], + [12, 3, Settings(param.settings)], + ]; +} +export function requestCleanupUserProvidedData_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [14, 1, [8, param.dataTypes && param.dataTypes.map((e) => Pb1_od(e))]], + ]; +} +export function requestToSendPasswordSetVerificationEmail_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [11, 2, param.email], + [12, 3, AccountIdentifier(param.accountIdentifier)], + ]; +} +export function requestToSendPhonePinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReqToSendPhonePinCodeRequest(param.request)], + ]; +} +export function requestTradeNumber_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.requestToken], + [8, 2, r80_g0(param.requestType)], + [11, 3, param.amount], + [11, 4, param.name], + ]; +} +export function resendIdentifierConfirmation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [12, 3, IdentityCredentialRequest(param.request)], + ]; +} +export function resendPinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.sessionId], + ]; +} +export function reserveCoinPurchase_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, CoinPurchaseReservation(param.request)], + ]; +} +export function reserveSubscriptionPurchase_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReserveSubscriptionPurchaseRequest(param.request)], + ]; +} +export function reserve_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ReserveRequest(param.request)], + ]; +} +export function restoreE2EEKeyBackup_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Pb1_C13155r7(param.request)], + ]; +} +export function retrieveRequestTokenWithDocomoV2_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, Pb1_C13183t7(param.request)], + ]; +} +export function retrieveRequestToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 2, CarrierCode(param.carrier)], + ]; +} +export function revokeTokens_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, RevokeTokensRequest(param.request)], + ]; +} +export function saveStudentInformation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, SaveStudentInformationRequest(param.req)], + ]; +} +export function sendChatChecked_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.seq], + [11, 2, param.chatMid], + [11, 3, param.lastMessageId], + [3, 4, param.sessionId], + ]; +} +export function sendChatRemoved_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.seq], + [11, 2, param.chatMid], + [11, 3, param.lastMessageId], + [3, 4, param.sessionId], + ]; +} +export function sendEncryptedE2EEKey_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SendEncryptedE2EEKeyRequest(param.request)], + ]; +} +export function sendMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.seq], + [12, 2, Message(param.message)], + ]; +} +export function sendPostback_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, SendPostbackRequest(param.request)], + ]; +} +export function setChatHiddenStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SetChatHiddenStatusRequest(param.setChatHiddenStatusRequest)], + ]; +} +export function setHashedPassword_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SetHashedPasswordRequest(param.request)], + ]; +} +export function setIdentifier_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [12, 3, IdentityCredentialRequest(param.request)], + ]; +} +export function setNotificationsEnabled_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [8, 2, MIDType(param.type)], + [11, 3, param.target], + [2, 4, param.enablement], + ]; +} +export function setPassword_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SetPasswordRequest(param.request)], + ]; +} +export function shouldShowWelcomeStickerBanner_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, Ob1_C12660s1(param.request)], + ]; +} +export function startPhotobooth_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, StartPhotoboothRequest(param.request)], + ]; +} +export function startUpdateVerification_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.region], + [8, 3, CarrierCode(param.carrier)], + [11, 4, param.phone], + [11, 5, param.udidHash], + [12, 6, DeviceInfo(param.deviceInfo)], + [11, 7, param.networkCode], + [11, 8, param.locale], + [12, 9, SIMInfo(param.simInfo)], + ]; +} +export function stopBundleSubscription_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, StopBundleSubscriptionRequest(param.request)], + ]; +} +export function storeShareTargetPickerResult_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ShareTargetPickerResultRequest(param.request)], + ]; +} +export function storeSubWindowResult_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SubWindowResultRequest(param.request)], + ]; +} +export function syncContacts_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [15, 2, [ + 12, + param.localContacts && + param.localContacts.map((e) => ContactModification(e)), + ]], + ]; +} +export function sync_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, SyncRequest(param.request)], + ]; +} +export function tryFriendRequest_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.midOrEMid], + [8, 2, Pb1_G4(param.method)], + [11, 3, param.friendRequestParams], + ]; +} +export function unblockContact_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.id], + [11, 3, param.reference], + ]; +} +export function unblockRecommendation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.targetMid], + ]; +} +export function unfollow_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, UnfollowRequest(param.unfollowRequest)], + ]; +} +export function unlinkDevice_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, DeviceUnlinkRequest(param.request)], + ]; +} +export function unsendMessage_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.seq], + [11, 2, param.messageId], + ]; +} +export function updateAndGetNearby_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [4, 2, param.latitude], + [4, 3, param.longitude], + [12, 4, GeolocationAccuracy(param.accuracy)], + [12, 5, ClientNetworkStatus(param.networkStatus)], + [4, 6, param.altitudeMeters], + [4, 7, param.velocityMetersPerSecond], + [4, 8, param.bearingDegrees], + [10, 9, param.measuredAtTimestamp], + [10, 10, param.clientCurrentTimestamp], + ]; +} +export function updateChannelNotificationSetting_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [ + 12, + param.setting && param.setting.map((e) => ChannelNotificationSetting(e)), + ]], + ]; +} +export function updateChannelSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, ChannelSettings(param.channelSettings)], + ]; +} +export function updateChatRoomBGM_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.chatRoomMid], + [11, 3, param.chatRoomBGMInfo], + ]; +} +export function updateChat_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateChatRequest(param.request)], + ]; +} +export function updateContactSetting_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [11, 2, param.mid], + [8, 3, ContactSetting(param.flag)], + [11, 4, param.value], + ]; +} +export function updateExtendedProfileAttribute_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + , + [12, 3, ExtendedProfile(param.extendedProfile)], + ]; +} +export function updateGroupCallUrl_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, UpdateGroupCallUrlRequest(param.request)], + ]; +} +export function updateIdentifier_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.authSessionId], + [12, 3, IdentityCredentialRequest(param.request)], + ]; +} +export function updateNotificationToken_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.token], + [8, 3, NotificationType(param.type)], + ]; +} +export function updatePassword_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdatePasswordRequest(param.request)], + ]; +} +export function updateProfileAttributes_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 2, UpdateProfileAttributesRequest(param.request)], + ]; +} +export function updateSafetyStatus_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, UpdateSafetyStatusRequest(param.req)], + ]; +} +export function updateSettingsAttributes2_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [8, 1, param.reqSeq], + [12, 3, Settings(param.settings)], + [14, 4, [ + 8, + param.attributesToUpdate && + param.attributesToUpdate.map((e) => SettingsAttributeEx(e)), + ]], + ]; +} +export function updateUserGeneralSettings_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [13, 1, [8, 11, param.settings]], + ]; +} +export function usePhotoboothTicket_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, UsePhotoboothTicketRequest(param.request)], + ]; +} +export function validateEligibleFriends_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [15, 1, [11, param.friends]], + [8, 2, r80_EnumC34376p(param.type)], + ]; +} +export function validateProduct_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.shopId], + [11, 3, param.productId], + [10, 4, param.productVersion], + ]; +} +export function validateProfile_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [11, 2, param.displayName], + ]; +} +export function verifyAccountUsingHashedPwd_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyAccountUsingHashedPwdRequest(param.request)], + ]; +} +export function verifyAssertion_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyAssertionRequest(param.request)], + ]; +} +export function verifyAttestation_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyAttestationRequest(param.request)], + ]; +} +export function verifyBirthdayGiftAssociationToken_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 2, BirthdayGiftAssociationVerifyRequest(param.req)], + ]; +} +export function verifyEapAccountForRegistration_args( + param?: + | PartialDeep + | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, Device(param.device)], + [12, 3, SocialLogin(param.socialLogin)], + ]; +} +export function verifyEapLogin_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyEapLoginRequest(param.request)], + ]; +} +export function verifyPhoneNumber_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.sessionId], + [11, 3, param.pinCode], + [11, 4, param.udidHash], + [11, 5, param.migrationPincodeSessionId], + [11, 6, param.oldUdidHash], + ]; +} +export function verifyPhonePinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyPhonePinCodeRequest(param.request)], + ]; +} +export function verifyPinCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyPinCodeRequest(param.request)], + ]; +} +export function verifyQrCode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [12, 1, VerifyQrCodeRequest(param.request)], + ]; +} +export function verifyQrcode_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 2, param.verifier], + [11, 3, param.pinCode], + ]; +} +export function verifySocialLogin_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [11, 1, param.authSessionId], + [12, 2, Device(param.device)], + [12, 3, SocialLogin(param.socialLogin)], + ]; +} +export function wakeUpLongPolling_args( + param?: PartialDeep | undefined, +): NestedArray { + return typeof param === "undefined" ? [] : [ + [10, 2, param.clientRevision], + ]; +} diff --git a/packages/linejs/client/features/chat/fetcher.ts b/packages/linejs/client/features/chat/fetcher.ts index 432f3832..4c09cfaf 100644 --- a/packages/linejs/client/features/chat/fetcher.ts +++ b/packages/linejs/client/features/chat/fetcher.ts @@ -1,39 +1,39 @@ import type { Client } from "../../client.ts"; import type { Chat } from "./mod.ts"; -import type * as line from '@evex/linejs-types' -import { TalkMessage } from '../message/mod.ts' +import type * as line from "@evex/linejs-types"; +import { TalkMessage } from "../message/mod.ts"; export interface MessageFetcher { - fetch: (limit: number) => Promise + fetch: (limit: number) => Promise; } export const createMessageFetcher = async (client: Client, chat: Chat) => { - const boxes = await client.base.talk.getMessageBoxes({ - messageBoxListRequest: {}, - }); - const box = boxes.messageBoxes.find((box) => box.id === chat.mid); - if (!box) { - throw new Error("Message box not found."); - } + const boxes = await client.base.talk.getMessageBoxes({ + messageBoxListRequest: {}, + }); + const box = boxes.messageBoxes.find((box) => box.id === chat.mid); + if (!box) { + throw new Error("Message box not found."); + } - let lastMessageId: line.MessageBoxV2MessageId = box.lastDeliveredMessageId - return { - async fetch(limit: number) { - const messages = await client.base.talk.getPreviousMessagesV2WithRequest({ - request: { - messageBoxId: box.id, - endMessageId: lastMessageId, + let lastMessageId: line.MessageBoxV2MessageId = box.lastDeliveredMessageId; + return { + async fetch(limit: number) { + const messages = await client.base.talk.getPreviousMessagesV2WithRequest({ + request: { + messageBoxId: box.id, + endMessageId: lastMessageId, messagesCount: limit, - }, - }); - const lastMessage = messages.at(-1)! - lastMessageId = { - deliveredTime: lastMessage.deliveredTime, - messageId: parseInt(lastMessage.id) - } + }, + }); + const lastMessage = messages.at(-1)!; + lastMessageId = { + deliveredTime: lastMessage.deliveredTime, + messageId: parseInt(lastMessage.id), + }; - return await Promise.all( - messages.map((message) => TalkMessage.fromRawTalk(message, client)), - ); - } - } + return await Promise.all( + messages.map((message) => TalkMessage.fromRawTalk(message, client)), + ); + }, + }; }; diff --git a/packages/linejs/client/features/chat/mod.ts b/packages/linejs/client/features/chat/mod.ts index 0e74bf2f..d31db755 100644 --- a/packages/linejs/client/features/chat/mod.ts +++ b/packages/linejs/client/features/chat/mod.ts @@ -151,9 +151,7 @@ export class Chat { }); return await Promise.all( - messages.map((message) => - TalkMessage.fromRawTalk(message, this.#client) - ), + messages.map((message) => TalkMessage.fromRawTalk(message, this.#client)), ); } diff --git a/packages/linejs/client/features/message/talk.ts b/packages/linejs/client/features/message/talk.ts index bf5ebe3d..642163d8 100644 --- a/packages/linejs/client/features/message/talk.ts +++ b/packages/linejs/client/features/message/talk.ts @@ -96,8 +96,7 @@ export class TalkMessage { type: "MESSAGE", contents: { text: this.raw.text, - link: - `line://nv/chatMsg?chatId=${this.to.id}&messageId=${this.raw.id}`, + link: `line://nv/chatMsg?chatId=${this.to.id}&messageId=${this.raw.id}`, }, }); } diff --git a/packages/linejs/client/features/square/mod.ts b/packages/linejs/client/features/square/mod.ts index d9391120..e447d568 100644 --- a/packages/linejs/client/features/square/mod.ts +++ b/packages/linejs/client/features/square/mod.ts @@ -133,8 +133,7 @@ export class SquareChat extends TypedEventEmitter { async getMembers(): Promise { const res = await continueRequest({ - handler: (arg) => - this.#client.base.square.getSquareChatMembers(arg), + handler: (arg) => this.#client.base.square.getSquareChatMembers(arg), arg: { squareChatMid: this.raw.squareChatMid, }, diff --git a/packages/linejs/client/mod.ts b/packages/linejs/client/mod.ts index e98e709c..43978ec5 100644 --- a/packages/linejs/client/mod.ts +++ b/packages/linejs/client/mod.ts @@ -4,12 +4,12 @@ */ export { - Chat, - Client, - Square, - SquareChat, - SquareMessage, - TalkMessage, - User, + Chat, + Client, + Square, + SquareChat, + SquareMessage, + TalkMessage, + User, } from "./client.ts"; export * from "./login.ts"; diff --git a/packages/types/thrift.ts b/packages/types/thrift.ts index 7144a1df..d12d36a5 100644 --- a/packages/types/thrift.ts +++ b/packages/types/thrift.ts @@ -1,37625 +1,37625 @@ export const Thrift: Record | any[]> = { - "AR0_g": { - "16641": "ILLEGAL_ARGUMENT", - "16642": "MAJOR_VERSION_NOT_SUPPORTED", - "16897": "AUTHENTICATION_FAILED", - "20737": "INTERNAL_SERVER_ERROR", - "20739": "SERVICE_UNAVAILABLE" - }, - "AR0_q": { - "0": "NOT_PURCHASED", - "1": "SUBSCRIPTION" - }, - "AccountMigrationPincodeType": { - "0": "NOT_APPLICABLE", - "1": "NOT_SET", - "2": "SET", - "3": "NEED_ENFORCED_INPUT" - }, - "ApplicationType": { - "16": "IOS", - "17": "IOS_RC", - "18": "IOS_BETA", - "19": "IOS_ALPHA", - "32": "ANDROID", - "33": "ANDROID_RC", - "34": "ANDROID_BETA", - "35": "ANDROID_ALPHA", - "48": "WAP", - "49": "WAP_RC", - "50": "WAP_BETA", - "51": "WAP_ALPHA", - "64": "BOT", - "65": "BOT_RC", - "66": "BOT_BETA", - "67": "BOT_ALPHA", - "80": "WEB", - "81": "WEB_RC", - "82": "WEB_BETA", - "83": "WEB_ALPHA", - "96": "DESKTOPWIN", - "97": "DESKTOPWIN_RC", - "98": "DESKTOPWIN_BETA", - "99": "DESKTOPWIN_ALPHA", - "112": "DESKTOPMAC", - "113": "DESKTOPMAC_RC", - "114": "DESKTOPMAC_BETA", - "115": "DESKTOPMAC_ALPHA", - "128": "CHANNELGW", - "129": "CHANNELGW_RC", - "130": "CHANNELGW_BETA", - "131": "CHANNELGW_ALPHA", - "144": "CHANNELCP", - "145": "CHANNELCP_RC", - "146": "CHANNELCP_BETA", - "147": "CHANNELCP_ALPHA", - "160": "WINPHONE", - "161": "WINPHONE_RC", - "162": "WINPHONE_BETA", - "163": "WINPHONE_ALPHA", - "176": "BLACKBERRY", - "177": "BLACKBERRY_RC", - "178": "BLACKBERRY_BETA", - "179": "BLACKBERRY_ALPHA", - "192": "WINMETRO", - "193": "WINMETRO_RC", - "194": "WINMETRO_BETA", - "195": "WINMETRO_ALPHA", - "200": "S40", - "209": "S40_RC", - "210": "S40_BETA", - "211": "S40_ALPHA", - "224": "CHRONO", - "225": "CHRONO_RC", - "226": "CHRONO_BETA", - "227": "CHRONO_ALPHA", - "256": "TIZEN", - "257": "TIZEN_RC", - "258": "TIZEN_BETA", - "259": "TIZEN_ALPHA", - "272": "VIRTUAL", - "288": "FIREFOXOS", - "289": "FIREFOXOS_RC", - "290": "FIREFOXOS_BETA", - "291": "FIREFOXOS_ALPHA", - "304": "IOSIPAD", - "305": "IOSIPAD_RC", - "306": "IOSIPAD_BETA", - "307": "IOSIPAD_ALPHA", - "320": "BIZIOS", - "321": "BIZIOS_RC", - "322": "BIZIOS_BETA", - "323": "BIZIOS_ALPHA", - "336": "BIZANDROID", - "337": "BIZANDROID_RC", - "338": "BIZANDROID_BETA", - "339": "BIZANDROID_ALPHA", - "352": "BIZBOT", - "353": "BIZBOT_RC", - "354": "BIZBOT_BETA", - "355": "BIZBOT_ALPHA", - "368": "CHROMEOS", - "369": "CHROMEOS_RC", - "370": "CHROMEOS_BETA", - "371": "CHROMEOS_ALPHA", - "384": "ANDROIDLITE", - "385": "ANDROIDLITE_RC", - "386": "ANDROIDLITE_BETA", - "387": "ANDROIDLITE_ALPHA", - "400": "WIN10", - "401": "WIN10_RC", - "402": "WIN10_BETA", - "403": "WIN10_ALPHA", - "416": "BIZWEB", - "417": "BIZWEB_RC", - "418": "BIZWEB_BETA", - "419": "BIZWEB_ALPHA", - "432": "DUMMYPRIMARY", - "433": "DUMMYPRIMARY_RC", - "434": "DUMMYPRIMARY_BETA", - "435": "DUMMYPRIMARY_ALPHA", - "448": "SQUARE", - "449": "SQUARE_RC", - "450": "SQUARE_BETA", - "451": "SQUARE_ALPHA", - "464": "INTERNAL", - "465": "INTERNAL_RC", - "466": "INTERNAL_BETA", - "467": "INTERNAL_ALPHA", - "480": "CLOVAFRIENDS", - "481": "CLOVAFRIENDS_RC", - "482": "CLOVAFRIENDS_BETA", - "483": "CLOVAFRIENDS_ALPHA", - "496": "WATCHOS", - "497": "WATCHOS_RC", - "498": "WATCHOS_BETA", - "499": "WATCHOS_ALPHA", - "512": "OPENCHAT_PLUG", - "513": "OPENCHAT_PLUG_RC", - "514": "OPENCHAT_PLUG_BETA", - "515": "OPENCHAT_PLUG_ALPHA", - "528": "ANDROIDSECONDARY", - "529": "ANDROIDSECONDARY_RC", - "530": "ANDROIDSECONDARY_BETA", - "531": "ANDROIDSECONDARY_ALPHA", - "544": "WEAROS", - "545": "WEAROS_RC", - "546": "WEAROS_BETA", - "547": "WEAROS_ALPHA" - }, - "BotType": { - "0": "RESERVED", - "1": "OFFICIAL", - "2": "LINE_AT_0", - "3": "LINE_AT" - }, - "CarrierCode": { - "0": "NOT_SPECIFIED", - "1": "JP_DOCOMO", - "2": "JP_AU", - "3": "JP_SOFTBANK", - "4": "JP_DOCOMO_LINE", - "5": "JP_SOFTBANK_LINE", - "6": "JP_AU_LINE", - "7": "JP_RAKUTEN", - "8": "JP_MVNO", - "9": "JP_USER_SELECTED_LINE", - "17": "KR_SKT", - "18": "KR_KT", - "19": "KR_LGT" - }, - "ChannelErrorCode": { - "0": "ILLEGAL_ARGUMENT", - "1": "INTERNAL_ERROR", - "2": "CONNECTION_ERROR", - "3": "AUTHENTICATIONI_FAILED", - "4": "NEED_PERMISSION_APPROVAL", - "5": "COIN_NOT_USABLE", - "6": "WEBVIEW_NOT_ALLOWED", - "7": "NOT_AVAILABLE_API" - }, - "ContactAttribute": { - "1": "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL", - "2": "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL", - "16": "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME", - "32": "CONTACT_ATTRIBUTE_CAPABLE_BUDDY" - }, - "ContactSetting": { - "1": "CONTACT_SETTING_NOTIFICATION_DISABLE", - "2": "CONTACT_SETTING_DISPLAY_NAME_OVERRIDE", - "4": "CONTACT_SETTING_CONTACT_HIDE", - "8": "CONTACT_SETTING_FAVORITE", - "16": "CONTACT_SETTING_DELETE", - "32": "CONTACT_SETTING_FRIEND_RINGTONE", - "64": "CONTACT_SETTING_FRIEND_RINGBACK_TONE" - }, - "ContactStatus": { - "0": "UNSPECIFIED", - "1": "FRIEND", - "2": "FRIEND_BLOCKED", - "3": "RECOMMEND", - "4": "RECOMMEND_BLOCKED", - "5": "DELETED", - "6": "DELETED_BLOCKED" - }, - "ContactType": { - "0": "MID", - "1": "PHONE", - "2": "EMAIL", - "3": "USERID", - "4": "PROXIMITY", - "5": "GROUP", - "6": "USER", - "7": "QRCODE", - "8": "PROMOTION_BOT", - "9": "CONTACT_MESSAGE", - "10": "FRIEND_REQUEST", - "11": "BEACON", - "128": "REPAIR", - "2305": "FACEBOOK", - "2306": "SINA", - "2307": "RENREN", - "2308": "FEIXIN", - "2309": "BBM" - }, - "ContentType": { - "0": "NONE", - "1": "IMAGE", - "2": "VIDEO", - "3": "AUDIO", - "4": "HTML", - "5": "PDF", - "6": "CALL", - "7": "STICKER", - "8": "PRESENCE", - "9": "GIFT", - "10": "GROUPBOARD", - "11": "APPLINK", - "12": "LINK", - "13": "CONTACT", - "14": "FILE", - "15": "LOCATION", - "16": "POSTNOTIFICATION", - "17": "RICH", - "18": "CHATEVENT", - "19": "MUSIC", - "20": "PAYMENT", - "21": "EXTIMAGE", - "22": "FLEX" - }, - "Eg_EnumC8927a": { - "1": "NEW", - "2": "UPDATE", - "3": "EVENT" - }, - "EmailConfirmationStatus": { - "0": "NOT_SPECIFIED", - "1": "NOT_YET", - "3": "DONE", - "4": "NEED_ENFORCED_INPUT" - }, - "ErrorCode": { - "0": "ILLEGAL_ARGUMENT", - "1": "AUTHENTICATION_FAILED", - "2": "DB_FAILED", - "3": "INVALID_STATE", - "4": "EXCESSIVE_ACCESS", - "5": "NOT_FOUND", - "6": "INVALID_LENGTH", - "7": "NOT_AVAILABLE_USER", - "8": "NOT_AUTHORIZED_DEVICE", - "9": "INVALID_MID", - "10": "NOT_A_MEMBER", - "11": "INCOMPATIBLE_APP_VERSION", - "12": "NOT_READY", - "13": "NOT_AVAILABLE_SESSION", - "14": "NOT_AUTHORIZED_SESSION", - "15": "SYSTEM_ERROR", - "16": "NO_AVAILABLE_VERIFICATION_METHOD", - "17": "NOT_AUTHENTICATED", - "18": "INVALID_IDENTITY_CREDENTIAL", - "19": "NOT_AVAILABLE_IDENTITY_IDENTIFIER", - "20": "INTERNAL_ERROR", - "21": "NO_SUCH_IDENTITY_IDENFIER", - "22": "DEACTIVATED_ACCOUNT_BOUND_TO_THIS_IDENTITY", - "23": "ILLEGAL_IDENTITY_CREDENTIAL", - "24": "UNKNOWN_CHANNEL", - "25": "NO_SUCH_MESSAGE_BOX", - "26": "NOT_AVAILABLE_MESSAGE_BOX", - "27": "CHANNEL_DOES_NOT_MATCH", - "28": "NOT_YOUR_MESSAGE", - "29": "MESSAGE_DEFINED_ERROR", - "30": "USER_CANNOT_ACCEPT_PRESENTS", - "32": "USER_NOT_STICKER_OWNER", - "33": "MAINTENANCE_ERROR", - "34": "ACCOUNT_NOT_MATCHED", - "35": "ABUSE_BLOCK", - "36": "NOT_FRIEND", - "37": "NOT_ALLOWED_CALL", - "38": "BLOCK_FRIEND", - "39": "INCOMPATIBLE_VOIP_VERSION", - "40": "INVALID_SNS_ACCESS_TOKEN", - "41": "EXTERNAL_SERVICE_NOT_AVAILABLE", - "42": "NOT_ALLOWED_ADD_CONTACT", - "43": "NOT_CERTIFICATED", - "44": "NOT_ALLOWED_SECONDARY_DEVICE", - "45": "INVALID_PIN_CODE", - "47": "EXCEED_FILE_MAX_SIZE", - "48": "EXCEED_DAILY_QUOTA", - "49": "NOT_SUPPORT_SEND_FILE", - "50": "MUST_UPGRADE", - "51": "NOT_AVAILABLE_PIN_CODE_SESSION", - "52": "EXPIRED_REVISION", - "54": "NOT_YET_PHONE_NUMBER", - "55": "BAD_CALL_NUMBER", - "56": "UNAVAILABLE_CALL_NUMBER", - "57": "NOT_SUPPORT_CALL_SERVICE", - "58": "CONGESTION_CONTROL", - "59": "NO_BALANCE", - "60": "NOT_PERMITTED_CALLER_ID", - "61": "NO_CALLER_ID_LIMIT_EXCEEDED", - "62": "CALLER_ID_VERIFICATION_REQUIRED", - "63": "NO_CALLER_ID_LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED", - "64": "MESSAGE_NOT_FOUND", - "65": "INVALID_ACCOUNT_MIGRATION_PINCODE_FORMAT", - "66": "ACCOUNT_MIGRATION_PINCODE_NOT_MATCHED", - "67": "ACCOUNT_MIGRATION_PINCODE_BLOCKED", - "69": "INVALID_PASSWORD_FORMAT", - "70": "FEATURE_RESTRICTED", - "71": "MESSAGE_NOT_DESTRUCTIBLE", - "72": "PAID_CALL_REDEEM_FAILED", - "73": "PREVENTED_JOIN_BY_TICKET", - "75": "SEND_MESSAGE_NOT_PERMITTED_FROM_LINE_AT", - "76": "SEND_MESSAGE_NOT_PERMITTED_WHILE_AUTO_REPLY", - "77": "SECURITY_CENTER_NOT_VERIFIED", - "78": "SECURITY_CENTER_BLOCKED_BY_SETTING", - "79": "SECURITY_CENTER_BLOCKED", - "80": "TALK_PROXY_EXCEPTION", - "81": "E2EE_INVALID_PROTOCOL", - "82": "E2EE_RETRY_ENCRYPT", - "83": "E2EE_UPDATE_SENDER_KEY", - "84": "E2EE_UPDATE_RECEIVER_KEY", - "85": "E2EE_INVALID_ARGUMENT", - "86": "E2EE_INVALID_VERSION", - "87": "E2EE_SENDER_DISABLED", - "88": "E2EE_RECEIVER_DISABLED", - "89": "E2EE_SENDER_NOT_ALLOWED", - "90": "E2EE_RECEIVER_NOT_ALLOWED", - "91": "E2EE_RESEND_FAIL", - "92": "E2EE_RESEND_OK", - "93": "HITOKOTO_BACKUP_NO_AVAILABLE_DATA", - "94": "E2EE_UPDATE_PRIMARY_DEVICE", - "95": "SUCCESS", - "96": "CANCEL", - "97": "E2EE_PRIMARY_NOT_SUPPORT", - "98": "E2EE_RETRY_PLAIN", - "99": "E2EE_RECREATE_GROUP_KEY", - "100": "E2EE_GROUP_TOO_MANY_MEMBERS", - "101": "SERVER_BUSY", - "102": "NOT_ALLOWED_ADD_FOLLOW", - "103": "INCOMING_FRIEND_REQUEST_LIMIT", - "104": "OUTGOING_FRIEND_REQUEST_LIMIT", - "105": "OUTGOING_FRIEND_REQUEST_QUOTA", - "106": "DUPLICATED", - "107": "BANNED", - "108": "NOT_AN_INVITEE", - "109": "NOT_AN_OUTSIDER", - "111": "EMPTY_GROUP", - "112": "EXCEED_FOLLOW_LIMIT", - "113": "UNSUPPORTED_ACCOUNT_TYPE", - "114": "AGREEMENT_REQUIRED", - "115": "SHOULD_RETRY", - "116": "OVER_MAX_CHATS_PER_USER", - "117": "NOT_AVAILABLE_API", - "118": "INVALID_OTP", - "119": "MUST_REFRESH_V3_TOKEN", - "120": "ALREADY_EXPIRED", - "121": "USER_NOT_STICON_OWNER", - "122": "REFRESH_MEDIA_FLOW", - "123": "EXCEED_FOLLOWER_LIMIT", - "124": "INCOMPATIBLE_APP_TYPE", - "125": "NOT_PREMIUM" - }, - "Fg_a": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "NOT_FOUND", - "4": "RETRY_LATER", - "5": "HUMAN_VERIFICATION_REQUIRED", - "6": "NOT_ENABLED", - "100": "INVALID_CONTEXT", - "101": "APP_UPGRADE_REQUIRED", - "102": "NO_CONTENT" - }, - "FriendRequestStatus": { - "0": "NONE", - "1": "AVAILABLE", - "2": "ALREADY_REQUESTED", - "3": "UNAVAILABLE" - }, - "IdentityProvider": { - "0": "UNKNOWN", - "1": "LINE", - "2": "NAVER_KR", - "3": "LINE_PHONE" - }, - "LN0_F0": { - "0": "UNKNOWN", - "1": "INVALID_TARGET_USER", - "2": "AGE_VALIDATION", - "3": "TOO_MANY_FRIENDS", - "4": "TOO_MANY_REQUESTS", - "5": "MALFORMED_REQUEST", - "6": "TRACKING_META_QRCODE_FAVORED" - }, - "LN0_X0": { - "1": "USER", - "2": "BOT" - }, - "MIDType": { - "0": "USER", - "1": "ROOM", - "2": "GROUP", - "3": "SQUARE", - "4": "SQUARE_CHAT", - "5": "SQUARE_MEMBER", - "6": "BOT", - "7": "SQUARE_THREAD" - }, - "NZ0_B0": { - "0": "PAY", - "1": "POI", - "2": "FX", - "3": "SEC", - "4": "BIT", - "5": "LIN", - "6": "SCO", - "7": "POC" - }, - "NZ0_C0": { - "0": "OK", - "1": "MAINTENANCE", - "2": "TPS_EXCEEDED", - "3": "NOT_FOUND", - "4": "BLOCKED", - "5": "INTERNAL_ERROR", - "6": "WALLET_CMS_MAINTENANCE" - }, - "NZ0_EnumC12154b1": { - "0": "NORMAL", - "1": "CAMERA" - }, - "NZ0_EnumC12169g1": { - "101": "WALLET", - "201": "ASSET", - "301": "SHOPPING" - }, - "NZ0_EnumC12170h": { - "0": "HIDE_BADGE", - "1": "SHOW_BADGE" - }, - "NZ0_EnumC12188n": { - "0": "OK", - "1": "UNAVAILABLE", - "2": "DUPLICATAE_REGISTRATION", - "3": "INTERNAL_ERROR" - }, - "NZ0_EnumC12192o0": { - "0": "LV1", - "1": "LV2", - "2": "LV3", - "3": "LV9" - }, - "NZ0_EnumC12193o1": { - "400": "INVALID_PARAMETER", - "401": "AUTHENTICATION_FAILED", - "500": "INTERNAL_SERVER_ERROR", - "503": "SERVICE_IN_MAINTENANCE_MODE" - }, - "NZ0_EnumC12195p0": { - "1": "ALIVE", - "2": "SUSPENDED", - "3": "UNREGISTERED" - }, - "NZ0_EnumC12197q": { - "0": "PREFIX", - "1": "SUFFIX" - }, - "NZ0_EnumC12218x0": { - "0": "NO_CONTENT", - "1": "OK", - "2": "ERROR" - }, - "NZ0_I0": { - "0": "A", - "1": "B", - "2": "C", - "3": "D", - "4": "UNKNOWN" - }, - "NZ0_K0": { - "0": "POCKET_MONEY", - "1": "REFINANCE" - }, - "NZ0_N0": { - "0": "COMPACT", - "1": "EXPANDED" - }, - "NZ0_S0": { - "0": "CARD", - "1": "ACTION" - }, - "NZ0_W0": { - "0": "OK", - "1": "INTERNAL_ERROR" - }, - "NotificationStatus": { - "1": "NOTIFICATION_ITEM_EXIST", - "2": "TIMELINE_ITEM_EXIST", - "4": "NOTE_GROUP_NEW_ITEM_EXIST", - "8": "TIMELINE_BUDDYGROUP_CHANGED", - "16": "NOTE_ONE_TO_ONE_NEW_ITEM_EXIST", - "32": "ALBUM_ITEM_EXIST", - "64": "TIMELINE_ITEM_DELETED", - "128": "OTOGROUP_ITEM_EXIST", - "256": "GROUPHOME_NEW_ITEM_EXIST", - "512": "GROUPHOME_HIDDEN_ITEM_CHANGED", - "1024": "NOTIFICATION_ITEM_CHANGED", - "2048": "BEAD_ITEM_HIDE", - "4096": "BEAD_ITEM_SHOW", - "8192": "LINE_TICKET_UPDATED", - "16384": "TIMELINE_STORY_UPDATED", - "32768": "SMARTCH_UPDATED", - "65536": "AVATAR_UPDATED", - "131072": "HOME_NOTIFICATION_ITEM_EXIST", - "262144": "TIMELINE_REBOOT_COMPLETED", - "524288": "TIMELINE_GUIDE_STORY_UPDATED", - "1048576": "TIMELINE_F2F_COMPLETED", - "2097152": "VOOM_LIVE_STATE_CHANGED", - "4194304": "VOOM_ACTIVITY_REWARD_ITEM_EXIST" - }, - "NotificationType": { - "1": "APPLE_APNS", - "2": "GOOGLE_C2DM", - "3": "NHN_NNI", - "4": "SKT_AOM", - "5": "MS_MPNS", - "6": "RIM_BIS", - "7": "GOOGLE_GCM", - "8": "NOKIA_NNAPI", - "9": "TIZEN", - "10": "MOZILLA_SIMPLE", - "17": "LINE_BOT", - "18": "LINE_WAP", - "19": "APPLE_APNS_VOIP", - "20": "MS_WNS", - "21": "GOOGLE_FCM", - "22": "CLOVA", - "23": "CLOVA_VOIP", - "24": "HUAWEI_HCM" - }, - "Ob1_B0": { - "0": "FOREGROUND", - "1": "BACKGROUND" - }, - "Ob1_C1": { - "0": "NORMAL", - "1": "BIG" - }, - "Ob1_D0": { - "0": "PURCHASE_ONLY", - "1": "PURCHASE_OR_SUBSCRIPTION", - "2": "SUBSCRIPTION_ONLY" - }, - "Ob1_EnumC12607a1": { - "1": "DEFAULT", - "2": "VIEW_VIDEO" - }, - "Ob1_EnumC12610b1": { - "0": "NONE", - "2": "BUDDY", - "3": "INSTALL", - "4": "MISSION", - "5": "MUSTBUY" - }, - "Ob1_EnumC12631i1": { - "0": "UNKNOWN", - "1": "PRODUCT", - "2": "USER", - "3": "PREMIUM_USER" - }, - "Ob1_EnumC12638l": { - "0": "VALID", - "1": "INVALID" - }, - "Ob1_EnumC12641m": { - "1": "PREMIUM", - "2": "VERIFIED", - "3": "UNVERIFIED" - }, - "Ob1_EnumC12652p1": { - "0": "UNKNOWN", - "1": "NONE", - "16641": "ILLEGAL_ARGUMENT", - "16642": "NOT_FOUND", - "16643": "NOT_AVAILABLE", - "16644": "NOT_PAID_PRODUCT", - "16645": "NOT_FREE_PRODUCT", - "16646": "ALREADY_OWNED", - "16647": "ERROR_WITH_CUSTOM_MESSAGE", - "16648": "NOT_AVAILABLE_TO_RECIPIENT", - "16649": "NOT_AVAILABLE_FOR_CHANNEL_ID", - "16650": "NOT_SALE_FOR_COUNTRY", - "16651": "NOT_SALES_PERIOD", - "16652": "NOT_SALE_FOR_DEVICE", - "16653": "NOT_SALE_FOR_VERSION", - "16654": "ALREADY_EXPIRED", - "16655": "LIMIT_EXCEEDED", - "16656": "MISSING_CAPABILITY", - "16897": "AUTHENTICATION_FAILED", - "17153": "BALANCE_SHORTAGE", - "20737": "INTERNAL_SERVER_ERROR", - "20738": "SERVICE_IN_MAINTENANCE_MODE", - "20739": "SERVICE_UNAVAILABLE" - }, - "Ob1_EnumC12656r0": { - "0": "OK", - "1": "PRODUCT_UNSUPPORTED", - "2": "TEXT_NOT_SPECIFIED", - "3": "TEXT_STYLE_UNAVAILABLE", - "4": "CHARACTER_COUNT_LIMIT_EXCEEDED", - "5": "CONTAINS_INVALID_WORD" - }, - "Ob1_EnumC12664u": { - "0": "UNKNOWN", - "1": "NONE", - "16641": "ILLEGAL_ARGUMENT", - "16642": "NOT_FOUND", - "16643": "NOT_AVAILABLE", - "16644": "MAX_AMOUNT_OF_PRODUCTS_REACHED", - "16645": "PRODUCT_IS_NOT_PREMIUM", - "16646": "PRODUCT_IS_NOT_AVAILABLE_FOR_USER", - "16897": "AUTHENTICATION_FAILED", - "20737": "INTERNAL_SERVER_ERROR", - "20739": "SERVICE_UNAVAILABLE" - }, - "Ob1_EnumC12666u1": { - "0": "POPULAR", - "1": "NEW_RELEASE", - "2": "EVENT", - "3": "RECOMMENDED", - "4": "POPULAR_WEEKLY", - "5": "POPULAR_MONTHLY", - "6": "POPULAR_RECENTLY_PUBLISHED", - "7": "BUDDY", - "8": "EXTRA_EVENT", - "9": "BROWSING_HISTORY", - "10": "POPULAR_TOTAL_SALES", - "11": "NEW_SUBSCRIPTION", - "12": "POPULAR_SUBSCRIPTION_30D", - "13": "CPD_STICKER", - "14": "POPULAR_WITH_FREE" - }, - "Ob1_F1": { - "1": "STATIC", - "2": "ANIMATION" - }, - "Ob1_I": { - "0": "STATIC", - "1": "POPULAR", - "2": "NEW_RELEASE" - }, - "Ob1_J0": { - "0": "ON_SALE", - "1": "OUTDATED_VERSION", - "2": "NOT_ON_SALE" - }, - "Ob1_J1": { - "0": "OK", - "1": "INVALID_PARAMETER", - "2": "NOT_FOUND", - "3": "NOT_SUPPORTED", - "4": "CONFLICT", - "5": "NOT_ELIGIBLE" - }, - "Ob1_K1": { - "0": "GOOGLE", - "1": "APPLE", - "2": "WEBSTORE", - "3": "LINEMO", - "4": "LINE_MUSIC", - "5": "LYP", - "6": "TW_CHT", - "7": "FREEMIUM" - }, - "Ob1_M1": { - "0": "OK", - "1": "UNKNOWN", - "2": "NOT_SUPPORTED", - "3": "NO_SUBSCRIPTION", - "4": "SUBSCRIPTION_EXISTS", - "5": "NOT_AVAILABLE", - "6": "CONFLICT", - "7": "OUTDATED_VERSION", - "8": "NO_STUDENT_INFORMATION", - "9": "ACCOUNT_HOLD", - "10": "RETRY_STATE" - }, - "Ob1_O0": { - "1": "STICKER", - "2": "THEME", - "3": "STICON" - }, - "Ob1_O1": { - "0": "AVAILABLE", - "1": "DIFFERENT_STORE", - "2": "NOT_STUDENT", - "3": "ALREADY_PURCHASED" - }, - "Ob1_P1": { - "1": "GENERAL", - "2": "STUDENT" - }, - "Ob1_Q1": { - "1": "BASIC", - "2": "DELUXE" - }, - "Ob1_R1": { - "1": "MONTHLY", - "2": "YEARLY" - }, - "Ob1_U1": { - "0": "OK", - "1": "UNKNOWN", - "2": "NO_SUBSCRIPTION", - "3": "EXISTS", - "4": "NOT_FOUND", - "5": "EXCEEDS_LIMIT", - "6": "NOT_AVAILABLE" - }, - "Ob1_V1": { - "1": "DATE_ASC", - "2": "DATE_DESC" - }, - "Ob1_X1": { - "0": "GENERAL", - "1": "CREATORS", - "2": "STICON" - }, - "Ob1_a2": { - "0": "NOT_PURCHASED", - "1": "SUBSCRIPTION", - "2": "NOT_SUBSCRIBED", - "3": "NOT_ACCEPTED", - "4": "NOT_PURCHASED_U2I", - "5": "BUDDY" - }, - "Ob1_c2": { - "1": "STATIC", - "2": "ANIMATION" - }, - "OpType": { - "0": "END_OF_OPERATION", - "1": "UPDATE_PROFILE", - "2": "NOTIFIED_UPDATE_PROFILE", - "3": "REGISTER_USERID", - "4": "ADD_CONTACT", - "5": "NOTIFIED_ADD_CONTACT", - "6": "BLOCK_CONTACT", - "7": "UNBLOCK_CONTACT", - "8": "NOTIFIED_RECOMMEND_CONTACT", - "9": "CREATE_GROUP", - "10": "UPDATE_GROUP", - "11": "NOTIFIED_UPDATE_GROUP", - "12": "INVITE_INTO_GROUP", - "13": "NOTIFIED_INVITE_INTO_GROUP", - "14": "LEAVE_GROUP", - "15": "NOTIFIED_LEAVE_GROUP", - "16": "ACCEPT_GROUP_INVITATION", - "17": "NOTIFIED_ACCEPT_GROUP_INVITATION", - "18": "KICKOUT_FROM_GROUP", - "19": "NOTIFIED_KICKOUT_FROM_GROUP", - "20": "CREATE_ROOM", - "21": "INVITE_INTO_ROOM", - "22": "NOTIFIED_INVITE_INTO_ROOM", - "23": "LEAVE_ROOM", - "24": "NOTIFIED_LEAVE_ROOM", - "25": "SEND_MESSAGE", - "26": "RECEIVE_MESSAGE", - "27": "SEND_MESSAGE_RECEIPT", - "28": "RECEIVE_MESSAGE_RECEIPT", - "29": "SEND_CONTENT_RECEIPT", - "30": "RECEIVE_ANNOUNCEMENT", - "31": "CANCEL_INVITATION_GROUP", - "32": "NOTIFIED_CANCEL_INVITATION_GROUP", - "33": "NOTIFIED_UNREGISTER_USER", - "34": "REJECT_GROUP_INVITATION", - "35": "NOTIFIED_REJECT_GROUP_INVITATION", - "36": "UPDATE_SETTINGS", - "37": "NOTIFIED_REGISTER_USER", - "38": "INVITE_VIA_EMAIL", - "39": "NOTIFIED_REQUEST_RECOVERY", - "40": "SEND_CHAT_CHECKED", - "41": "SEND_CHAT_REMOVED", - "42": "NOTIFIED_FORCE_SYNC", - "43": "SEND_CONTENT", - "44": "SEND_MESSAGE_MYHOME", - "45": "NOTIFIED_UPDATE_CONTENT_PREVIEW", - "46": "REMOVE_ALL_MESSAGES", - "47": "NOTIFIED_UPDATE_PURCHASES", - "48": "DUMMY", - "49": "UPDATE_CONTACT", - "50": "NOTIFIED_RECEIVED_CALL", - "51": "CANCEL_CALL", - "52": "NOTIFIED_REDIRECT", - "53": "NOTIFIED_CHANNEL_SYNC", - "54": "FAILED_SEND_MESSAGE", - "55": "NOTIFIED_READ_MESSAGE", - "56": "FAILED_EMAIL_CONFIRMATION", - "58": "NOTIFIED_CHAT_CONTENT", - "59": "NOTIFIED_PUSH_NOTICENTER_ITEM", - "60": "NOTIFIED_JOIN_CHAT", - "61": "NOTIFIED_LEAVE_CHAT", - "62": "NOTIFIED_TYPING", - "63": "FRIEND_REQUEST_ACCEPTED", - "64": "DESTROY_MESSAGE", - "65": "NOTIFIED_DESTROY_MESSAGE", - "66": "UPDATE_PUBLICKEYCHAIN", - "67": "NOTIFIED_UPDATE_PUBLICKEYCHAIN", - "68": "NOTIFIED_BLOCK_CONTACT", - "69": "NOTIFIED_UNBLOCK_CONTACT", - "70": "UPDATE_GROUPPREFERENCE", - "71": "NOTIFIED_PAYMENT_EVENT", - "72": "REGISTER_E2EE_PUBLICKEY", - "73": "NOTIFIED_E2EE_KEY_EXCHANGE_REQ", - "74": "NOTIFIED_E2EE_KEY_EXCHANGE_RESP", - "75": "NOTIFIED_E2EE_MESSAGE_RESEND_REQ", - "76": "NOTIFIED_E2EE_MESSAGE_RESEND_RESP", - "77": "NOTIFIED_E2EE_KEY_UPDATE", - "78": "NOTIFIED_BUDDY_UPDATE_PROFILE", - "79": "NOTIFIED_UPDATE_LINEAT_TABS", - "80": "UPDATE_ROOM", - "81": "NOTIFIED_BEACON_DETECTED", - "82": "UPDATE_EXTENDED_PROFILE", - "83": "ADD_FOLLOW", - "84": "NOTIFIED_ADD_FOLLOW", - "85": "DELETE_FOLLOW", - "86": "NOTIFIED_DELETE_FOLLOW", - "87": "UPDATE_TIMELINE_SETTINGS", - "88": "NOTIFIED_FRIEND_REQUEST", - "89": "UPDATE_RINGBACK_TONE", - "90": "NOTIFIED_POSTBACK", - "91": "RECEIVE_READ_WATERMARK", - "92": "NOTIFIED_MESSAGE_DELIVERED", - "93": "NOTIFIED_UPDATE_CHAT_BAR", - "94": "NOTIFIED_CHATAPP_INSTALLED", - "95": "NOTIFIED_CHATAPP_UPDATED", - "96": "NOTIFIED_CHATAPP_NEW_MARK", - "97": "NOTIFIED_CHATAPP_DELETED", - "98": "NOTIFIED_CHATAPP_SYNC", - "99": "NOTIFIED_UPDATE_MESSAGE", - "100": "UPDATE_CHATROOMBGM", - "101": "NOTIFIED_UPDATE_CHATROOMBGM", - "102": "UPDATE_RINGTONE", - "118": "UPDATE_USER_SETTINGS", - "119": "NOTIFIED_UPDATE_STATUS_BAR", - "120": "CREATE_CHAT", - "121": "UPDATE_CHAT", - "122": "NOTIFIED_UPDATE_CHAT", - "123": "INVITE_INTO_CHAT", - "124": "NOTIFIED_INVITE_INTO_CHAT", - "125": "CANCEL_CHAT_INVITATION", - "126": "NOTIFIED_CANCEL_CHAT_INVITATION", - "127": "DELETE_SELF_FROM_CHAT", - "128": "NOTIFIED_DELETE_SELF_FROM_CHAT", - "129": "ACCEPT_CHAT_INVITATION", - "130": "NOTIFIED_ACCEPT_CHAT_INVITATION", - "131": "REJECT_CHAT_INVITATION", - "132": "DELETE_OTHER_FROM_CHAT", - "133": "NOTIFIED_DELETE_OTHER_FROM_CHAT", - "134": "NOTIFIED_CONTACT_CALENDAR_EVENT", - "135": "NOTIFIED_CONTACT_CALENDAR_EVENT_ALL", - "136": "UPDATE_THINGS_OPERATIONS", - "137": "SEND_CHAT_HIDDEN", - "138": "CHAT_META_SYNC_ALL", - "139": "SEND_REACTION", - "140": "NOTIFIED_SEND_REACTION", - "141": "NOTIFIED_UPDATE_PROFILE_CONTENT", - "142": "FAILED_DELIVERY_MESSAGE", - "143": "SEND_ENCRYPTED_E2EE_KEY_REQUESTED", - "144": "CHANNEL_PAAK_AUTHENTICATION_REQUESTED", - "145": "UPDATE_PIN_STATE", - "146": "NOTIFIED_PREMIUMBACKUP_STATE_CHANGED", - "147": "CREATE_MULTI_PROFILE", - "148": "MULTI_PROFILE_STATUS_CHANGED", - "149": "DELETE_MULTI_PROFILE", - "150": "UPDATE_PROFILE_MAPPING", - "151": "DELETE_PROFILE_MAPPING", - "152": "NOTIFIED_DESTROY_NOTICENTER_PUSH" - }, - "P70_g": { - "1000": "INVALID_REQUEST", - "1001": "RETRY_REQUIRED" - }, - "PaidCallType": { - "0": "OUT", - "1": "IN", - "2": "TOLLFREE", - "3": "RECORD", - "4": "AD", - "5": "CS", - "6": "OA", - "7": "OAM" - }, - "PayloadType": { - "101": "PAYLOAD_BUY", - "111": "PAYLOAD_CS", - "121": "PAYLOAD_BONUS", - "131": "PAYLOAD_EVENT", - "141": "PAYLOAD_POINT_AUTO_EXCHANGED", - "151": "PAYLOAD_POINT_MANUAL_EXCHANGED" - }, - "Pb1_A0": { - "0": "NORMAL", - "1": "VIDEOCAM", - "2": "VOIP", - "3": "RECORD" - }, - "Pb1_A3": { - "0": "UNKNOWN", - "1": "BACKGROUND_NEW_KEY_CREATED", - "2": "BACKGROUND_PERIODICAL_VERIFICATION", - "3": "FOREGROUND_NEW_PIN_REGISTERED", - "4": "FOREGROUND_VERIFICATION" - }, - "Pb1_B": { - "1": "SIRI", - "2": "GOOGLE_ASSISTANT", - "3": "OS_SHARE" - }, - "Pb1_D0": { - "0": "RICH_MENU_ID", - "1": "STATUS_BAR", - "2": "BUDDY_CAUTION_NOTICE" - }, - "Pb1_D4": { - "1": "AUDIO", - "2": "VIDEO", - "3": "FACEPLAY" - }, - "Pb1_D6": { - "0": "GOOGLE", - "1": "BAIDU", - "2": "FOURSQUARE", - "3": "YAHOOJAPAN", - "4": "KINGWAY" - }, - "Pb1_E7": { - "0": "UNKNOWN", - "1": "TALK", - "2": "SQUARE" - }, - "Pb1_EnumC12917a6": { - "0": "UNKNOWN", - "1": "APP_FOREGROUND", - "2": "PERIODIC", - "3": "MANUAL" - }, - "Pb1_EnumC12926b1": { - "0": "NOT_A_FRIEND", - "1": "ALWAYS" - }, - "Pb1_EnumC12941c2": { - "26": "BLE_LCS_API_USABLE", - "27": "PROHIBIT_MINIMIZE_CHANNEL_BROWSER", - "28": "ALLOW_IOS_WEBKIT", - "38": "PURCHASE_LCS_API_USABLE", - "48": "ALLOW_ANDROID_ENABLE_ZOOM" - }, - "Pb1_EnumC12945c6": { - "1": "V1", - "2": "V2" - }, - "Pb1_EnumC12970e3": { - "1": "USER_AGE_CHECKED", - "2": "USER_APPROVAL_REQUIRED" - }, - "Pb1_EnumC12997g2": { - "0": "PROFILE", - "1": "FRIENDS", - "2": "GROUP" - }, - "Pb1_EnumC12998g3": { - "0": "UNKNOWN", - "1": "WIFI", - "2": "CELLULAR_NETWORK" - }, - "Pb1_EnumC13009h0": { - "1": "NORMAL", - "2": "LOW_BATTERY" - }, - "Pb1_EnumC13010h1": { - "1": "NEW", - "2": "PLANET" - }, - "Pb1_EnumC13015h6": { - "0": "FORWARD", - "1": "AUTO_REPLY", - "2": "SUBORDINATE", - "3": "REPLY" - }, - "Pb1_EnumC13022i": { - "0": "SKIP", - "1": "PINCODE", - "2": "SECURITY_CENTER" - }, - "Pb1_EnumC13029i6": { - "0": "ADD", - "1": "REMOVE", - "2": "MODIFY" - }, - "Pb1_EnumC13037j0": { - "0": "UNSPECIFIED", - "1": "INACTIVE", - "2": "ACTIVE", - "3": "DELETED" - }, - "Pb1_EnumC13050k": { - "0": "UNKNOWN", - "1": "IOS_REDUCED_ACCURACY", - "2": "IOS_FULL_ACCURACY", - "3": "AOS_PRECISE_LOCATION", - "4": "AOS_APPROXIMATE_LOCATION" - }, - "Pb1_EnumC13082m3": { - "0": "SHOW", - "1": "HIDE" - }, - "Pb1_EnumC13093n0": { - "0": "NONE", - "1": "TOP" - }, - "Pb1_EnumC13127p6": { - "0": "NORMAL", - "1": "ALERT_DISABLED", - "2": "ALWAYS" - }, - "Pb1_EnumC13128p7": { - "0": "UNKNOWN", - "1": "DIRECT_INVITATION", - "2": "DIRECT_CHAT", - "3": "GROUP_INVITATION", - "4": "GROUP_CHAT", - "5": "ROOM_INVITATION", - "6": "ROOM_CHAT", - "7": "FRIEND_PROFILE", - "8": "DIRECT_CHAT_SELECTED", - "9": "GROUP_CHAT_SELECTED", - "10": "ROOM_CHAT_SELECTED", - "11": "DEPRECATED" - }, - "Pb1_EnumC13148r0": { - "1": "ALWAYS_HIDDEN", - "2": "ALWAYS_SHOWN", - "3": "SHOWN_BY_CONDITION" - }, - "Pb1_EnumC13151r3": { - "0": "ONEWAY", - "1": "BOTH", - "2": "NOT_REGISTERED" - }, - "Pb1_EnumC13162s0": { - "1": "NOT_SUSPICIOUS", - "2": "SUSPICIOUS_00", - "3": "SUSPICIOUS_01" - }, - "Pb1_EnumC13196u6": { - "0": "COIN", - "1": "CREDIT", - "2": "MONTHLY", - "3": "OAM" - }, - "Pb1_EnumC13209v5": { - "0": "DUMMY", - "1": "NOTICE", - "2": "MORETAB", - "3": "STICKERSHOP", - "4": "CHANNEL", - "5": "DENY_KEYWORD", - "6": "CONNECTIONINFO", - "7": "BUDDY", - "8": "TIMELINEINFO", - "9": "THEMESHOP", - "10": "CALLRATE", - "11": "CONFIGURATION", - "12": "STICONSHOP", - "13": "SUGGESTDICTIONARY", - "14": "SUGGESTSETTINGS", - "15": "USERSETTINGS", - "16": "ANALYTICSINFO", - "17": "SEARCHPOPULARKEYWORD", - "18": "SEARCHNOTICE", - "19": "TIMELINE", - "20": "SEARCHPOPULARCATEGORY", - "21": "EXTENDEDPROFILE", - "22": "SEASONALMARKETING", - "23": "NEWSTAB", - "24": "SUGGESTDICTIONARYV2", - "25": "CHATAPPSYNC", - "26": "AGREEMENTS", - "27": "INSTANTNEWS", - "28": "EMOJI_MAPPING", - "29": "SEARCHBARKEYWORDS", - "30": "SHOPPING", - "31": "CHAT_EFFECT_BACKGROUND", - "32": "CHAT_EFFECT_KEYWORD", - "33": "SEARCHINDEX", - "34": "HUBTAB", - "35": "PAY_RULE_UPDATED", - "36": "SMARTCH", - "37": "HOME_SERVICE_LIST", - "38": "TIMELINESTORY", - "39": "WALLET_TAB", - "40": "POD_TAB", - "41": "HOME_SAFETY_CHECK", - "42": "HOME_SEASONAL_EFFECT", - "43": "OPENCHAT_MAIN", - "44": "CHAT_EFFECT_CONTENT_METADATA_TAG", - "45": "VOOM_LIVE_STATE_CHANGED", - "46": "PROFILE_STUDIO_N_BADGE", - "47": "LYP_FONT", - "48": "TIMELINESTORY_OA", - "49": "TRAVEL" - }, - "Pb1_EnumC13221w3": { - "0": "UNKNOWN", - "1": "EUROPEAN_ECONOMIC_AREA" - }, - "Pb1_EnumC13222w4": { - "1": "OBS_VIDEO", - "2": "OBS_GENERAL", - "3": "OBS_RINGBACK_TONE" - }, - "Pb1_EnumC13237x5": { - "1": "AUDIO", - "2": "VIDEO", - "3": "LIVE", - "4": "PHOTOBOOTH" - }, - "Pb1_EnumC13238x6": { - "0": "NOT_SPECIFIED", - "1": "VALID", - "2": "VERIFICATION_REQUIRED", - "3": "NOT_PERMITTED", - "4": "LIMIT_EXCEEDED", - "5": "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED" - }, - "Pb1_EnumC13251y5": { - "1": "STANDARD", - "2": "CONSTELLA" - }, - "Pb1_EnumC13252y6": { - "0": "ALL", - "1": "PROFILE", - "2": "SETTINGS", - "3": "CONFIGURATIONS", - "4": "CONTACT", - "5": "GROUP", - "6": "E2EE", - "7": "MESSAGE" - }, - "Pb1_EnumC13260z0": { - "0": "ON_AIR", - "1": "LIVE", - "2": "GLP" - }, - "Pb1_EnumC13267z7": { - "1": "NOTIFICATION_SETTING", - "255": "ALL" - }, - "Pb1_F0": { - "0": "NA", - "1": "FRIEND_VIEW", - "2": "OFFICIAL_ACCOUNT_VIEW" - }, - "Pb1_F4": { - "1": "INCOMING", - "2": "OUTGOING" - }, - "Pb1_F5": { - "0": "UNKNOWN", - "1": "SUCCESS", - "2": "REQUIRE_SERVER_SIDE_EMAIL", - "3": "REQUIRE_CLIENT_SIDE_EMAIL" - }, - "Pb1_F6": { - "0": "JBU", - "1": "LIP" - }, - "Pb1_G3": { - "1": "PROMOTION_FRIENDS_INVITE", - "2": "CAPABILITY_SERVER_SIDE_SMS", - "3": "LINE_CLIENT_ANALYTICS_CONFIGURATION" - }, - "Pb1_G4": { - "1": "TIMELINE", - "2": "NEARBY", - "3": "SQUARE" - }, - "Pb1_G6": { - "2": "NICE", - "3": "LOVE", - "4": "FUN", - "5": "AMAZING", - "6": "SAD", - "7": "OMG" - }, - "Pb1_H6": { - "0": "PUBLIC", - "1": "PRIVATE" - }, - "Pb1_I6": { - "0": "NEVER_SHOW", - "1": "ONE_WAY", - "2": "MUTUAL" - }, - "Pb1_J4": { - "0": "OTHER", - "1": "INITIALIZATION", - "2": "PERIODIC_SYNC", - "3": "MANUAL_SYNC", - "4": "LOCAL_DB_CORRUPTED" - }, - "Pb1_K2": { - "1": "CHANNEL_INFO", - "2": "CHANNEL_TOKEN", - "4": "COMMON_DOMAIN", - "255": "ALL" - }, - "Pb1_K6": { - "1": "EMAIL", - "2": "DISPLAY_NAME", - "4": "PHONETIC_NAME", - "8": "PICTURE", - "16": "STATUS_MESSAGE", - "32": "ALLOW_SEARCH_BY_USERID", - "64": "ALLOW_SEARCH_BY_EMAIL", - "128": "BUDDY_STATUS", - "256": "MUSIC_PROFILE", - "512": "AVATAR_PROFILE", - "2147483647": "ALL" - }, - "Pb1_L2": { - "0": "SYNC", - "1": "REMOVE", - "2": "REMOVE_ALL" - }, - "Pb1_L4": { - "0": "UNKNOWN", - "1": "REVISION_GAP_TOO_LARGE_CLIENT", - "2": "REVISION_GAP_TOO_LARGE_SERVER", - "3": "OPERATION_EXPIRED", - "4": "REVISION_HOLE", - "5": "FORCE_TRIGGERED" - }, - "Pb1_M6": { - "0": "OWNER", - "1": "FRIEND" - }, - "Pb1_N6": { - "1": "NFT", - "2": "AVATAR", - "3": "SNOW", - "4": "ARCZ", - "5": "FRENZ" - }, - "Pb1_O2": { - "1": "NAME", - "2": "PICTURE_STATUS", - "4": "PREVENTED_JOIN_BY_TICKET", - "8": "NOTIFICATION_SETTING", - "16": "INVITATION_TICKET", - "32": "FAVORITE_TIMESTAMP", - "64": "CHAT_TYPE" - }, - "Pb1_O6": { - "1": "DEFAULT", - "2": "MULTI_PROFILE" - }, - "Pb1_P6": { - "0": "HIDDEN", - "1000": "PUBLIC" - }, - "Pb1_Q2": { - "0": "BACKGROUND", - "1": "KEYWORD", - "2": "CONTENT_METADATA_TAG_BASED" - }, - "Pb1_R3": { - "1": "BEACON_AGREEMENT", - "2": "BLUETOOTH", - "3": "SHAKE_AGREEMENT", - "4": "AUTO_SUGGEST", - "5": "CHATROOM_CAPTURE", - "6": "CHATROOM_MINIMIZEBROWSER", - "7": "CHATROOM_MOBILESAFARI", - "8": "VIDEO_HIGHTLIGHT_WIZARD", - "9": "CHAT_FOLDER", - "10": "BLUETOOTH_SCAN", - "11": "AUTO_SUGGEST_FOLLOW_UP" - }, - "Pb1_S7": { - "1": "NONE", - "2": "ALL" - }, - "Pb1_T3": { - "1": "LOCATION_OS", - "2": "LOCATION_APP", - "3": "VIDEO_AUTO_PLAY", - "4": "HNI", - "5": "AUTO_SUGGEST_LANG", - "6": "CHAT_EFFECT_CACHED_CONTENT_LIST", - "7": "IFA", - "8": "ACCURACY_MODE" - }, - "Pb1_T7": { - "0": "SYNC", - "1": "REPORT" - }, - "Pb1_V7": { - "0": "UNSPECIFIED", - "1": "UNKNOWN", - "2": "INITIALIZATION", - "3": "OPERATION", - "4": "FULL_SYNC", - "5": "AUTO_REPAIR", - "6": "MANUAL_REPAIR", - "7": "INTERNAL", - "8": "USER_INITIATED" - }, - "Pb1_W2": { - "0": "ANYONE_IN_CHAT", - "1": "CREATOR_ONLY", - "2": "NO_ONE" - }, - "Pb1_W3": { - "0": "ILLEGAL_ARGUMENT", - "1": "AUTHENTICATION_FAILED", - "2": "INTERNAL_ERROR", - "3": "RESTORE_KEY_FIRST", - "4": "NO_BACKUP", - "6": "INVALID_PIN", - "7": "PERMANENTLY_LOCKED", - "8": "INVALID_PASSWORD", - "9": "MASTER_KEY_CONFLICT" - }, - "Pb1_X1": { - "0": "MESSAGE", - "1": "MESSAGE_NOTIFICATION", - "2": "NOTIFICATION_CENTER" - }, - "Pb1_X2": { - "0": "MESSAGE", - "1": "NOTE", - "2": "CHANNEL" - }, - "Pb1_Z2": { - "0": "GROUP", - "1": "ROOM", - "2": "PEER" - }, - "Pb1_gd": { - "1": "OVER", - "2": "UNDER", - "3": "UNDEFINED" - }, - "Pb1_od": { - "0": "UNKNOWN", - "1": "LOCATION" - }, - "PointErrorCode": { - "3001": "REQUEST_DUPLICATION", - "3002": "INVALID_PARAMETER", - "3003": "NOT_ENOUGH_BALANCE", - "3004": "AUTHENTICATION_FAIL", - "3005": "API_ACCESS_FORBIDDEN", - "3006": "MEMBER_ACCOUNT_NOT_FOUND", - "3007": "SERVICE_ACCOUNT_NOT_FOUND", - "3008": "TRANSACTION_NOT_FOUND", - "3009": "ALREADY_REVERSED_TRANSACTION", - "3010": "MESSAGE_NOT_READABLE", - "3011": "HTTP_REQUEST_METHOD_NOT_SUPPORTED", - "3012": "HTTP_MEDIA_TYPE_NOT_SUPPORTED", - "3013": "NOT_ALLOWED_TO_DEPOSIT", - "3014": "NOT_ALLOWED_TO_PAY", - "3015": "TRANSACTION_ACCESS_FORBIDDEN", - "4001": "INVALID_SERVICE_CONFIGURATION", - "5004": "DCS_COMMUNICATION_FAIL", - "5007": "UPDATE_BALANCE_FAIL", - "5888": "SYSTEM_MAINTENANCE", - "5999": "SYSTEM_ERROR" - }, - "Q70_q": { - "0": "UNKNOWN", - "1": "FACEBOOK", - "2": "APPLE", - "3": "GOOGLE" - }, - "Q70_r": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "4": "RETRY_LATER", - "5": "HUMAN_VERIFICATION_REQUIRED", - "101": "APP_UPGRADE_REQUIRED" - }, - "Qj_EnumC13584a": { - "0": "NOT_DETERMINED", - "1": "RESTRICTED", - "2": "DENIED", - "3": "AUTHORIZED" - }, - "Qj_EnumC13585b": { - "1": "WHITE", - "2": "BLACK" - }, - "Qj_EnumC13588e": { - "1": "LIGHT", - "2": "DARK" - }, - "Qj_EnumC13592i": { - "0": "ILLEGAL_ARGUMENT", - "1": "INTERNAL_ERROR", - "2": "CONNECTION_ERROR", - "3": "AUTHENTICATION_FAILED", - "4": "NEED_PERMISSION_APPROVAL", - "5": "COIN_NOT_USABLE", - "6": "WEBVIEW_NOT_ALLOWED" - }, - "Qj_EnumC13597n": { - "1": "INVALID_REQUEST", - "2": "UNAUTHORIZED", - "3": "CONSENT_REQUIRED", - "4": "VERSION_UPDATE_REQUIRED", - "5": "COMPREHENSIVE_AGREEMENT_REQUIRED", - "6": "SPLASH_SCREEN_REQUIRED", - "7": "PERMANENT_LINK_INVALID_REQUEST", - "8": "NO_DESTINATION_URL", - "9": "SERVICE_ALREADY_TERMINATED", - "100": "SERVER_ERROR" - }, - "Qj_EnumC13604v": { - "1": "GEOLOCATION", - "2": "ADVERTISING_ID", - "3": "BLUETOOTH_LE", - "4": "QR_CODE", - "5": "ADVERTISING_SDK", - "6": "ADD_TO_HOME", - "7": "SHARE_TARGET_MESSAGE", - "8": "VIDEO_AUTO_PLAY", - "9": "PROFILE_PLUS", - "10": "SUBWINDOW_OPEN", - "11": "SUBWINDOW_COMMON_MODULE", - "12": "NO_LIFF_REFERRER", - "13": "SKIP_CHANNEL_VERIFICATION_SCREEN", - "14": "PROVIDER_PAGE", - "15": "BASIC_AUTH", - "16": "SIRI_DONATION" - }, - "Qj_EnumC13605w": { - "1": "ALLOW_DIRECT_LINK", - "2": "ALLOW_DIRECT_LINK_V2" - }, - "Qj_EnumC13606x": { - "1": "LIGHT", - "2": "LIGHT_TRANSLUCENT", - "3": "DARK_TRANSLUCENT", - "4": "LIGHT_ICON", - "5": "DARK_ICON" - }, - "Qj_a0": { - "1": "CONCAT", - "2": "REPLACE" - }, - "Qj_e0": { - "0": "SUCCESS", - "1": "FAILURE", - "2": "CANCEL" - }, - "Qj_h0": { - "1": "RIGHT", - "2": "LEFT" - }, - "Qj_i0": { - "1": "FULL", - "2": "TALL", - "3": "COMPACT" - }, - "R70_e": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "EXTERNAL_SERVICE_UNAVAILABLE", - "4": "RETRY_LATER", - "100": "INVALID_CONTEXT", - "101": "NOT_SUPPORTED", - "102": "FORBIDDEN", - "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR" - }, - "RegistrationType": { - "0": "PHONE", - "1": "EMAIL_WAP", - "2305": "FACEBOOK", - "2306": "SINA", - "2307": "RENREN", - "2308": "FEIXIN", - "2309": "APPLE", - "2310": "YAHOOJAPAN", - "2311": "GOOGLE" - }, - "ReportType": { - "1": "ADVERTISING", - "2": "GENDER_HARASSMENT", - "3": "HARASSMENT", - "4": "OTHER", - "5": "IRRELEVANT_CONTENT", - "6": "IMPERSONATION", - "7": "SCAM" - }, - "S70_a": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "RETRY_LATER", - "100": "INVALID_CONTEXT", - "101": "APP_UPGRADE_REQUIRED" - }, - "SettingsAttributeEx": { - "0": "NOTIFICATION_ENABLE", - "1": "NOTIFICATION_MUTE_EXPIRATION", - "2": "NOTIFICATION_NEW_MESSAGE", - "3": "NOTIFICATION_GROUP_INVITATION", - "4": "NOTIFICATION_SHOW_MESSAGE", - "5": "NOTIFICATION_INCOMING_CALL", - "6": "PRIVACY_SYNC_CONTACTS", - "7": "PRIVACY_SEARCH_BY_PHONE_NUMBER", - "8": "NOTIFICATION_SOUND_MESSAGE", - "9": "NOTIFICATION_SOUND_GROUP", - "10": "CONTACT_MY_TICKET", - "11": "IDENTITY_PROVIDER", - "12": "IDENTITY_IDENTIFIER", - "13": "PRIVACY_SEARCH_BY_USERID", - "14": "PRIVACY_SEARCH_BY_EMAIL", - "15": "PREFERENCE_LOCALE", - "16": "NOTIFICATION_DISABLED_WITH_SUB", - "17": "NOTIFICATION_PAYMENT", - "18": "SECURITY_CENTER_SETTINGS", - "19": "SNS_ACCOUNT", - "20": "PHONE_REGISTRATION", - "21": "PRIVACY_ALLOW_SECONDARY_DEVICE_LOGIN", - "22": "CUSTOM_MODE", - "23": "PRIVACY_PROFILE_IMAGE_POST_TO_MYHOME", - "24": "EMAIL_CONFIRMATION_STATUS", - "25": "PRIVACY_RECV_MESSAGES_FROM_NOT_FRIEND", - "26": "PRIVACY_AGREE_USE_LINECOIN_TO_PAIDCALL", - "27": "PRIVACY_AGREE_USE_PAIDCALL", - "28": "ACCOUNT_MIGRATION_PINCODE", - "29": "ENFORCED_INPUT_ACCOUNT_MIGRATION_PINCODE", - "30": "PRIVACY_ALLOW_FRIEND_REQUEST", - "31": "PWLESS_PRIMARY_CREDENTIAL_REGISTRATION", - "32": "ALLOWED_TO_CONNECT_EAP_ACCOUNT", - "33": "E2EE_ENABLE", - "34": "HITOKOTO_BACKUP_REQUESTED", - "35": "PRIVACY_PROFILE_MUSIC_POST_TO_MYHOME", - "36": "CONTACT_ALLOW_FOLLOWING", - "37": "PRIVACY_ALLOW_NEARBY", - "38": "AGREEMENT_NEARBY", - "39": "AGREEMENT_SQUARE", - "40": "NOTIFICATION_MENTION", - "41": "ALLOW_UNREGISTRATION_SECONDARY_DEVICE", - "42": "AGREEMENT_BOT_USE", - "43": "AGREEMENT_SHAKE_FUNCTION", - "44": "AGREEMENT_MOBILE_CONTACT_NAME", - "45": "NOTIFICATION_THUMBNAIL", - "46": "AGREEMENT_SOUND_TO_TEXT", - "47": "AGREEMENT_PRIVACY_POLICY_VERSION", - "48": "AGREEMENT_AD_BY_WEB_ACCESS", - "49": "AGREEMENT_PHONE_NUMBER_MATCHING", - "50": "AGREEMENT_COMMUNICATION_INFO", - "51": "PRIVACY_SHARE_PERSONAL_INFO_TO_FRIENDS", - "52": "AGREEMENT_THINGS_WIRELESS_COMMUNICATION", - "53": "AGREEMENT_GDPR", - "54": "PRIVACY_STATUS_MESSAGE_HISTORY", - "55": "AGREEMENT_PROVIDE_LOCATION", - "56": "AGREEMENT_BEACON", - "57": "PRIVACY_PROFILE_HISTORY", - "58": "AGREEMENT_CONTENTS_SUGGEST", - "59": "AGREEMENT_CONTENTS_SUGGEST_DATA_COLLECTION", - "60": "PRIVACY_AGE_RESULT", - "61": "PRIVACY_AGE_RESULT_RECEIVED", - "62": "AGREEMENT_OCR_IMAGE_COLLECTION", - "63": "PRIVACY_ALLOW_FOLLOW", - "64": "PRIVACY_SHOW_FOLLOW_LIST", - "65": "NOTIFICATION_BADGE_TALK_ONLY", - "66": "AGREEMENT_ICNA", - "67": "NOTIFICATION_REACTION", - "68": "AGREEMENT_MID", - "69": "HOME_NOTIFICATION_NEW_FRIEND", - "70": "HOME_NOTIFICATION_FAVORITE_FRIEND_UPDATE", - "71": "HOME_NOTIFICATION_GROUP_MEMBER_UPDATE", - "72": "HOME_NOTIFICATION_BIRTHDAY", - "73": "AGREEMENT_LINE_OUT_USE", - "74": "AGREEMENT_LINE_OUT_PROVIDE_INFO", - "75": "NOTIFICATION_SHOW_PROFILE_IMAGE", - "76": "AGREEMENT_PDPA", - "77": "AGREEMENT_LOCATION_VERSION", - "78": "ALLOWED_TO_SHOW_ZHD_PAGE", - "79": "AGREEMENT_SNOW_AI_AVATAR", - "80": "EAP_ONLY_ACCOUNT_TARGET_COUNTRY", - "81": "AGREEMENT_LYP_PREMIUM_ALBUM", - "82": "AGREEMENT_LYP_PREMIUM_ALBUM_VERSION", - "83": "AGREEMENT_ALBUM_USAGE_DATA", - "84": "AGREEMENT_ALBUM_USAGE_DATA_VERSION", - "85": "AGREEMENT_LYP_PREMIUM_BACKUP", - "86": "AGREEMENT_LYP_PREMIUM_BACKUP_VERSION", - "87": "AGREEMENT_OA_AI_ASSISTANT", - "88": "AGREEMENT_OA_AI_ASSISTANT_VERSION", - "89": "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE", - "90": "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE_VERSION" - }, - "SnsIdType": { - "1": "FACEBOOK", - "2": "SINA", - "3": "RENREN", - "4": "FEIXIN", - "5": "BBM", - "6": "APPLE", - "7": "YAHOOJAPAN", - "8": "GOOGLE" - }, - "SpammerReason": { - "0": "OTHER", - "1": "ADVERTISING", - "2": "GENDER_HARASSMENT", - "3": "HARASSMENT", - "4": "IMPERSONATION", - "5": "SCAM" - }, - "SpotCategory": { - "0": "UNKNOWN", - "1": "GOURMET", - "2": "BEAUTY", - "3": "TRAVEL", - "4": "SHOPPING", - "5": "ENTERTAINMENT", - "6": "SPORTS", - "7": "TRANSPORT", - "8": "LIFE", - "9": "HOSPITAL", - "10": "FINANCE", - "11": "EDUCATION", - "12": "OTHER", - "10000": "ALL" - }, - "SquareAttribute": { - "1": "NAME", - "2": "WELCOME_MESSAGE", - "3": "PROFILE_IMAGE", - "4": "DESCRIPTION", - "6": "SEARCHABLE", - "7": "CATEGORY", - "8": "INVITATION_URL", - "9": "ABLE_TO_USE_INVITATION_URL", - "10": "STATE", - "11": "EMBLEMS", - "12": "JOIN_METHOD", - "13": "CHANNEL_ID", - "14": "SVC_TAGS" - }, - "SquareAuthorityAttribute": { - "1": "UPDATE_SQUARE_PROFILE", - "2": "INVITE_NEW_MEMBER", - "3": "APPROVE_JOIN_REQUEST", - "4": "CREATE_POST", - "5": "CREATE_OPEN_SQUARE_CHAT", - "6": "DELETE_SQUARE_CHAT_OR_POST", - "7": "REMOVE_SQUARE_MEMBER", - "8": "GRANT_ROLE", - "9": "ENABLE_INVITATION_TICKET", - "10": "CREATE_CHAT_ANNOUNCEMENT", - "11": "UPDATE_MAX_CHAT_MEMBER_COUNT", - "12": "USE_READONLY_DEFAULT_CHAT", - "13": "SEND_ALL_MENTION" - }, - "SquareChatType": { - "1": "OPEN", - "2": "SECRET", - "3": "ONE_ON_ONE", - "4": "SQUARE_DEFAULT" - }, - "SquareMemberAttribute": { - "1": "DISPLAY_NAME", - "2": "PROFILE_IMAGE", - "3": "ABLE_TO_RECEIVE_MESSAGE", - "5": "MEMBERSHIP_STATE", - "6": "ROLE", - "7": "PREFERENCE" - }, - "SquareMembershipState": { - "1": "JOIN_REQUESTED", - "2": "JOINED", - "3": "REJECTED", - "4": "LEFT", - "5": "KICK_OUT", - "6": "BANNED", - "7": "DELETED", - "8": "JOIN_REQUEST_WITHDREW" - }, - "StickerResourceType": { - "1": "STATIC", - "2": "ANIMATION", - "3": "SOUND", - "4": "ANIMATION_SOUND", - "5": "POPUP", - "6": "POPUP_SOUND", - "7": "NAME_TEXT", - "8": "PER_STICKER_TEXT" - }, - "SyncCategory": { - "0": "PROFILE", - "1": "SETTINGS", - "2": "OPS", - "3": "CONTACT", - "4": "RECOMMEND", - "5": "BLOCK", - "6": "GROUP", - "7": "ROOM", - "8": "NOTIFICATION", - "9": "ADDRESS_BOOK" - }, - "T70_C": { - "0": "INITIAL_BACKUP_STATE_UNSPECIFIED", - "1": "INITIAL_BACKUP_STATE_READY", - "2": "INITIAL_BACKUP_STATE_MESSAGE_ONGOING", - "3": "INITIAL_BACKUP_STATE_FINISHED", - "4": "INITIAL_BACKUP_STATE_ABORTED", - "5": "INITIAL_BACKUP_STATE_MEDIA_ONGOING" - }, - "T70_EnumC14390b": { - "0": "UNKNOWN", - "1": "PHONE_NUMBER", - "2": "EMAIL" - }, - "T70_EnumC14392c": { - "0": "UNKNOWN", - "1": "SKIP", - "2": "PASSWORD", - "3": "WEB_BASED", - "4": "EMAIL_BASED", - "11": "NONE" - }, - "T70_EnumC14406j": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "NOT_FOUND", - "4": "RETRY_LATER", - "5": "HUMAN_VERIFICATION_REQUIRED", - "100": "INVALID_CONTEXT", - "101": "APP_UPGRADE_REQUIRED" - }, - "T70_K": { - "0": "UNKNOWN", - "1": "SMS", - "2": "IVR", - "3": "SMSPULL" - }, - "T70_L": { - "0": "PREMIUM_TYPE_UNSPECIFIED", - "1": "PREMIUM_TYPE_LYP", - "2": "PREMIUM_TYPE_LINE" - }, - "T70_Z0": { - "1": "PHONE_VERIF", - "2": "EAP_VERIF" - }, - "T70_e1": { - "0": "UNKNOWN", - "1": "SKIP", - "2": "WEB_BASED" - }, - "T70_j1": { - "0": "UNKNOWN", - "1": "FACEBOOK", - "2": "APPLE", - "3": "GOOGLE" - }, - "U70_c": { - "0": "INTERNAL_ERROR", - "1": "FORBIDDEN", - "100": "INVALID_CONTEXT" - }, - "Uf_EnumC14873o": { - "1": "ANDROID", - "2": "IOS" - }, - "VR0_l": { - "1": "DEFAULT", - "2": "UEN" - }, - "VerificationMethod": { - "0": "NO_AVAILABLE", - "1": "PIN_VIA_SMS", - "2": "CALLERID_INDIGO", - "4": "PIN_VIA_TTS", - "10": "SKIP" - }, - "VerificationResult": { - "0": "FAILED", - "1": "OK_NOT_REGISTERED_YET", - "2": "OK_REGISTERED_WITH_SAME_DEVICE", - "3": "OK_REGISTERED_WITH_ANOTHER_DEVICE" - }, - "WR0_a": { - "1": "FREE", - "2": "PREMIUM" - }, - "a80_EnumC16644b": { - "0": "UNKNOWN", - "1": "FACEBOOK", - "2": "APPLE", - "3": "GOOGLE" - }, - "FetchDirection": { - "1": "FORWARD", - "2": "BACKWARD" - }, - "LiveTalkEventType": { - "1": "NOTIFIED_UPDATE_LIVE_TALK_TITLE", - "2": "NOTIFIED_UPDATE_LIVE_TALK_ANNOUNCEMENT", - "3": "NOTIFIED_UPDATE_SQUARE_MEMBER_ROLE", - "4": "NOTIFIED_UPDATE_LIVE_TALK_ALLOW_REQUEST_TO_SPEAK", - "5": "NOTIFIED_UPDATE_SQUARE_MEMBER" - }, - "LiveTalkReportType": { - "1": "ADVERTISING", - "2": "GENDER_HARASSMENT", - "3": "HARASSMENT", - "4": "IRRELEVANT_CONTENT", - "5": "OTHER", - "6": "IMPERSONATION", - "7": "SCAM" - }, - "MessageSummaryReportType": { - "1": "LEGAL_VIOLATION", - "2": "HARASSMENT", - "3": "PERSONAL_IDENTIFIER", - "4": "FALSE_INFORMATION", - "5": "GENDER_HARASSMENT", - "6": "OTHER" - }, - "NotificationPostType": { - "2": "POST_MENTION", - "3": "POST_LIKE", - "4": "POST_COMMENT", - "5": "POST_COMMENT_MENTION", - "6": "POST_COMMENT_LIKE", - "7": "POST_RELAY_JOIN" - }, - "SquareEventStatus": { - "1": "NORMAL", - "2": "ALERT_DISABLED" - }, - "SquareEventType": { - "0": "RECEIVE_MESSAGE", - "1": "SEND_MESSAGE", - "2": "NOTIFIED_JOIN_SQUARE_CHAT", - "3": "NOTIFIED_INVITE_INTO_SQUARE_CHAT", - "4": "NOTIFIED_LEAVE_SQUARE_CHAT", - "5": "NOTIFIED_DESTROY_MESSAGE", - "6": "NOTIFIED_MARK_AS_READ", - "7": "NOTIFIED_UPDATE_SQUARE_MEMBER_PROFILE", - "8": "NOTIFIED_UPDATE_SQUARE", - "9": "NOTIFIED_UPDATE_SQUARE_STATUS", - "10": "NOTIFIED_UPDATE_SQUARE_AUTHORITY", - "11": "NOTIFIED_UPDATE_SQUARE_MEMBER", - "12": "NOTIFIED_UPDATE_SQUARE_CHAT", - "13": "NOTIFIED_UPDATE_SQUARE_CHAT_STATUS", - "14": "NOTIFIED_UPDATE_SQUARE_CHAT_MEMBER", - "15": "NOTIFIED_CREATE_SQUARE_MEMBER", - "16": "NOTIFIED_CREATE_SQUARE_CHAT_MEMBER", - "17": "NOTIFIED_UPDATE_SQUARE_MEMBER_RELATION", - "18": "NOTIFIED_SHUTDOWN_SQUARE", - "19": "NOTIFIED_KICKOUT_FROM_SQUARE", - "20": "NOTIFIED_DELETE_SQUARE_CHAT", - "21": "NOTIFICATION_JOIN_REQUEST", - "22": "NOTIFICATION_JOINED", - "23": "NOTIFICATION_PROMOTED_COADMIN", - "24": "NOTIFICATION_PROMOTED_ADMIN", - "25": "NOTIFICATION_DEMOTED_MEMBER", - "26": "NOTIFICATION_KICKED_OUT", - "27": "NOTIFICATION_SQUARE_DELETE", - "28": "NOTIFICATION_SQUARE_CHAT_DELETE", - "29": "NOTIFICATION_MESSAGE", - "30": "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_NAME", - "31": "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_IMAGE", - "32": "NOTIFIED_UPDATE_SQUARE_FEATURE_SET", - "33": "NOTIFIED_ADD_BOT", - "34": "NOTIFIED_REMOVE_BOT", - "36": "NOTIFIED_UPDATE_SQUARE_NOTE_STATUS", - "37": "NOTIFIED_UPDATE_SQUARE_CHAT_ANNOUNCEMENT", - "38": "NOTIFIED_UPDATE_SQUARE_CHAT_MAX_MEMBER_COUNT", - "39": "NOTIFICATION_POST_ANNOUNCEMENT", - "40": "NOTIFICATION_POST", - "41": "MUTATE_MESSAGE", - "42": "NOTIFICATION_NEW_CHAT_MEMBER", - "43": "NOTIFIED_UPDATE_READONLY_CHAT", - "46": "NOTIFIED_UPDATE_MESSAGE_STATUS", - "47": "NOTIFICATION_MESSAGE_REACTION", - "48": "NOTIFIED_CHAT_POPUP", - "49": "NOTIFIED_SYSTEM_MESSAGE", - "50": "NOTIFIED_UPDATE_SQUARE_CHAT_FEATURE_SET", - "51": "NOTIFIED_UPDATE_LIVE_TALK", - "52": "NOTIFICATION_LIVE_TALK", - "53": "NOTIFIED_UPDATE_LIVE_TALK_INFO", - "54": "NOTIFICATION_THREAD_MESSAGE", - "55": "NOTIFICATION_THREAD_MESSAGE_REACTION", - "56": "NOTIFIED_UPDATE_THREAD", - "57": "NOTIFIED_UPDATE_THREAD_STATUS", - "58": "NOTIFIED_UPDATE_THREAD_MEMBER", - "59": "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE", - "60": "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE_STATUS" - }, - "AdScreen": { - "1": "CHATROOM", - "2": "THREAD_SPACE", - "3": "YOUR_THREADS", - "4": "NOTE_LIST", - "5": "NOTE_END", - "6": "WEB_MAIN", - "7": "WEB_SEARCH_RESULT" - }, - "BooleanState": { - "0": "NONE", - "1": "OFF", - "2": "ON" - }, - "ChatroomPopupType": { - "1": "IMG_TEXT", - "2": "TEXT_ONLY", - "3": "IMG_ONLY" - }, - "ContentsAttribute": { - "1": "NONE", - "2": "CONTENTS_HIDDEN" - }, - "FetchType": { - "1": "DEFAULT", - "2": "PREFETCH_BY_SERVER", - "3": "PREFETCH_BY_CLIENT" - }, - "LiveTalkAttribute": { - "1": "TITLE", - "2": "ALLOW_REQUEST_TO_SPEAK" - }, - "LiveTalkRole": { - "1": "HOST", - "2": "CO_HOST", - "3": "GUEST" - }, - "LiveTalkSpeakerSetting": { - "1": "APPROVAL", - "2": "ALL" - }, - "LiveTalkType": { - "1": "PUBLIC", - "2": "PRIVATE" - }, - "MessageReactionType": { - "0": "ALL", - "1": "UNDO", - "2": "NICE", - "3": "LOVE", - "4": "FUN", - "5": "AMAZING", - "6": "SAD", - "7": "OMG" - }, - "NotifiedMessageType": { - "1": "MENTION", - "2": "REPLY" - }, - "PopupAttribute": { - "1": "NAME", - "2": "ACTIVATED", - "3": "STARTS_AT", - "4": "ENDS_AT", - "5": "CONTENT" - }, - "PopupType": { - "1": "MAIN", - "2": "CHATROOM" - }, - "SquareChatAttribute": { - "2": "NAME", - "3": "SQUARE_CHAT_IMAGE", - "4": "STATE", - "5": "TYPE", - "6": "MAX_MEMBER_COUNT", - "7": "MESSAGE_VISIBILITY", - "8": "ABLE_TO_SEARCH_MESSAGE" - }, - "SquareChatFeatureControlState": { - "1": "DISABLED", - "2": "ENABLED" - }, - "SquareChatMemberAttribute": { - "4": "MEMBERSHIP_STATE", - "6": "NOTIFICATION_MESSAGE", - "7": "NOTIFICATION_NEW_MEMBER", - "8": "LEFT_BY_KICK_MESSAGE_LOCAL_ID", - "9": "MESSAGE_LOCAL_ID_WHEN_BLOCK" - }, - "SquareChatMembershipState": { - "1": "JOINED", - "2": "LEFT" - }, - "SquareChatState": { - "0": "ALIVE", - "1": "DELETED", - "2": "SUSPENDED" - }, - "SquareEmblem": { - "1": "SUPER", - "2": "OFFICIAL" - }, - "SquareErrorCode": { - "0": "UNKNOWN", - "400": "ILLEGAL_ARGUMENT", - "401": "AUTHENTICATION_FAILURE", - "403": "FORBIDDEN", - "404": "NOT_FOUND", - "409": "REVISION_MISMATCH", - "410": "PRECONDITION_FAILED", - "500": "INTERNAL_ERROR", - "501": "NOT_IMPLEMENTED", - "503": "TRY_AGAIN_LATER", - "505": "MAINTENANCE", - "506": "NO_PRESENCE_EXISTS" - }, - "SquareFeatureControlState": { - "1": "DISABLED", - "2": "ENABLED" - }, - "SquareFeatureSetAttribute": { - "1": "CREATING_SECRET_SQUARE_CHAT", - "2": "INVITING_INTO_OPEN_SQUARE_CHAT", - "3": "CREATING_SQUARE_CHAT", - "4": "READONLY_DEFAULT_CHAT", - "5": "SHOWING_ADVERTISEMENT", - "6": "DELEGATE_JOIN_TO_PLUG", - "7": "DELEGATE_KICK_OUT_TO_PLUG", - "8": "DISABLE_UPDATE_JOIN_METHOD", - "9": "DISABLE_TRANSFER_ADMIN", - "10": "CREATING_LIVE_TALK", - "11": "DISABLE_UPDATE_SEARCHABLE", - "12": "SUMMARIZING_MESSAGES", - "13": "CREATING_SQUARE_THREAD", - "14": "ENABLE_SQUARE_THREAD", - "15": "DISABLE_CHANGE_ROLE_CO_ADMIN" - }, - "SquareJoinMethodType": { - "0": "NONE", - "1": "APPROVAL", - "2": "CODE" - }, - "SquareMemberRelationState": { - "1": "NONE", - "2": "BLOCKED" - }, - "SquareMemberRole": { - "1": "ADMIN", - "2": "CO_ADMIN", - "10": "MEMBER" - }, - "SquareMessageState": { - "1": "SENT", - "2": "DELETED", - "3": "FORBIDDEN", - "4": "UNSENT" - }, - "SquareMetadataAttribute": { - "1": "EXCLUDED", - "2": "NO_AD" - }, - "SquarePreferenceAttribute": { - "1": "FAVORITE", - "2": "NOTI_FOR_NEW_JOIN_REQUEST" - }, - "SquareProviderType": { - "1": "UNKNOWN", - "2": "YOUTUBE", - "3": "OA_FANSPACE" - }, - "SquareState": { - "0": "ALIVE", - "1": "DELETED", - "2": "SUSPENDED" - }, - "SquareThreadAttribute": { - "1": "STATE", - "2": "EXPIRES_AT", - "3": "READ_ONLY_AT" - }, - "SquareThreadMembershipState": { - "1": "JOINED", - "2": "LEFT" - }, - "SquareThreadState": { - "1": "ALIVE", - "2": "DELETED" - }, - "SquareType": { - "0": "CLOSED", - "1": "OPEN" - }, - "TargetChatType": { - "0": "ALL", - "1": "MIDS", - "2": "CATEGORIES", - "3": "CHANNEL_ID" - }, - "TargetUserType": { - "0": "ALL", - "1": "MIDS" - }, - "do0_EnumC23139B": { - "1": "CLOUD", - "2": "BLE", - "3": "BEACON" - }, - "do0_EnumC23147e": { - "0": "SUCCESS", - "1": "UNKNOWN_ERROR", - "2": "BLUETOOTH_NOT_AVAILABLE", - "3": "CONNECTION_TIMEOUT", - "4": "CONNECTION_ERROR", - "5": "CONNECTION_IN_PROGRESS" - }, - "do0_EnumC23148f": { - "0": "ONETIME", - "1": "AUTOMATIC", - "2": "BEACON" - }, - "do0_G": { - "0": "SUCCESS", - "1": "UNKNOWN_ERROR", - "2": "GATT_ERROR", - "3": "GATT_OPERATION_NOT_SUPPORTED", - "4": "GATT_SERVICE_NOT_FOUND", - "5": "GATT_CHARACTERISTIC_NOT_FOUND", - "6": "GATT_CONNECTION_CLOSED", - "7": "CONNECTION_INVALID" - }, - "do0_M": { - "0": "INTERNAL_SERVER_ERROR", - "1": "UNAUTHORIZED", - "2": "INVALID_REQUEST", - "3": "INVALID_STATE", - "4096": "DEVICE_LIMIT_EXCEEDED", - "4097": "UNSUPPORTED_REGION" - }, - "fN0_EnumC24466B": { - "0": "LINE_PREMIUM", - "1": "LYP_PREMIUM" - }, - "fN0_EnumC24467C": { - "1": "LINE", - "2": "YAHOO_JAPAN" - }, - "fN0_EnumC24469a": { - "1": "OK", - "2": "NOT_SUPPORTED", - "3": "UNDEFINED", - "4": "NOT_ENOUGH_TICKETS", - "5": "NOT_FRIENDS", - "6": "NO_AGREEMENT" - }, - "fN0_F": { - "1": "OK", - "2": "NOT_SUPPORTED", - "3": "UNDEFINED", - "4": "CONFLICT", - "5": "NOT_AVAILABLE", - "6": "INVALID_INVITATION", - "7": "IN_PAYMENT_FAILURE_STATE" - }, - "fN0_G": { - "1": "APPLE", - "2": "GOOGLE" - }, - "fN0_H": { - "1": "INACTIVE", - "2": "ACTIVE_FINITE", - "3": "ACTIVE_INFINITE" - }, - "fN0_o": { - "1": "AVAILABLE", - "2": "ALREADY_SUBSCRIBED" - }, - "fN0_p": { - "0": "UNKNOWN", - "1": "SOFTBANK_BUNDLE", - "2": "YBB_BUNDLE", - "3": "YAHOO_MOBILE_BUNDLE", - "4": "PPCG_BUNDLE", - "5": "ENJOY_BUNDLE", - "6": "YAHOO_TRIAL_BUNDLE", - "7": "YAHOO_APPLE", - "8": "YAHOO_GOOGLE", - "9": "LINE_APPLE", - "10": "LINE_GOOGLE", - "11": "YAHOO_WALLET" - }, - "fN0_q": { - "0": "UNKNOWN", - "1": "NONE", - "16641": "ILLEGAL_ARGUMENT", - "16642": "NOT_FOUND", - "16643": "NOT_AVAILABLE", - "16644": "INTERNAL_SERVER_ERROR", - "16645": "AUTHENTICATION_FAILED" - }, - "g80_EnumC24993a": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "INVALID_CONTEXT", - "3": "TOO_MANY_REQUESTS" - }, - "h80_EnumC25645e": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "NOT_FOUND", - "3": "RETRY_LATER", - "100": "INVALID_CONTEXT", - "101": "NOT_SUPPORTED" - }, - "I80_EnumC26392b": { - "0": "UNKNOWN", - "1": "SKIP", - "2": "PASSWORD", - "4": "EMAIL_BASED", - "11": "NONE" - }, - "I80_EnumC26394c": { - "0": "PHONE_NUMBER", - "1": "APPLE", - "2": "GOOGLE" - }, - "I80_EnumC26408j": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "NOT_FOUND", - "4": "RETRY_LATER", - "5": "HUMAN_VERIFICATION_REQUIRED", - "100": "INVALID_CONTEXT", - "101": "APP_UPGRADE_REQUIRED" - }, - "I80_EnumC26425y": { - "0": "UNKNOWN", - "1": "SMS", - "2": "IVR" - }, - "j80_EnumC27228a": { - "1": "AUTHENTICATION_FAILED", - "2": "INVALID_STATE", - "3": "NOT_AUTHORIZED_DEVICE", - "4": "MUST_REFRESH_V3_TOKEN" - }, - "jO0_EnumC27533B": { - "1": "PAYMENT_APPLE", - "2": "PAYMENT_GOOGLE" - }, - "jO0_EnumC27535b": { - "0": "ILLEGAL_ARGUMENT", - "1": "AUTHENTICATION_FAILED", - "20": "INTERNAL_ERROR", - "29": "MESSAGE_DEFINED_ERROR", - "33": "MAINTENANCE_ERROR" - }, - "jO0_EnumC27559z": { - "0": "PAYMENT_PG_NONE", - "1": "PAYMENT_PG_AU", - "2": "PAYMENT_PG_AL" - }, - "jf_EnumC27712a": { - "1": "NONE", - "2": "DOES_NOT_RESPOND", - "3": "RESPOND_MANUALLY", - "4": "RESPOND_AUTOMATICALLY" - }, - "jf_EnumC27717f": { - "0": "UNKNOWN", - "1": "BAD_REQUEST", - "2": "NOT_FOUND", - "3": "FORBIDDEN", - "4": "INTERNAL_SERVER_ERROR" - }, - "kf_EnumC28766a": { - "0": "ILLEGAL_ARGUMENT", - "1": "INTERNAL_ERROR", - "2": "UNAUTHORIZED" - }, - "kf_o": { - "0": "ANDROID", - "1": "IOS" - }, - "kf_p": { - "0": "RICHMENU", - "1": "TALK_ROOM" - }, - "kf_r": { - "0": "WEB", - "1": "POSTBACK", - "2": "SEND_MESSAGE" - }, - "kf_u": { - "0": "CLICK", - "1": "IMPRESSION" - }, - "kf_x": { - "0": "UNKNOWN", - "1": "PROFILE", - "2": "TALK_LIST", - "3": "OA_CALL" - }, - "n80_o": { - "0": "INTERNAL_ERROR", - "100": "INVALID_CONTEXT", - "200": "FIDO_UNKNOWN_CREDENTIAL_ID", - "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR", - "202": "FIDO_UNACCEPTABLE_CONTENT", - "203": "FIDO_INVALID_REQUEST" - }, - "o80_e": { - "0": "INTERNAL_ERROR", - "1": "VERIFICATION_FAILED", - "2": "LOGIN_NOT_ALLOWED", - "3": "EXTERNAL_SERVICE_UNAVAILABLE", - "4": "RETRY_LATER", - "100": "NOT_SUPPORTED", - "101": "ILLEGAL_ARGUMENT", - "102": "INVALID_CONTEXT", - "103": "FORBIDDEN", - "200": "FIDO_UNKNOWN_CREDENTIAL_ID", - "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR", - "202": "FIDO_UNACCEPTABLE_CONTENT", - "203": "FIDO_INVALID_REQUEST" - }, - "og_E": { - "1": "RUNNING", - "2": "CLOSING", - "3": "CLOSED", - "4": "SUSPEND" - }, - "og_EnumC32661b": { - "0": "INACTIVE", - "1": "ACTIVE" - }, - "og_EnumC32663d": { - "0": "PREMIUM", - "1": "VERIFIED", - "2": "UNVERIFIED" - }, - "og_EnumC32671l": { - "0": "ILLEGAL_ARGUMENT", - "1": "AUTHENTICATION_FAILED", - "3": "INVALID_STATE", - "5": "NOT_FOUND", - "20": "INTERNAL_ERROR", - "33": "MAINTENANCE_ERROR" - }, - "og_G": { - "0": "FREE", - "1": "MONTHLY", - "2": "PER_PAYMENT" - }, - "og_I": { - "0": "OK", - "1": "REACHED_TIER_LIMIT", - "2": "REACHED_MEMBER_LIMIT", - "3": "ALREADY_JOINED", - "4": "NOT_SUPPORTED_LINE_VERSION", - "5": "BOT_USER_REGION_IS_NOT_MATCH" - }, - "q80_EnumC33651c": { - "0": "INTERNAL_ERROR", - "1": "ILLEGAL_ARGUMENT", - "2": "VERIFICATION_FAILED", - "3": "NOT_ALLOWED_QR_CODE_LOGIN", - "4": "VERIFICATION_NOTICE_FAILED", - "5": "RETRY_LATER", - "100": "INVALID_CONTEXT", - "101": "APP_UPGRADE_REQUIRED" - }, - "qm_EnumC34112e": { - "1": "BUTTON", - "2": "ENTRY_SELECTED", - "3": "BROADCAST_ENTER", - "4": "BROADCAST_LEAVE", - "5": "BROADCAST_STAY" - }, - "qm_s": { - "0": "ILLEGAL_ARGUMENT", - "5": "NOT_FOUND", - "20": "INTERNAL_ERROR" - }, - "r80_EnumC34361a": { - "1": "PERSONAL_ACCOUNT", - "2": "CURRENT_ACCOUNT" - }, - "r80_EnumC34362b": { - "1": "BANK_ALL", - "2": "BANK_DEPOSIT", - "3": "BANK_WITHDRAWAL" - }, - "r80_EnumC34365e": { - "1": "BANK", - "2": "ATM", - "3": "CONVENIENCE_STORE", - "4": "DEBIT_CARD", - "5": "E_CHANNEL", - "6": "VIRTUAL_BANK_ACCOUNT", - "7": "AUTO", - "8": "CVS_LAWSON", - "9": "SEVEN_BANK_DEPOSIT", - "10": "CODE_DEPOSIT" - }, - "r80_EnumC34367g": { - "0": "AVAILABLE", - "1": "DIFFERENT_REGION", - "2": "UNSUPPORTED_DEVICE", - "3": "PHONE_NUMBER_UNREGISTERED", - "4": "UNAVAILABLE_FROM_LINE_PAY", - "5": "INVALID_USER" - }, - "r80_EnumC34368h": { - "1": "CHARGE", - "2": "WITHDRAW" - }, - "r80_EnumC34370j": { - "0": "UNKNOWN", - "1": "VISA", - "2": "MASTER", - "3": "AMEX", - "4": "DINERS", - "5": "JCB" - }, - "r80_EnumC34371k": { - "0": "NULL", - "1": "ATM", - "2": "CONVENIENCE_STORE" - }, - "r80_EnumC34372l": { - "1": "SCALE2", - "2": "SCALE3", - "3": "HDPI", - "4": "XHDPI" - }, - "r80_EnumC34374n": { - "0": "SUCCESS", - "1000": "GENERAL_USER_ERROR", - "1101": "ACCOUNT_NOT_EXISTS", - "1102": "ACCOUNT_INVALID_STATUS", - "1103": "ACCOUNT_ALREADY_EXISTS", - "1104": "MERCHANT_NOT_EXISTS", - "1105": "MERCHANT_INVALID_STATUS", - "1107": "AGREEMENT_REQUIRED", - "1108": "BLACKLISTED", - "1109": "WRONG_PASSWORD", - "1110": "INVALID_CREDIT_CARD", - "1111": "LIMIT_EXCEEDED", - "1115": "CANNOT_PROCEED", - "1120": "TOO_WEAK_PASSWORD", - "1125": "CANNOT_CREATE_ACCOUNT", - "1130": "TEMPORARY_PASSWORD_ERROR", - "1140": "MISSING_PARAMETERS", - "1141": "NO_VALID_MYCODE_ACCOUNT", - "1142": "INSUFFICIENT_BALANCE", - "1150": "TRANSACTION_NOT_FOUND", - "1152": "TRANSACTION_FINISHED", - "1153": "PAYMENT_AMOUNT_WRONG", - "1157": "BALANCE_ACCOUNT_NOT_EXISTS", - "1158": "DUPLICATED_CITIZEN_ID", - "1159": "PAYMENT_REQUEST_NOT_FOUND", - "1169": "AUTH_FAILED", - "1171": "PASSWORD_SETTING_REQUIRED", - "1172": "TRANSACTION_ALREADY_PROCESSED", - "1178": "CURRENCY_NOT_SUPPORTED", - "1180": "PAYMENT_NOT_AVAILABLE", - "1181": "TRANSFER_REQUEST_NOT_FOUND", - "1183": "INVALID_PAYMENT_AMOUNT", - "1184": "INSUFFICIENT_PAYMENT_AMOUNT", - "1185": "EXTERNAL_SYSTEM_MAINTENANCE", - "1186": "EXTERNAL_SYSTEM_INOPERATIONAL", - "1192": "SESSION_EXPIRED", - "1195": "UPGRADE_REQUIRED", - "1196": "REQUEST_TOKEN_EXPIRED", - "1198": "OPERATION_FINISHED", - "1199": "EXTERNAL_SYSTEM_ERROR", - "1299": "PARTIAL_AMOUNT_APPROVED", - "1600": "PINCODE_AUTH_REQUIRED", - "1601": "ADDITIONAL_AUTH_REQUIRED", - "1603": "NOT_BOUND", - "1610": "OTP_USER_REGISTRATION_ERROR", - "1611": "OTP_CARD_REGISTRATION_ERROR", - "1612": "NO_AUTH_METHOD", - "1696": "GENERAL_USER_ERROR_RESTART", - "1697": "GENERAL_USER_ERROR_REFRESH", - "1698": "GENERAL_USER_ERROR_CLOSE", - "9000": "INTERNAL_SERVER_ERROR", - "9999": "INTERNAL_SYSTEM_MAINTENANCE", - "10000": "UNKNOWN_ERROR" - }, - "r80_EnumC34376p": { - "1": "TRANSFER", - "2": "TRANSFER_REQUEST", - "3": "DUTCH", - "4": "INVITATION" - }, - "r80_EnumC34377q": { - "0": "NULL", - "1": "UNIDEN", - "2": "WAIT", - "3": "IDENTIFIED", - "4": "CHECKING" - }, - "r80_EnumC34378s": { - "0": "UNKNOWN", - "1": "MORE_TAB", - "2": "CHAT_ROOM_PLUS_MENU", - "3": "TRANSFER", - "4": "PAYMENT", - "5": "LINECARD", - "6": "INVITATION" - }, - "r80_e0": { - "0": "NONE", - "1": "ONE_TIME_PAYMENT_AGREEMENT", - "2": "SIMPLE_JOINING_AGREEMENT", - "3": "LINE_CARD_CASH_AGREEMENT", - "4": "LINE_CARD_MONEY_AGREEMENT", - "5": "JOINING_WITH_LINE_CARD_AGREEMENT", - "6": "LINE_CARD_AGREEMENT" - }, - "r80_g0": { - "0": "NULL", - "1": "ATM", - "2": "CONVENIENCE_STORE", - "3": "ALL" - }, - "r80_h0": { - "1": "READY", - "2": "COMPLETE", - "3": "WAIT", - "4": "CANCEL", - "5": "FAIL", - "6": "EXPIRE", - "7": "ALL" - }, - "r80_i0": { - "1": "TRANSFER_ACCEPTABLE", - "2": "REMOVE_INVOICE", - "3": "INVOICE_CODE", - "4": "SHOW_ALWAYS_INVOICE" - }, - "r80_m0": { - "1": "OK", - "2": "NOT_ALIVE_USER", - "3": "NEED_BALANCE_DISCLAIMER", - "4": "ECONTEXT_CHARGING_IN_PROGRESS", - "6": "TRANSFER_IN_PROGRESS", - "7": "OK_REMAINING_BALANCE", - "8": "ADVERSE_BALANCE", - "9": "CONFIRM_REQUIRED" - }, - "r80_n0": { - "1": "LINE", - "2": "LINEPAY" - }, - "r80_r": { - "1": "CITIZEN_ID", - "2": "PASSPORT", - "3": "WORK_PERMIT", - "4": "ALIEN_CARD" - }, - "t80_h": { - "1": "CLIENT", - "2": "SERVER" - }, - "t80_i": { - "1": "APP_INSTANCE_LOCAL", - "2": "APP_TYPE_LOCAL", - "3": "GLOBAL" - }, - "t80_n": { - "0": "UNKNOWN", - "1": "NONE", - "16641": "ILLEGAL_ARGUMENT", - "16642": "NOT_FOUND", - "16643": "NOT_AVAILABLE", - "16644": "TOO_LARGE_VALUE", - "16645": "CLOCK_DRIFT_DETECTED", - "16646": "UNSUPPORTED_APPLICATION_TYPE", - "16647": "DUPLICATED_ENTRY", - "16897": "AUTHENTICATION_FAILED", - "20737": "INTERNAL_SERVER_ERROR", - "20738": "SERVICE_IN_MAINTENANCE_MODE", - "20739": "SERVICE_UNAVAILABLE" - }, - "t80_r": { - "1": "USER_ACTION", - "2": "DATA_OUTDATED", - "3": "APP_MIGRATION", - "100": "OTHER" - }, - "vh_EnumC37632c": { - "1": "ACTIVE", - "2": "INACTIVE" - }, - "vh_m": { - "1": "SAFE", - "2": "NOT_SAFE" - }, - "wm_EnumC38497a": { - "0": "UNKNOWN", - "1": "BOT_NOT_FOUND", - "2": "BOT_NOT_AVAILABLE", - "3": "NOT_A_MEMBER", - "4": "SQUARECHAT_NOT_FOUND", - "5": "FORBIDDEN", - "400": "ILLEGAL_ARGUMENT", - "401": "AUTHENTICATION_FAILED", - "500": "INTERNAL_ERROR" - }, - "zR0_EnumC40578c": { - "0": "FOREGROUND", - "1": "BACKGROUND" - }, - "zR0_EnumC40579d": { - "1": "STICKER", - "2": "THEME", - "3": "STICON" - }, - "zR0_h": { - "0": "NORMAL", - "1": "BIG" - }, - "zR0_j": { - "0": "UNKNOWN", - "1": "NONE", - "16641": "ILLEGAL_ARGUMENT", - "16642": "NOT_FOUND", - "16643": "NOT_AVAILABLE", - "16897": "AUTHENTICATION_FAILED", - "20737": "INTERNAL_SERVER_ERROR", - "20739": "SERVICE_UNAVAILABLE" - }, - "zf_EnumC40713a": { - "1": "PERSONAL", - "2": "ROOM", - "3": "GROUP", - "4": "SQUARE_CHAT" - }, - "zf_EnumC40715c": { - "1": "REGULAR", - "2": "PRIORITY", - "3": "MORE" - }, - "zf_EnumC40716d": { - "1": "INVALID_REQUEST", - "2": "UNAUTHORIZED", - "100": "SERVER_ERROR" - }, - "AccessTokenRefreshException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "P70_g" - }, - { - "fid": 2, - "name": "reasonCode", - "type": 10 - } - ], - "AccountEapConnectException": [ - { - "fid": 1, - "name": "code", - "struct": "Q70_r" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - }, - { - "fid": 11, - "name": "webAuthDetails", - "struct": "WebAuthDetails" - } - ], - "I80_C26390a": [ - { - "fid": 1, - "name": "code", - "struct": "I80_EnumC26408j" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - }, - { - "fid": 11, - "name": "webAuthDetails", - "struct": "I80_K0" - } - ], - "AuthException": [ - { - "fid": 1, - "name": "code", - "struct": "T70_EnumC14406j" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - }, - { - "fid": 11, - "name": "webAuthDetails", - "struct": "WebAuthDetails" - } - ], - "BotException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "wm_EnumC38497a" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "BotExternalException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "kf_EnumC28766a" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - } - ], - "ChannelException": [ - { - "fid": 1, - "name": "code", - "struct": "ChannelErrorCode" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "ChannelPaakAuthnException": [ - { - "fid": 1, - "name": "code", - "struct": "n80_o" - }, - { - "fid": 2, - "name": "errorMessage", - "type": 11 - } - ], - "ChatappException": [ - { - "fid": 1, - "name": "code", - "struct": "zf_EnumC40716d" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - } - ], - "CoinException": [ - { - "fid": 1, - "name": "code", - "struct": "jO0_EnumC27535b" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "CollectionException": [ - { - "fid": 1, - "name": "code", - "struct": "Ob1_EnumC12664u" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "E2EEKeyBackupException": [ - { - "fid": 1, - "name": "code", - "struct": "Pb1_W3" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "ExcessiveRequestItemException": [ - { - "fid": 1, - "name": "max_size", - "type": 8 - }, - { - "fid": 2, - "name": "hint", - "type": 11 - } - ], - "HomeException": [ - { - "fid": 1, - "name": "exceptionCode", - "struct": "Fg_a" - }, - { - "fid": 2, - "name": "message", - "type": 11 - }, - { - "fid": 3, - "name": "retryTimeMillis", - "type": 10 - } - ], - "LFLPremiumException": [ - { - "fid": 1, - "name": "code", - "struct": "AR0_g" - } - ], - "LiffChannelException": [ - { - "fid": 1, - "name": "code", - "struct": "Qj_EnumC13592i" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "LiffException": [ - { - "fid": 1, - "name": "code", - "struct": "Qj_EnumC13597n" - }, - { - "fid": 2, - "name": "message", - "type": 11 - }, - { - "fid": 3, - "name": "payload", - "struct": "Qj_C13599p" - } - ], - "MembershipException": [ - { - "fid": 1, - "name": "code", - "struct": "og_EnumC32671l" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "OaChatException": [ - { - "fid": 1, - "name": "code", - "struct": "jf_EnumC27717f" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "PasswordUpdateException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "U70_c" - }, - { - "fid": 2, - "name": "errorMessage", - "type": 11 - } - ], - "PaymentException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "r80_EnumC34374n" - }, - { - "fid": 2, - "name": "debugReason", - "type": 11 - }, - { - "fid": 3, - "name": "serverDefinedMessage", - "type": 11 - }, - { - "fid": 4, - "name": "errorDetailMap", - "map": 11, - "key": 11 - } - ], - "PointException": [ - { - "fid": 1, - "name": "code", - "struct": "PointErrorCode" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "extra", - "map": 11, - "key": 11 - } - ], - "PremiumException": [ - { - "fid": 1, - "name": "code", - "struct": "fN0_q" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - } - ], - "PrimaryQrCodeMigrationException": [ - { - "fid": 1, - "name": "code", - "struct": "h80_EnumC25645e" - }, - { - "fid": 2, - "name": "errorMessage", - "type": 11 - } - ], - "PwlessCredentialException": [ - { - "fid": 1, - "name": "code", - "struct": "R70_e" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - } - ], - "RejectedException": [ - { - "fid": 1, - "name": "rejectionReason", - "struct": "LN0_F0" - }, - { - "fid": 2, - "name": "hint", - "type": 11 - } - ], - "SeamlessLoginException": [ - { - "fid": 1, - "name": "code", - "struct": "g80_EnumC24993a" - }, - { - "fid": 2, - "name": "errorMessage", - "type": 11 - }, - { - "fid": 3, - "name": "errorTitle", - "type": 11 - } - ], - "SecondAuthFactorPinCodeException": [ - { - "fid": 1, - "name": "code", - "struct": "S70_a" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - } - ], - "SecondaryPwlessLoginException": [ - { - "fid": 1, - "name": "code", - "struct": "o80_e" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - } - ], - "SecondaryQrCodeException": [ - { - "fid": 1, - "name": "code", - "struct": "q80_EnumC33651c" - }, - { - "fid": 2, - "name": "alertMessage", - "type": 11 - } - ], - "ServerFailureException": [ - { - "fid": 1, - "name": "hint", - "type": 11 - } - ], - "SettingsException": [ - { - "fid": 1, - "name": "code", - "struct": "t80_n" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameters", - "map": 11, - "key": 11 - } - ], - "ShopException": [ - { - "fid": 1, - "name": "code", - "struct": "Ob1_EnumC12652p1" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "SquareException": [ - { - "fid": 1, - "name": "errorCode", - "struct": "SquareErrorCode" - }, - { - "fid": 2, - "name": "errorExtraInfo", - "struct": "ErrorExtraInfo" - }, - { - "fid": 3, - "name": "reason", - "type": 11 - } - ], - "SuggestTrialException": [ - { - "fid": 1, - "name": "code", - "struct": "zR0_j" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "TalkException": [ - { - "fid": 1, - "name": "code", - "struct": "ErrorCode" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "parameterMap", - "map": 11, - "key": 11 - } - ], - "ThingsException": [ - { - "fid": 1, - "name": "code", - "struct": "do0_M" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - } - ], - "TokenAuthException": [ - { - "fid": 1, - "name": "code", - "struct": "j80_EnumC27228a" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - } - ], - "WalletException": [ - { - "fid": 1, - "name": "code", - "struct": "NZ0_EnumC12193o1" - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "attributes", - "map": 11, - "key": 11 - } - ], - "m80_C30146a": [], - "m80_b": [], - "AD": [ - { - "fid": 1, - "name": "body", - "type": 11 - }, - { - "fid": 2, - "name": "priority", - "struct": "Priority" - }, - { - "fid": 3, - "name": "lossUrl", - "type": 11 - } - ], - "AR0_o": [ - { - "fid": 1, - "name": "sticker", - "struct": "_any" - } - ], - "AbuseMessage": [ - { - "fid": 1, - "name": "messageId", - "type": 10 - }, - { - "fid": 2, - "name": "message", - "type": 11 - }, - { - "fid": 3, - "name": "senderMid", - "type": 11 - }, - { - "fid": 4, - "name": "contentType", - "struct": "ContentType" - }, - { - "fid": 5, - "name": "createdTime", - "type": 10 - }, - { - "fid": 6, - "name": "metadata", - "map": 11, - "key": 11 - } - ], - "AbuseReport": [ - { - "fid": 1, - "name": "reportSource", - "struct": "Pb1_EnumC13128p7" - }, - { - "fid": 2, - "name": "applicationType", - "struct": "ApplicationType" - }, - { - "fid": 3, - "name": "spammerReasons", - "list": 8 - }, - { - "fid": 4, - "name": "abuseMessages", - "list": "AbuseMessage" - }, - { - "fid": 5, - "name": "metadata", - "map": 11, - "key": 11 - } - ], - "AbuseReportLineMeeting": [ - { - "fid": 1, - "name": "reporteeMid", - "type": 11 - }, - { - "fid": 2, - "name": "spammerReasons", - "list": 8 - }, - { - "fid": 3, - "name": "evidenceIds", - "list": "EvidenceId" - }, - { - "fid": 4, - "name": "chatMid", - "type": 11 - } - ], - "AcceptChatInvitationByTicketRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "ticketId", - "type": 11 - } - ], - "AcceptChatInvitationRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - } - ], - "AcceptSpeakersRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "targetMids", - "set": 11 - } - ], - "AcceptToChangeRoleRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "inviteRequestId", - "type": 11 - } - ], - "AcceptToListenRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "inviteRequestId", - "type": 11 - } - ], - "AcceptToSpeakRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "inviteRequestId", - "type": 11 - } - ], - "AccountIdentifier": [ - { - "fid": 1, - "name": "type", - "struct": "T70_EnumC14390b" - }, - { - "fid": 2, - "name": "identifier", - "type": 11 - }, - { - "fid": 11, - "name": "countryCode", - "type": 11 - } - ], - "AcquireLiveTalkRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "LiveTalkType" - }, - { - "fid": 4, - "name": "speakerSetting", - "struct": "LiveTalkSpeakerSetting" - } - ], - "AcquireLiveTalkResponse": [ - { - "fid": 1, - "name": "liveTalk", - "struct": "LiveTalk" - } - ], - "AcquireOACallRouteRequest": [ - { - "fid": 1, - "name": "searchId", - "type": 11 - }, - { - "fid": 2, - "name": "fromEnvInfo", - "map": 11, - "key": 11 - }, - { - "fid": 3, - "name": "otp", - "type": 11 - } - ], - "AcquireOACallRouteResponse": [ - { - "fid": 1, - "name": "oaCallRoute", - "struct": "Pb1_C13113o6" - } - ], - "ActionButton": [ - { - "fid": 1, - "name": "label", - "type": 11 - } - ], - "ActivateSubscriptionRequest": [ - { - "fid": 1, - "name": "uniqueKey", - "type": 11 - }, - { - "fid": 2, - "name": "activeStatus", - "struct": "og_EnumC32661b" - } - ], - "AdRequest": [ - { - "fid": 1, - "name": "headers", - "map": 11, - "key": 11 - }, - { - "fid": 2, - "name": "queryParams", - "map": 11, - "key": 11 - } - ], - "AdTypeOptOutClickEventRequest": [ - { - "fid": 1, - "name": "moduleAdId", - "type": 11 - }, - { - "fid": 2, - "name": "targetId", - "type": 11 - } - ], - "AddFriendByMidRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "userMid", - "type": 11 - }, - { - "fid": 3, - "name": "tracking", - "struct": "AddFriendTracking" - } - ], - "AddFriendTracking": [ - { - "fid": 1, - "name": "reference", - "type": 11 - }, - { - "fid": 2, - "name": "trackingMeta", - "struct": "LN0_C11274d" - } - ], - "AddItemToCollectionRequest": [ - { - "fid": 1, - "name": "collectionId", - "type": 11 - }, - { - "fid": 2, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "itemId", - "type": 11 - } - ], - "AddMetaByPhone": [ - { - "fid": 1, - "name": "phone", - "type": 11 - } - ], - "AddMetaBySearchId": [ - { - "fid": 1, - "name": "searchId", - "type": 11 - } - ], - "AddMetaByUserTicket": [ - { - "fid": 1, - "name": "ticket", - "type": 11 - } - ], - "AddMetaChatNote": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "AddMetaChatNoteMenu": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "AddMetaGroupMemberList": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "AddMetaGroupVideoCall": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "AddMetaInvalid": [ - { - "fid": 1, - "name": "hint", - "type": 11 - } - ], - "AddMetaMentionInChat": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - } - ], - "AddMetaProfileUndefined": [ - { - "fid": 1, - "name": "hint", - "type": 11 - } - ], - "AddMetaSearchIdInUnifiedSearch": [ - { - "fid": 1, - "name": "searchId", - "type": 11 - } - ], - "AddMetaShareContact": [ - { - "fid": 1, - "name": "messageId", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "senderMid", - "type": 11 - } - ], - "AddMetaStrangerCall": [ - { - "fid": 1, - "name": "messageId", - "type": 11 - } - ], - "AddMetaStrangerMessage": [ - { - "fid": 1, - "name": "messageId", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - } - ], - "AddOaFriendResponse": [ - { - "fid": 1, - "name": "status", - "type": 11 - } - ], - "AddProductToSubscriptionSlotRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "oldProductId", - "type": 11 - }, - { - "fid": 4, - "name": "subscriptionService", - "struct": "Ob1_S1" - } - ], - "AddProductToSubscriptionSlotResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_U1" - } - ], - "AddThemeToSubscriptionSlotRequest": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "currentlyAppliedProductId", - "type": 11 - }, - { - "fid": 3, - "name": "subscriptionService", - "struct": "Ob1_S1" - } - ], - "AddThemeToSubscriptionSlotResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_U1" - } - ], - "AddToFollowBlacklistRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - } - ], - "AgeCheckRequestResult": [ - { - "fid": 1, - "name": "authUrl", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "AgreeToTermsRequest": [ - { - "fid": 1, - "name": "termsType", - "struct": "TermsType" - }, - { - "fid": 2, - "name": "termsAgreement", - "struct": "TermsAgreement" - } - ], - "AiQnABotTermsAgreement": [ - { - "fid": 1, - "name": "termsVersion", - "type": 8 - } - ], - "AnalyticsInfo": [ - { - "fid": 1, - "name": "gaSamplingRate", - "type": 4 - }, - { - "fid": 2, - "name": "tmid", - "type": 11 - } - ], - "AnimationEffectContent": [ - { - "fid": 1, - "name": "animationImageUrl", - "type": 11 - } - ], - "AnimationLayer": [ - { - "fid": 1, - "name": "initialImage", - "struct": "RichImage" - }, - { - "fid": 2, - "name": "frontImage", - "struct": "RichImage" - }, - { - "fid": 3, - "name": "backgroundImage", - "struct": "RichImage" - } - ], - "ApplicationVersionRange": [ - { - "fid": 1, - "name": "lowerBound", - "type": 11 - }, - { - "fid": 2, - "name": "lowerBoundInclusive", - "type": 2 - }, - { - "fid": 3, - "name": "upperBound", - "type": 11 - }, - { - "fid": 4, - "name": "upperBoundInclusive", - "type": 2 - } - ], - "ApprovalValue": [ - { - "fid": 1, - "name": "message", - "type": 11 - } - ], - "ApproveSquareMembersRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "requestedMemberMids", - "list": 11 - } - ], - "ApproveSquareMembersResponse": [ - { - "fid": 1, - "name": "approvedMembers", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "status", - "struct": "SquareStatus" - } - ], - "ApprovedChannelInfo": [ - { - "fid": 1, - "name": "channelInfo", - "struct": "ChannelInfo" - }, - { - "fid": 2, - "name": "approvedAt", - "type": 10 - } - ], - "ApprovedChannelInfos": [ - { - "fid": 1, - "name": "approvedChannelInfos", - "list": "ApprovedChannelInfo" - }, - { - "fid": 2, - "name": "revision", - "type": 10 - } - ], - "AssetServiceInfo": [ - { - "fid": 1, - "name": "status", - "struct": "NZ0_C0" - }, - { - "fid": 2, - "name": "myAssetServiceCode", - "struct": "NZ0_B0" - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "signupText", - "type": 11 - }, - { - "fid": 5, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 6, - "name": "landingUrl", - "type": 11 - }, - { - "fid": 7, - "name": "currencyProperty", - "struct": "CurrencyProperty" - }, - { - "fid": 8, - "name": "balance", - "type": 11 - }, - { - "fid": 9, - "name": "profit", - "type": 11 - }, - { - "fid": 10, - "name": "maintenanceText", - "type": 11 - }, - { - "fid": 11, - "name": "availableBalanceString", - "type": 11 - }, - { - "fid": 12, - "name": "availableBalance", - "type": 11 - } - ], - "AuthPublicKeyCredential": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "type", - "type": 11 - }, - { - "fid": 3, - "name": "response", - "struct": "AuthenticatorAssertionResponse" - }, - { - "fid": 4, - "name": "extensionResults", - "struct": "AuthenticationExtensionsClientOutputs" - } - ], - "AuthSessionRequest": [ - { - "fid": 1, - "name": "metaData", - "map": 11, - "key": 11 - } - ], - "AuthenticateWithPaakRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "credential", - "struct": "AuthPublicKeyCredential" - } - ], - "AuthenticationExtensionsClientInputs": [ - { - "fid": 91, - "name": "lineAuthenSel", - "set": 11 - } - ], - "AuthenticationExtensionsClientOutputs": [ - { - "fid": 91, - "name": "lineAuthenSel", - "type": 2 - } - ], - "AuthenticatorAssertionResponse": [ - { - "fid": 1, - "name": "clientDataJSON", - "type": 11 - }, - { - "fid": 2, - "name": "authenticatorData", - "type": 11 - }, - { - "fid": 3, - "name": "signature", - "type": 11 - }, - { - "fid": 4, - "name": "userHandle", - "type": 11 - } - ], - "AuthenticatorAttestationResponse": [ - { - "fid": 1, - "name": "clientDataJSON", - "type": 11 - }, - { - "fid": 2, - "name": "attestationObject", - "type": 11 - }, - { - "fid": 3, - "name": "transports", - "set": 11 - } - ], - "AuthenticatorSelectionCriteria": [ - { - "fid": 1, - "name": "authenticatorAttachment", - "type": 11 - }, - { - "fid": 2, - "name": "requireResidentKey", - "type": 2 - }, - { - "fid": 3, - "name": "userVerification", - "type": 11 - } - ], - "AutoSuggestionShowcaseRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "suggestionType", - "struct": "Ob1_a2" - } - ], - "AutoSuggestionShowcaseResponse": [ - { - "fid": 1, - "name": "productList", - "list": "ProductSummaryForAutoSuggest" - }, - { - "fid": 2, - "name": "totalSize", - "type": 10 - } - ], - "AvatarProfile": [ - { - "fid": 1, - "name": "version", - "type": 11 - }, - { - "fid": 2, - "name": "updatedMillis", - "type": 10 - }, - { - "fid": 3, - "name": "thumbnail", - "type": 11 - }, - { - "fid": 4, - "name": "usablePublicly", - "type": 2 - } - ], - "BadgeInfo": [ - { - "fid": 1, - "name": "enabled", - "type": 2 - }, - { - "fid": 2, - "name": "badgeRevision", - "type": 10 - } - ], - "Balance": [ - { - "fid": 1, - "name": "currentPointsFixedPointDecimal", - "type": 11 - } - ], - "BalanceShortcut": [ - { - "fid": 1, - "name": "osPayment", - "type": 2 - }, - { - "fid": 2, - "name": "iconPosition", - "type": 8 - }, - { - "fid": 3, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 4, - "name": "iconText", - "type": 11 - }, - { - "fid": 5, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 6, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 7, - "name": "tsTargetId", - "type": 11 - }, - { - "fid": 8, - "name": "iconType", - "struct": "NZ0_EnumC12154b1" - }, - { - "fid": 9, - "name": "iconUrlDarkMode", - "type": 11 - }, - { - "fid": 10, - "name": "toolTip", - "struct": "Tooltip" - } - ], - "BalanceShortcutInfo": [ - { - "fid": 1, - "name": "balanceShortcuts", - "list": "BalanceShortcut" - }, - { - "fid": 2, - "name": "osPaymentFallbackShortcut", - "struct": "BalanceShortcut" - } - ], - "BalanceShortcutInfoV4": [ - { - "fid": 1, - "name": "compactShortcuts", - "list": "CompactShortcut" - }, - { - "fid": 2, - "name": "balanceShortcuts", - "list": "BalanceShortcut" - }, - { - "fid": 3, - "name": "defaultExpand", - "type": 2 - } - ], - "BankBranchInfo": [ - { - "fid": 1, - "name": "branchId", - "type": 11 - }, - { - "fid": 2, - "name": "branchCode", - "type": 11 - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "name2", - "type": 11 - } - ], - "BannerRequest": [ - { - "fid": 1, - "name": "test", - "type": 2 - }, - { - "fid": 2, - "name": "trigger", - "struct": "Uf_C14856C" - }, - { - "fid": 3, - "name": "ad", - "struct": "AdRequest" - }, - { - "fid": 4, - "name": "content", - "struct": "ContentRequest" - } - ], - "BannerResponse": [ - { - "fid": 1, - "name": "rid", - "type": 11 - }, - { - "fid": 2, - "name": "timestamp", - "type": 10 - }, - { - "fid": 3, - "name": "minInterval", - "type": 10 - }, - { - "fid": 4, - "name": "lang", - "type": 11 - }, - { - "fid": 5, - "name": "trigger", - "struct": "Uf_C14856C" - }, - { - "fid": 6, - "name": "payloads", - "list": "Uf_p" - } - ], - "Beacon": [ - { - "fid": 1, - "name": "hardwareId", - "type": 11 - } - ], - "BeaconBackgroundNotification": [ - { - "fid": 1, - "name": "actionInterval", - "type": 10 - }, - { - "fid": 2, - "name": "actionAndConditions", - "list": "qm_C34110c" - }, - { - "fid": 3, - "name": "actionDelay", - "type": 10 - }, - { - "fid": 4, - "name": "actionConditions" - } - ], - "BeaconData": [ - { - "fid": 1, - "name": "hwid", - "type": 11 - }, - { - "fid": 2, - "name": "rssi", - "type": 8 - }, - { - "fid": 3, - "name": "txPower", - "type": 8 - }, - { - "fid": 4, - "name": "scannedTimestampMs", - "type": 10 - } - ], - "BeaconLayerInfoAndActions": [ - { - "fid": 1, - "name": "pictureUrl", - "type": 11 - }, - { - "fid": 2, - "name": "label", - "type": 11 - }, - { - "fid": 3, - "name": "text", - "type": 11 - }, - { - "fid": 4, - "name": "actions", - "list": 11 - }, - { - "fid": 5, - "name": "showOrConditions", - "list": "qm_C34110c" - }, - { - "fid": 6, - "name": "showConditions" - }, - { - "fid": 7, - "name": "timeToHide", - "type": 10 - } - ], - "BeaconQueryResponse": [ - { - "fid": 2, - "name": "deprecated_actionUrls", - "list": 11 - }, - { - "fid": 3, - "name": "cacheTtl", - "type": 10 - }, - { - "fid": 4, - "name": "touchActions", - "struct": "BeaconTouchActions" - }, - { - "fid": 5, - "name": "layerInfoAndActions", - "struct": "BeaconLayerInfoAndActions" - }, - { - "fid": 6, - "name": "backgroundEnteringNotification", - "struct": "BeaconBackgroundNotification" - }, - { - "fid": 7, - "name": "backgroundLeavingNotification", - "struct": "BeaconBackgroundNotification" - }, - { - "fid": 8, - "name": "group", - "type": 11 - }, - { - "fid": 9, - "name": "major", - "type": 11 - }, - { - "fid": 10, - "name": "minor", - "type": 11 - }, - { - "fid": 11, - "name": "effectiveRange", - "type": 4 - }, - { - "fid": 12, - "name": "channelWhiteList", - "list": 11 - }, - { - "fid": 13, - "name": "actionId", - "type": 10 - }, - { - "fid": 14, - "name": "stayReportInterval", - "type": 10 - }, - { - "fid": 15, - "name": "leaveThresholdTime", - "type": 10 - }, - { - "fid": 17, - "name": "touchThreshold", - "type": 4 - }, - { - "fid": 18, - "name": "cutoffThreshold", - "type": 6 - }, - { - "fid": 19, - "name": "dataUserBots", - "list": "DataUserBot" - }, - { - "fid": 20, - "name": "deviceId", - "type": 11 - }, - { - "fid": 21, - "name": "deviceDisplayName", - "type": 11 - }, - { - "fid": 22, - "name": "botMid", - "type": 11 - }, - { - "fid": 23, - "name": "pop", - "type": 2 - } - ], - "BeaconTouchActions": [ - { - "fid": 1, - "name": "actions", - "list": 11 - } - ], - "BirthdayGiftAssociationVerifyRequest": [ - { - "fid": 1, - "name": "associationToken", - "type": 11 - } - ], - "BirthdayGiftAssociationVerifyResponse": [ - { - "fid": 1, - "name": "tokenStatus", - "struct": "Ob1_EnumC12638l" - }, - { - "fid": 2, - "name": "recipientUserMid", - "type": 11 - } - ], - "BleNotificationReceivedTrigger": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "characteristicUuid", - "type": 11 - } - ], - "BleProduct": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "psdiServiceUuid", - "type": 11 - }, - { - "fid": 3, - "name": "psdiCharacteristicUuid", - "type": 11 - }, - { - "fid": 4, - "name": "name", - "type": 11 - }, - { - "fid": 5, - "name": "profileImageLocation", - "type": 11 - }, - { - "fid": 6, - "name": "bondingRequired", - "type": 2 - } - ], - "Bot": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "basicSearchId", - "type": 11 - }, - { - "fid": 3, - "name": "region", - "type": 11 - }, - { - "fid": 4, - "name": "displayName", - "type": 11 - }, - { - "fid": 5, - "name": "pictureUrl", - "type": 11 - }, - { - "fid": 6, - "name": "brandType", - "struct": "og_EnumC32663d" - } - ], - "BotBlockDetail": [ - { - "fid": 3, - "name": "deletedFromBlockList", - "type": 2 - } - ], - "BotFriendDetail": [ - { - "fid": 1, - "name": "createdTime", - "type": 10 - }, - { - "fid": 4, - "name": "favoriteTime", - "type": 10 - }, - { - "fid": 6, - "name": "hidden", - "type": 2 - } - ], - "BotOaCallDetail": [ - { - "fid": 1, - "name": "oaCallUrl", - "type": 11 - } - ], - "BotTalkroomAds": [ - { - "fid": 1, - "name": "talkroomAdsEnabled", - "type": 2 - }, - { - "fid": 2, - "name": "botTalkroomAdsInventoryKeys", - "list": "BotTalkroomAdsInventoryKey" - }, - { - "fid": 3, - "name": "displayTalkroomAdsToMembershipUser", - "type": 2 - } - ], - "BotTalkroomAdsInventoryKey": [ - { - "fid": 1, - "name": "talkroomAdsPosition", - "struct": "Pb1_EnumC13093n0" - }, - { - "fid": 2, - "name": "talkroomAdsIosInventoryKey", - "type": 11 - }, - { - "fid": 3, - "name": "talkroomAdsAndroidInventoryKey", - "type": 11 - } - ], - "BrowsingHistory": [ - { - "fid": 1, - "name": "productSearchSummary", - "struct": "ProductSearchSummary" - }, - { - "fid": 2, - "name": "browsingTime", - "type": 10 - } - ], - "BuddyCautionNotice": [ - { - "fid": 1, - "name": "type", - "struct": "Pb1_EnumC13162s0" - } - ], - "BuddyCautionNoticeFromCMS": [ - { - "fid": 1, - "name": "visibility", - "struct": "Pb1_EnumC13148r0" - } - ], - "BuddyChatBar": [ - { - "fid": 1, - "name": "barItems", - "list": "Pb1_C13190u0" - } - ], - "BuddyDetail": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "memberCount", - "type": 10 - }, - { - "fid": 3, - "name": "onAir", - "type": 2 - }, - { - "fid": 4, - "name": "businessAccount", - "type": 2 - }, - { - "fid": 5, - "name": "addable", - "type": 2 - }, - { - "fid": 6, - "name": "acceptableContentTypes", - "set": 8 - }, - { - "fid": 7, - "name": "capableMyhome", - "type": 2 - }, - { - "fid": 8, - "name": "freePhoneCallable", - "type": 2 - }, - { - "fid": 9, - "name": "phoneNumberToDial", - "type": 11 - }, - { - "fid": 10, - "name": "needPermissionApproval", - "type": 2 - }, - { - "fid": 11, - "name": "channelId", - "type": 8 - }, - { - "fid": 12, - "name": "channelProviderName", - "type": 11 - }, - { - "fid": 13, - "name": "iconType", - "type": 8 - }, - { - "fid": 14, - "name": "botType", - "struct": "BotType" - }, - { - "fid": 15, - "name": "showRichMenu", - "type": 2 - }, - { - "fid": 16, - "name": "richMenuRevision", - "type": 10 - }, - { - "fid": 17, - "name": "onAirLabel", - "struct": "Pb1_EnumC13260z0" - }, - { - "fid": 18, - "name": "useTheme", - "type": 2 - }, - { - "fid": 19, - "name": "themeId", - "type": 11 - }, - { - "fid": 20, - "name": "useBar", - "type": 2 - }, - { - "fid": 21, - "name": "barRevision", - "type": 10 - }, - { - "fid": 22, - "name": "useBackground", - "type": 2 - }, - { - "fid": 23, - "name": "backgroundId", - "type": 11 - }, - { - "fid": 24, - "name": "statusBarEnabled", - "type": 2 - }, - { - "fid": 25, - "name": "statusBarRevision", - "type": 10 - }, - { - "fid": 26, - "name": "searchId", - "type": 11 - }, - { - "fid": 27, - "name": "onAirVersion", - "type": 8 - }, - { - "fid": 28, - "name": "blockable", - "type": 2 - }, - { - "fid": 29, - "name": "botActiveStatus", - "struct": "Pb1_EnumC13037j0" - }, - { - "fid": 30, - "name": "membershipEnabled", - "type": 2 - }, - { - "fid": 31, - "name": "legalCountryCode", - "type": 11 - }, - { - "fid": 32, - "name": "botTalkroomAds", - "struct": "BotTalkroomAds" - }, - { - "fid": 33, - "name": "botOaCallDetail", - "struct": "BotOaCallDetail" - }, - { - "fid": 34, - "name": "aiChatBot", - "type": 2 - }, - { - "fid": 35, - "name": "supportSpeechToText", - "type": 2 - }, - { - "fid": 36, - "name": "voomEnabled", - "type": 2 - }, - { - "fid": 37, - "name": "buddyCautionNoticeFromCMS", - "struct": "BuddyCautionNoticeFromCMS" - }, - { - "fid": 38, - "name": "region", - "type": 11 - } - ], - "BuddyDetailWithPersonal": [ - { - "fid": 1, - "name": "buddyDetail", - "struct": "BuddyDetail" - }, - { - "fid": 2, - "name": "personalDetail", - "struct": "BuddyPersonalDetail" - } - ], - "BuddyLive": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "onLive", - "type": 2 - }, - { - "fid": 3, - "name": "title", - "type": 11 - }, - { - "fid": 4, - "name": "viewerCount", - "type": 10 - }, - { - "fid": 5, - "name": "liveUrl", - "type": 11 - } - ], - "BuddyOnAir": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "freshnessLifetime", - "type": 10 - }, - { - "fid": 4, - "name": "onAirId", - "type": 11 - }, - { - "fid": 5, - "name": "onAir", - "type": 2 - }, - { - "fid": 11, - "name": "text", - "type": 11 - }, - { - "fid": 12, - "name": "viewerCount", - "type": 10 - }, - { - "fid": 13, - "name": "targetCount", - "type": 10 - }, - { - "fid": 14, - "name": "livePlayTime", - "type": 10 - }, - { - "fid": 15, - "name": "screenAspectRate", - "type": 11 - }, - { - "fid": 31, - "name": "onAirType", - "struct": "Pb1_A0" - }, - { - "fid": 32, - "name": "onAirUrls", - "struct": "BuddyOnAirUrls" - }, - { - "fid": 33, - "name": "aspectRatioOfSource", - "type": 11 - }, - { - "fid": 41, - "name": "useFadingOut", - "type": 2 - }, - { - "fid": 42, - "name": "fadingOutIn", - "type": 10 - }, - { - "fid": 43, - "name": "urlAfterFadingOut", - "type": 11 - }, - { - "fid": 44, - "name": "labelAfterFadingOut", - "type": 11 - }, - { - "fid": 51, - "name": "useLowerBanner", - "type": 2 - }, - { - "fid": 52, - "name": "lowerBannerUrl", - "type": 11 - }, - { - "fid": 53, - "name": "lowerBannerLabel", - "type": 11 - } - ], - "BuddyOnAirUrls": [ - { - "fid": 1, - "name": "hls", - "map": 11, - "key": 11 - }, - { - "fid": 2, - "name": "smoothStreaming", - "map": 11, - "key": 11 - } - ], - "BuddyPersonalDetail": [ - { - "fid": 1, - "name": "richMenuId", - "type": 11 - }, - { - "fid": 2, - "name": "statusBarRevision", - "type": 10 - }, - { - "fid": 3, - "name": "buddyCautionNotice", - "struct": "BuddyCautionNotice" - } - ], - "BuddyRichMenuChatBarItem": [ - { - "fid": 1, - "name": "label", - "type": 11 - }, - { - "fid": 2, - "name": "body", - "type": 11 - }, - { - "fid": 3, - "name": "selected", - "type": 2 - } - ], - "BuddySearchResult": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "pictureStatus", - "type": 11 - }, - { - "fid": 4, - "name": "picturePath", - "type": 11 - }, - { - "fid": 5, - "name": "statusMessage", - "type": 11 - }, - { - "fid": 6, - "name": "businessAccount", - "type": 2 - }, - { - "fid": 7, - "name": "iconType", - "type": 8 - }, - { - "fid": 8, - "name": "botType", - "struct": "BotType" - } - ], - "BuddyStatusBar": [ - { - "fid": 1, - "name": "label", - "type": 11 - }, - { - "fid": 2, - "name": "displayType", - "struct": "Pb1_EnumC12926b1" - }, - { - "fid": 3, - "name": "title", - "type": 11 - }, - { - "fid": 4, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 5, - "name": "linkUrl", - "type": 11 - } - ], - "BuddyWebChatBarItem": [ - { - "fid": 1, - "name": "label", - "type": 11 - }, - { - "fid": 2, - "name": "url", - "type": 11 - } - ], - "BuddyWidget": [ - { - "fid": 1, - "name": "icon", - "type": 11 - }, - { - "fid": 2, - "name": "label", - "type": 11 - }, - { - "fid": 3, - "name": "url", - "type": 11 - } - ], - "BuddyWidgetListCharBarItem": [ - { - "fid": 1, - "name": "label", - "type": 11 - }, - { - "fid": 2, - "name": "widgets", - "list": "BuddyWidget" - }, - { - "fid": 3, - "name": "selected", - "type": 2 - } - ], - "BulkFollowRequest": [ - { - "fid": 1, - "name": "followTargetMids", - "set": 11 - }, - { - "fid": 2, - "name": "unfollowTargetMids", - "set": 11 - }, - { - "fid": 3, - "name": "hasNext", - "type": 2 - } - ], - "BulkGetRequest": [ - { - "fid": 1, - "name": "requests", - "set": "GetRequest" - } - ], - "BulkGetResponse": [ - { - "fid": 1, - "name": "values", - "map": "t80_g", - "key": 11 - } - ], - "BulkSetRequest": [ - { - "fid": 1, - "name": "requests", - "set": "SetRequest" - } - ], - "BulkSetResponse": [ - { - "fid": 1, - "name": "values", - "map": "t80_l", - "key": 11 - } - ], - "Button": [ - { - "fid": 1, - "name": "content", - "struct": "ButtonContent" - }, - { - "fid": 2, - "name": "style", - "struct": "ButtonStyle" - } - ], - "ButtonStyle": [ - { - "fid": 1, - "name": "textColorHexCode", - "type": 11 - }, - { - "fid": 2, - "name": "bgColor", - "struct": "ButtonBGColor" - } - ], - "BuyMustbuyRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "serialNumber", - "type": 11 - } - ], - "CallHost": [ - { - "fid": 1, - "name": "host", - "type": 11 - }, - { - "fid": 2, - "name": "port", - "type": 8 - }, - { - "fid": 3, - "name": "zone", - "type": 11 - } - ], - "CallRoute": [ - { - "fid": 1, - "name": "fromToken", - "type": 11 - }, - { - "fid": 2, - "name": "callFlowType", - "struct": "Pb1_EnumC13010h1" - }, - { - "fid": 3, - "name": "voipAddress", - "type": 11 - }, - { - "fid": 4, - "name": "voipUdpPort", - "type": 8 - }, - { - "fid": 5, - "name": "voipTcpPort", - "type": 8 - }, - { - "fid": 6, - "name": "fromZone", - "type": 11 - }, - { - "fid": 7, - "name": "toZone", - "type": 11 - }, - { - "fid": 8, - "name": "fakeCall", - "type": 2 - }, - { - "fid": 9, - "name": "ringbackTone", - "type": 11 - }, - { - "fid": 10, - "name": "toMid", - "type": 11 - }, - { - "fid": 11, - "name": "tunneling", - "type": 11 - }, - { - "fid": 12, - "name": "commParam", - "type": 11 - }, - { - "fid": 13, - "name": "stid", - "type": 11 - }, - { - "fid": 14, - "name": "encFromMid", - "type": 11 - }, - { - "fid": 15, - "name": "encToMid", - "type": 11 - }, - { - "fid": 16, - "name": "switchableToVideo", - "type": 2 - }, - { - "fid": 17, - "name": "voipAddress6", - "type": 11 - }, - { - "fid": 18, - "name": "w2pGw", - "type": 11 - }, - { - "fid": 19, - "name": "drCall", - "type": 2 - }, - { - "fid": 20, - "name": "stnpk", - "type": 11 - } - ], - "Callback": [ - { - "fid": 1, - "name": "impEventUrl", - "type": 11 - }, - { - "fid": 2, - "name": "clickEventUrl", - "type": 11 - }, - { - "fid": 3, - "name": "muteEventUrl", - "type": 11 - }, - { - "fid": 4, - "name": "upvoteEventUrl", - "type": 11 - }, - { - "fid": 5, - "name": "downvoteEventUrl", - "type": 11 - }, - { - "fid": 6, - "name": "bounceEventUrl", - "type": 11 - }, - { - "fid": 7, - "name": "undeliveredEventUrl", - "type": 11 - } - ], - "CampaignContent": [ - { - "fid": 1, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 2, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 3, - "name": "iconDisplayRule", - "struct": "IconDisplayRule" - }, - { - "fid": 4, - "name": "animationEffectContent", - "struct": "AnimationEffectContent" - } - ], - "CampaignProperty": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "type": 11 - }, - { - "fid": 4, - "name": "headerContent", - "struct": "HeaderContent" - }, - { - "fid": 5, - "name": "campaignContent", - "struct": "CampaignContent" - } - ], - "CanCreateCombinationStickerRequest": [ - { - "fid": 1, - "name": "packageIds", - "set": 11 - } - ], - "CanCreateCombinationStickerResponse": [ - { - "fid": 1, - "name": "canCreate", - "type": 2 - }, - { - "fid": 2, - "name": "usablePackageIds", - "set": 11 - } - ], - "CancelChatInvitationRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetUserMids", - "set": 11 - } - ], - "CancelPaakAuthRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "CancelPaakAuthenticationRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "CancelPinCodeRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "CancelReactionRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "messageId", - "type": 10 - } - ], - "CancelToSpeakRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "Candidate": [ - { - "fid": 1, - "name": "type", - "struct": "zR0_EnumC40579d" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "itemId", - "type": 11 - } - ], - "Category": [ - { - "fid": 1, - "name": "id", - "type": 8 - }, - { - "fid": 2, - "name": "name", - "type": 11 - } - ], - "CategoryName": [ - { - "fid": 1, - "name": "categoryId", - "type": 8 - }, - { - "fid": 2, - "name": "names", - "map": 11, - "key": 11 - } - ], - "ChangeSubscriptionRequest": [ - { - "fid": 1, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 2, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 3, - "name": "storeCode", - "struct": "Ob1_K1" - } - ], - "ChangeSubscriptionResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_M1" - }, - { - "fid": 2, - "name": "orderId", - "type": 11 - }, - { - "fid": 3, - "name": "confirmUrl", - "type": 11 - } - ], - "ChannelContext": [ - { - "fid": 1, - "name": "channelName", - "type": 11 - } - ], - "ChannelDomain": [ - { - "fid": 1, - "name": "host", - "type": 11 - }, - { - "fid": 2, - "name": "removed", - "type": 2 - } - ], - "ChannelDomains": [ - { - "fid": 1, - "name": "channelDomains", - "list": "ChannelDomain" - }, - { - "fid": 2, - "name": "revision", - "type": 10 - } - ], - "ChannelIdWithLastUpdated": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - }, - { - "fid": 2, - "name": "lastUpdated", - "type": 10 - } - ], - "ChannelInfo": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "entryPageUrl", - "type": 11 - }, - { - "fid": 5, - "name": "descriptionText", - "type": 11 - }, - { - "fid": 6, - "name": "provider", - "struct": "ChannelProvider" - }, - { - "fid": 7, - "name": "publicType", - "struct": "Pb1_P6" - }, - { - "fid": 8, - "name": "iconImage", - "type": 11 - }, - { - "fid": 9, - "name": "permissions", - "list": 11 - }, - { - "fid": 11, - "name": "iconThumbnailImage", - "type": 11 - }, - { - "fid": 12, - "name": "channelConfigurations", - "list": 8 - }, - { - "fid": 13, - "name": "lcsAllApiUsable", - "type": 2 - }, - { - "fid": 14, - "name": "allowedPermissions", - "set": "Pb1_EnumC12997g2" - }, - { - "fid": 15, - "name": "channelDomains", - "list": "ChannelDomain" - }, - { - "fid": 16, - "name": "updatedTimestamp", - "type": 10 - }, - { - "fid": 17, - "name": "featureLicenses", - "set": "Pb1_EnumC12941c2" - } - ], - "ChannelNotificationSetting": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "notificationReceivable", - "type": 2 - }, - { - "fid": 4, - "name": "messageReceivable", - "type": 2 - }, - { - "fid": 5, - "name": "showDefault", - "type": 2 - } - ], - "ChannelProvider": [ - { - "fid": 1, - "name": "name", - "type": 11 - }, - { - "fid": 2, - "name": "certified", - "type": 2 - } - ], - "ChannelSettings": [ - { - "fid": 1, - "name": "unapprovedMessageReceivable", - "type": 2 - } - ], - "ChannelToken": [ - { - "fid": 1, - "name": "token", - "type": 11 - }, - { - "fid": 2, - "name": "obsToken", - "type": 11 - }, - { - "fid": 3, - "name": "expiration", - "type": 10 - }, - { - "fid": 4, - "name": "refreshToken", - "type": 11 - }, - { - "fid": 5, - "name": "channelAccessToken", - "type": 11 - } - ], - "Chat": [ - { - "fid": 1, - "name": "type", - "struct": "Pb1_Z2" - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "createdTime", - "type": 10 - }, - { - "fid": 4, - "name": "notificationDisabled", - "type": 2 - }, - { - "fid": 5, - "name": "favoriteTimestamp", - "type": 10 - }, - { - "fid": 6, - "name": "chatName", - "type": 11 - }, - { - "fid": 7, - "name": "picturePath", - "type": 11 - }, - { - "fid": 8, - "name": "extra", - "struct": "Pb1_C13208v4" - } - ], - "ChatEffectMeta": [ - { - "fid": 1, - "name": "contentId", - "type": 10 - }, - { - "fid": 2, - "name": "category", - "struct": "Pb1_Q2" - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "defaultContent", - "struct": "ChatEffectMetaContent" - }, - { - "fid": 5, - "name": "optionalContents", - "map": "ChatEffectMetaContent", - "key": 8 - }, - { - "fid": 6, - "name": "keywords", - "set": 11 - }, - { - "fid": 7, - "name": "beginTimeMillis", - "type": 10 - }, - { - "fid": 8, - "name": "endTimeMillis", - "type": 10 - }, - { - "fid": 9, - "name": "createdTimeMillis", - "type": 10 - }, - { - "fid": 10, - "name": "updatedTimeMillis", - "type": 10 - }, - { - "fid": 11, - "name": "contentMetadataTag", - "type": 11 - } - ], - "ChatEffectMetaContent": [ - { - "fid": 1, - "name": "url", - "type": 11 - }, - { - "fid": 2, - "name": "checksum", - "type": 11 - } - ], - "ChatRoomAnnouncement": [ - { - "fid": 1, - "name": "announcementSeq", - "type": 10 - }, - { - "fid": 2, - "name": "type", - "struct": "Pb1_X2" - }, - { - "fid": 3, - "name": "contents", - "struct": "ChatRoomAnnouncementContents" - }, - { - "fid": 4, - "name": "creatorMid", - "type": 11 - }, - { - "fid": 5, - "name": "createdTime", - "type": 10 - }, - { - "fid": 6, - "name": "deletePermission", - "struct": "Pb1_W2" - } - ], - "ChatRoomAnnouncementContentMetadata": [ - { - "fid": 1, - "name": "replace", - "type": 11 - }, - { - "fid": 2, - "name": "sticonOwnership", - "type": 11 - }, - { - "fid": 3, - "name": "postNotificationMetadata", - "type": 11 - } - ], - "ChatRoomAnnouncementContents": [ - { - "fid": 1, - "name": "displayFields", - "type": 8 - }, - { - "fid": 2, - "name": "text", - "type": 11 - }, - { - "fid": 3, - "name": "link", - "type": 11 - }, - { - "fid": 4, - "name": "thumbnail", - "type": 11 - }, - { - "fid": 5, - "name": "contentMetadata", - "struct": "ChatRoomAnnouncementContentMetadata" - } - ], - "ChatRoomBGM": [ - { - "fid": 1, - "name": "creatorMid", - "type": 11 - }, - { - "fid": 2, - "name": "createdTime", - "type": 10 - }, - { - "fid": 3, - "name": "chatRoomBGMInfo", - "type": 11 - } - ], - "Chatapp": [ - { - "fid": 1, - "name": "chatappId", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "icon", - "type": 11 - }, - { - "fid": 4, - "name": "url", - "type": 11 - }, - { - "fid": 5, - "name": "availableChatTypes", - "list": 8 - } - ], - "ChatroomPopup": [ - { - "fid": 1, - "name": "imageObsHash", - "type": 11 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "content", - "type": 11 - }, - { - "fid": 4, - "name": "targetRoles", - "set": 8 - }, - { - "fid": 5, - "name": "button", - "struct": "Button" - }, - { - "fid": 6, - "name": "type", - "struct": "ChatroomPopupType" - }, - { - "fid": 7, - "name": "animatedImage", - "type": 2 - }, - { - "fid": 8, - "name": "targetChatType", - "struct": "TargetChatType" - }, - { - "fid": 9, - "name": "targetChats", - "struct": "TargetChats" - }, - { - "fid": 10, - "name": "targetUserType", - "struct": "TargetUserType" - }, - { - "fid": 11, - "name": "targetUsers", - "struct": "TargetUsers" - } - ], - "I80_C26396d": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "CheckEmailAssignedResponse": [ - { - "fid": 1, - "name": "sameAccountFromPhone", - "type": 2 - } - ], - "CheckIfEncryptedE2EEKeyReceivedRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "secureChannelData", - "struct": "h80_t" - } - ], - "CheckIfEncryptedE2EEKeyReceivedResponse": [ - { - "fid": 1, - "name": "nonce", - "type": 11 - }, - { - "fid": 2, - "name": "encryptedSecureChannelPayload", - "struct": "h80_Z70_a" - }, - { - "fid": 3, - "name": "userProfile", - "struct": "h80_V70_a" - }, - { - "fid": 4, - "name": "appTypeDifferentFromPrevDevice", - "type": 2 - }, - { - "fid": 5, - "name": "e2eeKeyBackupServiceConfig", - "type": 2 - } - ], - "I80_C26400f": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "I80_C26402g": [ - { - "fid": 1, - "name": "verified", - "type": 2 - } - ], - "CheckIfPhonePinCodeMsgVerifiedRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - } - ], - "CheckIfPhonePinCodeMsgVerifiedResponse": [ - { - "fid": 1, - "name": "accountExist", - "type": 2 - }, - { - "fid": 2, - "name": "sameUdidFromAccount", - "type": 2 - }, - { - "fid": 3, - "name": "allowedToRegister", - "type": 2 - }, - { - "fid": 11, - "name": "userProfile", - "struct": "UserProfile" - } - ], - "CheckJoinCodeRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "joinCode", - "type": 11 - } - ], - "CheckJoinCodeResponse": [ - { - "fid": 1, - "name": "joinToken", - "type": 11 - } - ], - "CheckOperationResult": [ - { - "fid": 1, - "name": "tradable", - "type": 2 - }, - { - "fid": 2, - "name": "reason", - "type": 11 - }, - { - "fid": 3, - "name": "detailMessage", - "type": 11 - } - ], - "CheckUserAgeAfterApprovalWithDocomoV2Request": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - }, - { - "fid": 2, - "name": "agprm", - "type": 11 - } - ], - "CheckUserAgeAfterApprovalWithDocomoV2Response": [ - { - "fid": 1, - "name": "userAgeType", - "struct": "Pb1_gd" - } - ], - "CheckUserAgeWithDocomoV2Request": [ - { - "fid": 1, - "name": "authCode", - "type": 11 - } - ], - "CheckUserAgeWithDocomoV2Response": [ - { - "fid": 1, - "name": "responseType", - "struct": "Pb1_EnumC12970e3" - }, - { - "fid": 2, - "name": "userAgeType", - "struct": "Pb1_gd" - }, - { - "fid": 3, - "name": "approvalRedirectUrl", - "type": 11 - }, - { - "fid": 4, - "name": "accessToken", - "type": 11 - } - ], - "ClientNetworkStatus": [ - { - "fid": 1, - "name": "networkType", - "struct": "Pb1_EnumC12998g3" - }, - { - "fid": 2, - "name": "wifiSignals", - "list": "WifiSignal" - } - ], - "CodeValue": [ - { - "fid": 1, - "name": "code", - "type": 11 - } - ], - "Coin": [ - { - "fid": 1, - "name": "freeCoinBalance", - "type": 8 - }, - { - "fid": 2, - "name": "payedCoinBalance", - "type": 8 - }, - { - "fid": 3, - "name": "totalCoinBalance", - "type": 8 - }, - { - "fid": 4, - "name": "rewardCoinBalance", - "type": 8 - } - ], - "CoinHistory": [ - { - "fid": 1, - "name": "payDate", - "type": 10 - }, - { - "fid": 2, - "name": "coinBalance", - "type": 8 - }, - { - "fid": 3, - "name": "coin", - "type": 8 - }, - { - "fid": 4, - "name": "price", - "type": 11 - }, - { - "fid": 5, - "name": "title", - "type": 11 - }, - { - "fid": 6, - "name": "refund", - "type": 2 - }, - { - "fid": 7, - "name": "paySeq", - "type": 11 - }, - { - "fid": 8, - "name": "currency", - "type": 11 - }, - { - "fid": 9, - "name": "currencySign", - "type": 11 - }, - { - "fid": 10, - "name": "displayPrice", - "type": 11 - }, - { - "fid": 11, - "name": "payload", - "struct": "CoinPayLoad" - }, - { - "fid": 12, - "name": "channelId", - "type": 11 - } - ], - "CoinPayLoad": [ - { - "fid": 1, - "name": "payCoin", - "type": 8 - }, - { - "fid": 2, - "name": "freeCoin", - "type": 8 - }, - { - "fid": 3, - "name": "type", - "struct": "PayloadType" - }, - { - "fid": 4, - "name": "rewardCoin", - "type": 8 - } - ], - "CoinProductItem": [ - { - "fid": 1, - "name": "itemId", - "type": 11 - }, - { - "fid": 2, - "name": "coin", - "type": 8 - }, - { - "fid": 3, - "name": "freeCoin", - "type": 8 - }, - { - "fid": 5, - "name": "currency", - "type": 11 - }, - { - "fid": 6, - "name": "price", - "type": 11 - }, - { - "fid": 7, - "name": "displayPrice", - "type": 11 - }, - { - "fid": 8, - "name": "name", - "type": 11 - }, - { - "fid": 9, - "name": "desc", - "type": 11 - } - ], - "CoinPurchaseReservation": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "country", - "type": 11 - }, - { - "fid": 3, - "name": "currency", - "type": 11 - }, - { - "fid": 4, - "name": "price", - "type": 11 - }, - { - "fid": 5, - "name": "appStoreCode", - "struct": "jO0_EnumC27533B" - }, - { - "fid": 6, - "name": "language", - "type": 11 - }, - { - "fid": 7, - "name": "pgCode", - "struct": "jO0_EnumC27559z" - }, - { - "fid": 8, - "name": "redirectUrl", - "type": 11 - } - ], - "Collection": [ - { - "fid": 1, - "name": "collectionId", - "type": 11 - }, - { - "fid": 2, - "name": "items", - "list": "CollectionItem" - }, - { - "fid": 3, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 4, - "name": "createdTimeMillis", - "type": 10 - }, - { - "fid": 5, - "name": "updatedTimeMillis", - "type": 10 - } - ], - "CollectionItem": [ - { - "fid": 1, - "name": "itemId", - "type": 11 - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "displayData", - "struct": "Ob1_E" - }, - { - "fid": 4, - "name": "sortId", - "type": 8 - } - ], - "CombinationStickerMetadata": [ - { - "fid": 1, - "name": "version", - "type": 10 - }, - { - "fid": 2, - "name": "canvasWidth", - "type": 4 - }, - { - "fid": 3, - "name": "canvasHeight", - "type": 4 - }, - { - "fid": 4, - "name": "stickerLayouts", - "list": "StickerLayout" - } - ], - "CombinationStickerStickerData": [ - { - "fid": 1, - "name": "packageId", - "type": 11 - }, - { - "fid": 2, - "name": "stickerId", - "type": 11 - }, - { - "fid": 3, - "name": "version", - "type": 10 - } - ], - "CompactShortcut": [ - { - "fid": 1, - "name": "iconPosition", - "type": 8 - }, - { - "fid": 2, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 3, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 4, - "name": "iconType", - "struct": "NZ0_EnumC12154b1" - }, - { - "fid": 5, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 6, - "name": "tsTargetId", - "type": 11 - } - ], - "Configurations": [ - { - "fid": 1, - "name": "revision", - "type": 10 - }, - { - "fid": 2, - "name": "configMap", - "map": 11, - "key": 11 - } - ], - "ConfigurationsParams": [ - { - "fid": 1, - "name": "regionOfUsim", - "type": 11 - }, - { - "fid": 2, - "name": "regionOfTelephone", - "type": 11 - }, - { - "fid": 3, - "name": "regionOfLocale", - "type": 11 - }, - { - "fid": 4, - "name": "carrier", - "type": 11 - } - ], - "ConnectDeviceOperation": [ - { - "fid": 1, - "name": "connectionTimeoutMillis", - "type": 10 - } - ], - "ConnectEapAccountRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "Contact": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "createdTime", - "type": 10 - }, - { - "fid": 10, - "name": "type", - "struct": "ContactType" - }, - { - "fid": 11, - "name": "status", - "struct": "ContactStatus" - }, - { - "fid": 21, - "name": "relation", - "struct": "Pb1_EnumC13151r3" - }, - { - "fid": 22, - "name": "displayName", - "type": 11 - }, - { - "fid": 23, - "name": "phoneticName", - "type": 11 - }, - { - "fid": 24, - "name": "pictureStatus", - "type": 11 - }, - { - "fid": 25, - "name": "thumbnailUrl", - "type": 11 - }, - { - "fid": 26, - "name": "statusMessage", - "type": 11 - }, - { - "fid": 27, - "name": "displayNameOverridden", - "type": 11 - }, - { - "fid": 28, - "name": "favoriteTime", - "type": 10 - }, - { - "fid": 31, - "name": "capableVoiceCall", - "type": 2 - }, - { - "fid": 32, - "name": "capableVideoCall", - "type": 2 - }, - { - "fid": 33, - "name": "capableMyhome", - "type": 2 - }, - { - "fid": 34, - "name": "capableBuddy", - "type": 2 - }, - { - "fid": 35, - "name": "attributes", - "type": 8 - }, - { - "fid": 36, - "name": "settings", - "type": 10 - }, - { - "fid": 37, - "name": "picturePath", - "type": 11 - }, - { - "fid": 38, - "name": "recommendParams", - "type": 11 - }, - { - "fid": 39, - "name": "friendRequestStatus", - "struct": "FriendRequestStatus" - }, - { - "fid": 40, - "name": "musicProfile", - "type": 11 - }, - { - "fid": 42, - "name": "videoProfile", - "type": 11 - }, - { - "fid": 43, - "name": "statusMessageContentMetadata", - "map": 11, - "key": 11 - }, - { - "fid": 44, - "name": "avatarProfile", - "struct": "AvatarProfile" - }, - { - "fid": 45, - "name": "friendRingtone", - "type": 11 - }, - { - "fid": 46, - "name": "friendRingbackTone", - "type": 11 - }, - { - "fid": 47, - "name": "nftProfile", - "type": 2 - }, - { - "fid": 48, - "name": "pictureSource", - "struct": "Pb1_N6" - }, - { - "fid": 49, - "name": "profileId", - "type": 11 - } - ], - "ContactCalendarEvent": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "state", - "struct": "Pb1_EnumC13082m3" - }, - { - "fid": 3, - "name": "year", - "type": 8 - }, - { - "fid": 4, - "name": "month", - "type": 8 - }, - { - "fid": 5, - "name": "day", - "type": 8 - } - ], - "ContactCalendarEvents": [ - { - "fid": 1, - "name": "events", - "key": 8 - } - ], - "ContactModification": [ - { - "fid": 1, - "name": "type", - "struct": "Pb1_EnumC13029i6" - }, - { - "fid": 2, - "name": "luid", - "type": 11 - }, - { - "fid": 11, - "name": "phones", - "list": 11 - }, - { - "fid": 12, - "name": "emails", - "list": 11 - }, - { - "fid": 13, - "name": "userids", - "list": 11 - }, - { - "fid": 14, - "name": "mobileContactName", - "type": 11 - }, - { - "fid": 15, - "name": "phoneticName", - "type": 11 - } - ], - "ContactRegistration": [ - { - "fid": 1, - "name": "contact", - "struct": "Contact" - }, - { - "fid": 10, - "name": "luid", - "type": 11 - }, - { - "fid": 11, - "name": "contactType", - "struct": "ContactType" - }, - { - "fid": 12, - "name": "contactKey", - "type": 11 - } - ], - "Content": [ - { - "fid": 1, - "name": "title", - "type": 11 - }, - { - "fid": 2, - "name": "desc", - "type": 11 - }, - { - "fid": 3, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 4, - "name": "fallbackUrl", - "type": 11 - }, - { - "fid": 5, - "name": "badge", - "struct": "Uf_C14864f" - }, - { - "fid": 6, - "name": "image", - "struct": "Image" - }, - { - "fid": 7, - "name": "button", - "struct": "ActionButton" - }, - { - "fid": 8, - "name": "callback", - "struct": "Callback" - }, - { - "fid": 9, - "name": "noBidCallback", - "struct": "NoBidCallback" - }, - { - "fid": 10, - "name": "ttl", - "type": 10 - }, - { - "fid": 11, - "name": "muteSupported", - "type": 2 - }, - { - "fid": 12, - "name": "voteSupported", - "type": 2 - }, - { - "fid": 13, - "name": "priority", - "struct": "Priority" - } - ], - "ContentRequest": [ - { - "fid": 1, - "name": "os", - "struct": "Uf_EnumC14873o" - }, - { - "fid": 2, - "name": "appv", - "type": 11 - }, - { - "fid": 3, - "name": "lineAcceptableLanguage", - "type": 11 - }, - { - "fid": 4, - "name": "countryCode", - "type": 11 - } - ], - "CountryCode": [ - { - "fid": 1, - "name": "code", - "type": 11 - } - ], - "CreateChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "type", - "struct": "Pb1_Z2" - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "targetUserMids", - "set": 11 - }, - { - "fid": 5, - "name": "picturePath", - "type": 11 - } - ], - "CreateChatResponse": [ - { - "fid": 1, - "name": "chat", - "struct": "Chat" - } - ], - "CreateCollectionForUserRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - } - ], - "CreateCollectionForUserResponse": [ - { - "fid": 1, - "name": "collection", - "struct": "Collection" - } - ], - "CreateCombinationStickerRequest": [ - { - "fid": 1, - "name": "metadata", - "struct": "CombinationStickerMetadata" - }, - { - "fid": 2, - "name": "stickers", - "list": "CombinationStickerStickerData" - }, - { - "fid": 3, - "name": "idOfPreviousVersionOfCombinationSticker", - "type": 11 - } - ], - "CreateCombinationStickerResponse": [ - { - "fid": 1, - "name": "id", - "type": 11 - } - ], - "CreateGroupCallUrlRequest": [ - { - "fid": 1, - "name": "title", - "type": 11 - } - ], - "CreateGroupCallUrlResponse": [ - { - "fid": 1, - "name": "url", - "struct": "GroupCallUrl" - } - ], - "CreateMultiProfileRequest": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - } - ], - "CreateMultiProfileResponse": [ - { - "fid": 1, - "name": "profileId", - "type": 11 - } - ], - "I80_C26406i": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "CreateSessionResponse": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "CreateSquareChatAnnouncementRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatAnnouncement", - "struct": "SquareChatAnnouncement" - } - ], - "CreateSquareChatAnnouncementResponse": [ - { - "fid": 1, - "name": "announcement", - "struct": "SquareChatAnnouncement" - } - ], - "CreateSquareChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 3, - "name": "squareMemberMids", - "list": 11 - } - ], - "CreateSquareChatResponse": [ - { - "fid": 1, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 2, - "name": "squareChatStatus", - "struct": "SquareChatStatus" - }, - { - "fid": 3, - "name": "squareChatMember", - "struct": "SquareChatMember" - }, - { - "fid": 4, - "name": "squareChatFeatureSet", - "struct": "SquareChatFeatureSet" - } - ], - "CreateSquareRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "square", - "struct": "Square" - }, - { - "fid": 3, - "name": "creator", - "struct": "SquareMember" - } - ], - "CreateSquareResponse": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "creator", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "authority", - "struct": "SquareAuthority" - }, - { - "fid": 4, - "name": "status", - "struct": "SquareStatus" - }, - { - "fid": 5, - "name": "featureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - }, - { - "fid": 7, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 8, - "name": "squareChatStatus", - "struct": "SquareChatStatus" - }, - { - "fid": 9, - "name": "squareChatMember", - "struct": "SquareChatMember" - }, - { - "fid": 10, - "name": "squareChatFeatureSet", - "struct": "SquareChatFeatureSet" - } - ], - "CurrencyProperty": [ - { - "fid": 1, - "name": "code", - "type": 11 - }, - { - "fid": 2, - "name": "symbol", - "type": 11 - }, - { - "fid": 3, - "name": "position", - "struct": "NZ0_EnumC12197q" - }, - { - "fid": 4, - "name": "scale", - "type": 8 - } - ], - "CustomBadgeLabel": [ - { - "fid": 1, - "name": "text", - "type": 11 - }, - { - "fid": 2, - "name": "backgroundColorCode", - "type": 11 - } - ], - "CustomColor": [ - { - "fid": 1, - "name": "hexColorCode", - "type": 11 - } - ], - "DataRetention": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "productRegion", - "type": 11 - }, - { - "fid": 3, - "name": "productType", - "struct": "fN0_EnumC24466B" - }, - { - "fid": 4, - "name": "inDataRetention", - "type": 2 - }, - { - "fid": 5, - "name": "dataRetentionEndTime", - "type": 10 - } - ], - "DataUserBot": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 4, - "name": "placeName", - "type": 11 - } - ], - "DeleteGroupCallUrlRequest": [ - { - "fid": 1, - "name": "urlId", - "type": 11 - } - ], - "DeleteMultiProfileRequest": [ - { - "fid": 1, - "name": "profileId", - "type": 11 - } - ], - "DeleteOtherFromChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetUserMids", - "set": 11 - } - ], - "DeleteSafetyStatusRequest": [ - { - "fid": 1, - "name": "disasterId", - "type": 11 - } - ], - "DeleteSelfFromChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "lastSeenMessageDeliveredTime", - "type": 10 - }, - { - "fid": 4, - "name": "lastSeenMessageId", - "type": 11 - }, - { - "fid": 5, - "name": "lastMessageDeliveredTime", - "type": 10 - }, - { - "fid": 6, - "name": "lastMessageId", - "type": 11 - } - ], - "DeleteSquareChatAnnouncementRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "announcementSeq", - "type": 10 - } - ], - "DeleteSquareChatRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "revision", - "type": 10 - } - ], - "DeleteSquareRequest": [ - { - "fid": 2, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "revision", - "type": 10 - } - ], - "DestinationLIFFRequest": [ - { - "fid": 1, - "name": "originalUrl", - "type": 11 - } - ], - "DestinationLIFFResponse": [ - { - "fid": 1, - "name": "destinationUrl", - "type": 11 - } - ], - "DestroyMessageRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 4, - "name": "messageId", - "type": 11 - }, - { - "fid": 5, - "name": "threadMid", - "type": 11 - } - ], - "DestroyMessagesRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 4, - "name": "messageIds", - "set": 11 - }, - { - "fid": 5, - "name": "threadMid", - "type": 11 - } - ], - "DetermineMediaMessageFlowRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "DetermineMediaMessageFlowResponse": [ - { - "fid": 1, - "name": "flowMap", - "map": 8, - "key": 8 - }, - { - "fid": 2, - "name": "cacheTtlMillis", - "type": 10 - } - ], - "Device": [ - { - "fid": 1, - "name": "udid", - "type": 11 - }, - { - "fid": 2, - "name": "deviceModel", - "type": 11 - } - ], - "DeviceInfo": [ - { - "fid": 1, - "name": "deviceName", - "type": 11 - }, - { - "fid": 2, - "name": "systemName", - "type": 11 - }, - { - "fid": 3, - "name": "systemVersion", - "type": 11 - }, - { - "fid": 4, - "name": "model", - "type": 11 - }, - { - "fid": 5, - "name": "webViewVersion", - "type": 11 - }, - { - "fid": 10, - "name": "carrierCode", - "struct": "CarrierCode" - }, - { - "fid": 11, - "name": "carrierName", - "type": 11 - }, - { - "fid": 20, - "name": "applicationType", - "struct": "ApplicationType" - } - ], - "DeviceLinkRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - } - ], - "DeviceLinkResponse": [ - { - "fid": 1, - "name": "latestOffset", - "type": 10 - } - ], - "DeviceUnlinkRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - } - ], - "DisasterInfo": [ - { - "fid": 1, - "name": "disasterId", - "type": 11 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "region", - "type": 11 - }, - { - "fid": 4, - "name": "disasterDescription", - "type": 11 - }, - { - "fid": 5, - "name": "seeMoreUrl", - "type": 11 - }, - { - "fid": 7, - "name": "status", - "struct": "vh_EnumC37632c" - }, - { - "fid": 8, - "name": "highImpact", - "type": 2 - } - ], - "DisconnectEapAccountRequest": [ - { - "fid": 1, - "name": "eapType", - "struct": "Q70_q" - } - ], - "DisplayMoney": [ - { - "fid": 1, - "name": "amount", - "type": 11 - }, - { - "fid": 2, - "name": "amountString", - "type": 11 - }, - { - "fid": 3, - "name": "currency", - "type": 11 - } - ], - "E2EEKeyChain": [ - { - "fid": 1, - "name": "keychain", - "list": "Pb1_V3" - } - ], - "E2EEMessageInfo": [ - { - "fid": 1, - "name": "contentType", - "struct": "ContentType" - }, - { - "fid": 2, - "name": "contentMetadata", - "map": 11, - "key": 11 - }, - { - "fid": 3, - "name": "chunks", - "list": 11 - } - ], - "E2EEMetadata": [ - { - "fid": 1, - "name": "e2EEPublicKeyId", - "type": 10 - } - ], - "E2EENegotiationResult": [ - { - "fid": 1, - "name": "allowedTypes", - "set": 8 - }, - { - "fid": 2, - "name": "publicKey", - "struct": "Pb1_C13097n4" - }, - { - "fid": 3, - "name": "specVersion", - "type": 8 - } - ], - "EapLogin": [ - { - "fid": 1, - "name": "type", - "struct": "a80_EnumC16644b" - }, - { - "fid": 2, - "name": "accessToken", - "type": 11 - }, - { - "fid": 3, - "name": "countryCode", - "type": 11 - } - ], - "EditItemsInCollectionRequest": [ - { - "fid": 1, - "name": "collectionId", - "type": 11 - }, - { - "fid": 2, - "name": "items", - "list": "CollectionItem" - } - ], - "EditorsPickBannerForClient": [ - { - "fid": 1, - "name": "id", - "type": 10 - }, - { - "fid": 2, - "name": "endPageBannerImageUrl", - "type": 11 - }, - { - "fid": 3, - "name": "defaulteditorsPickShowcaseType", - "struct": "Ob1_I" - }, - { - "fid": 4, - "name": "showNewBadge", - "type": 2 - }, - { - "fid": 5, - "name": "name", - "type": 11 - }, - { - "fid": 6, - "name": "description", - "type": 11 - } - ], - "Eg_C8928b": [], - "Eh_C8933a": [], - "Eh_C8935c": [], - "EstablishE2EESessionRequest": [ - { - "fid": 1, - "name": "clientPublicKey", - "type": 11 - } - ], - "EstablishE2EESessionResponse": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "serverPublicKey", - "type": 11 - }, - { - "fid": 3, - "name": "expireAt", - "type": 10 - } - ], - "EventButton": [ - { - "fid": 1, - "name": "text", - "type": 11 - }, - { - "fid": 2, - "name": "linkUrl", - "type": 11 - } - ], - "EvidenceId": [ - { - "fid": 1, - "name": "spaceId", - "type": 11 - }, - { - "fid": 2, - "name": "objectId", - "type": 11 - } - ], - "ExecuteOnetimeScenarioOperation": [ - { - "fid": 1, - "name": "connectionId", - "type": 11 - }, - { - "fid": 2, - "name": "scenario", - "struct": "Scenario" - } - ], - "ExistPinCodeResponse": [ - { - "fid": 1, - "name": "exists", - "type": 2 - } - ], - "ExtendedMessageBox": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "midType", - "struct": "MIDType" - }, - { - "fid": 4, - "name": "lastDeliveredMessageId", - "struct": "MessageBoxV2MessageId" - }, - { - "fid": 5, - "name": "lastSeenMessageId", - "type": 10 - }, - { - "fid": 6, - "name": "unreadCount", - "type": 10 - }, - { - "fid": 7, - "name": "lastMessages", - "list": "Message" - }, - { - "fid": 8, - "name": "lastRemovedMessageId", - "type": 10 - }, - { - "fid": 9, - "name": "lastRemovedTime", - "type": 10 - }, - { - "fid": 10, - "name": "hiddenAtMessageId", - "type": 10 - } - ], - "ExtendedProfile": [ - { - "fid": 1, - "name": "birthday", - "struct": "ExtendedProfileBirthday" - } - ], - "ExtendedProfileBirthday": [ - { - "fid": 1, - "name": "year", - "type": 11 - }, - { - "fid": 2, - "name": "yearPrivacyLevelType", - "struct": "Pb1_H6" - }, - { - "fid": 3, - "name": "yearEnabled", - "type": 2 - }, - { - "fid": 5, - "name": "day", - "type": 11 - }, - { - "fid": 6, - "name": "dayPrivacyLevelType", - "struct": "Pb1_H6" - }, - { - "fid": 7, - "name": "dayEnabled", - "type": 2 - } - ], - "FetchLiveTalkEventsRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "syncToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - } - ], - "FetchLiveTalkEventsResponse": [ - { - "fid": 1, - "name": "events", - "list": "LiveTalkEvent" - }, - { - "fid": 2, - "name": "syncToken", - "type": 11 - }, - { - "fid": 3, - "name": "hasMore", - "type": 2 - } - ], - "FetchMyEventsRequest": [ - { - "fid": 1, - "name": "subscriptionId", - "type": 10 - }, - { - "fid": 2, - "name": "syncToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - } - ], - "FetchMyEventsResponse": [ - { - "fid": 1, - "name": "subscription", - "struct": "SubscriptionState" - }, - { - "fid": 2, - "name": "events", - "list": "SquareEvent" - }, - { - "fid": 3, - "name": "syncToken", - "type": 11 - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - } - ], - "FetchOperationsRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - }, - { - "fid": 2, - "name": "offsetFrom", - "type": 10 - } - ], - "FetchOperationsResponse": [ - { - "fid": 1, - "name": "operations", - "list": "ThingsOperation" - }, - { - "fid": 2, - "name": "hasNext", - "type": 2 - } - ], - "FetchPhonePinCodeMsgRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - } - ], - "FetchPhonePinCodeMsgResponse": [ - { - "fid": 1, - "name": "pinCodeMessage", - "type": 11 - }, - { - "fid": 2, - "name": "destinationPhoneNumber", - "type": 11 - } - ], - "FetchSquareChatEventsRequest": [ - { - "fid": 1, - "name": "subscriptionId", - "type": 10 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "syncToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "direction", - "struct": "FetchDirection" - }, - { - "fid": 6, - "name": "inclusive", - "struct": "BooleanState" - }, - { - "fid": 7, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 8, - "name": "fetchType", - "struct": "FetchType" - }, - { - "fid": 9, - "name": "threadMid", - "type": 11 - } - ], - "FetchSquareChatEventsResponse": [ - { - "fid": 1, - "name": "subscription", - "struct": "SubscriptionState" - }, - { - "fid": 2, - "name": "events", - "list": "SquareEvent" - }, - { - "fid": 3, - "name": "syncToken", - "type": 11 - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - } - ], - "FileMeta": [ - { - "fid": 1, - "name": "url", - "type": 11 - }, - { - "fid": 2, - "name": "hash", - "type": 11 - } - ], - "FindChatByTicketRequest": [ - { - "fid": 1, - "name": "ticketId", - "type": 11 - } - ], - "FindChatByTicketResponse": [ - { - "fid": 1, - "name": "chat", - "struct": "Chat" - } - ], - "FindLiveTalkByInvitationTicketRequest": [ - { - "fid": 1, - "name": "invitationTicket", - "type": 11 - } - ], - "FindLiveTalkByInvitationTicketResponse": [ - { - "fid": 1, - "name": "chatInvitationTicket", - "type": 11 - }, - { - "fid": 2, - "name": "liveTalk", - "struct": "LiveTalk" - }, - { - "fid": 3, - "name": "chat", - "struct": "SquareChat" - }, - { - "fid": 4, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 5, - "name": "chatMembershipState", - "struct": "SquareChatMembershipState" - }, - { - "fid": 6, - "name": "squareAdultOnly", - "struct": "BooleanState" - } - ], - "FindSquareByEmidRequest": [ - { - "fid": 1, - "name": "emid", - "type": 11 - } - ], - "FindSquareByEmidResponse": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "myMembership", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 4, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - } - ], - "FindSquareByInvitationTicketRequest": [ - { - "fid": 2, - "name": "invitationTicket", - "type": 11 - } - ], - "FindSquareByInvitationTicketResponse": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "myMembership", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 4, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - }, - { - "fid": 7, - "name": "chat", - "struct": "SquareChat" - }, - { - "fid": 8, - "name": "chatStatus", - "struct": "SquareChatStatus" - } - ], - "FindSquareByInvitationTicketV2Request": [ - { - "fid": 1, - "name": "invitationTicket", - "type": 11 - } - ], - "FindSquareByInvitationTicketV2Response": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "myMembership", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 4, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - }, - { - "fid": 7, - "name": "chat", - "struct": "SquareChat" - }, - { - "fid": 8, - "name": "chatStatus", - "struct": "SquareChatStatusWithoutMessage" - } - ], - "FollowBuddyDetail": [ - { - "fid": 1, - "name": "iconType", - "type": 8 - } - ], - "FollowProfile": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "picturePath", - "type": 11 - }, - { - "fid": 4, - "name": "following", - "type": 2 - }, - { - "fid": 5, - "name": "allowFollow", - "type": 2 - }, - { - "fid": 6, - "name": "followBuddyDetail", - "struct": "FollowBuddyDetail" - } - ], - "FollowRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - } - ], - "FontMeta": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "displayName", - "type": 11 - }, - { - "fid": 4, - "name": "type", - "struct": "VR0_WR0_a" - }, - { - "fid": 5, - "name": "font", - "struct": "FileMeta" - }, - { - "fid": 6, - "name": "fontSubset", - "struct": "FileMeta" - }, - { - "fid": 7, - "name": "expiresAtMillis", - "type": 10 - } - ], - "ForceEndLiveTalkRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "ForceSelectedSubTabInfo": [ - { - "fid": 1, - "name": "subTabId", - "type": 11 - }, - { - "fid": 2, - "name": "forceSelectedSubTabRevision", - "type": 10 - }, - { - "fid": 3, - "name": "wrsDefaultTabModelId", - "type": 11 - } - ], - "FormattedPhoneNumbers": [ - { - "fid": 1, - "name": "localFormatPhoneNumber", - "type": 11 - }, - { - "fid": 2, - "name": "prettifiedFormatPhoneNumber", - "type": 11 - } - ], - "FriendRequest": [ - { - "fid": 1, - "name": "eMid", - "type": 11 - }, - { - "fid": 2, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "direction", - "struct": "Pb1_F4" - }, - { - "fid": 4, - "name": "method", - "struct": "Pb1_G4" - }, - { - "fid": 5, - "name": "param", - "type": 11 - }, - { - "fid": 6, - "name": "timestamp", - "type": 10 - }, - { - "fid": 7, - "name": "seqId", - "type": 10 - }, - { - "fid": 10, - "name": "displayName", - "type": 11 - }, - { - "fid": 11, - "name": "picturePath", - "type": 11 - }, - { - "fid": 12, - "name": "pictureStatus", - "type": 11 - } - ], - "FriendRequestsInfo": [ - { - "fid": 1, - "name": "totalIncomingCount", - "type": 8 - }, - { - "fid": 2, - "name": "totalOutgoingCount", - "type": 8 - }, - { - "fid": 3, - "name": "recentIncomings", - "list": "FriendRequest" - }, - { - "fid": 4, - "name": "recentOutgoings", - "list": "FriendRequest" - }, - { - "fid": 5, - "name": "totalIncomingLimit", - "type": 8 - }, - { - "fid": 6, - "name": "totalOutgoingLimit", - "type": 8 - } - ], - "FullSyncResponse": [ - { - "fid": 1, - "name": "reasons", - "set": 8 - }, - { - "fid": 2, - "name": "nextRevision", - "type": 10 - } - ], - "GattReadAction": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "characteristicUuid", - "type": 11 - } - ], - "Geolocation": [ - { - "fid": 1, - "name": "longitude", - "type": 4 - }, - { - "fid": 2, - "name": "latitude", - "type": 4 - }, - { - "fid": 3, - "name": "accuracy", - "struct": "GeolocationAccuracy" - }, - { - "fid": 4, - "name": "altitudeMeters", - "type": 4 - }, - { - "fid": 5, - "name": "velocityMetersPerSecond", - "type": 4 - }, - { - "fid": 6, - "name": "bearingDegrees", - "type": 4 - }, - { - "fid": 7, - "name": "beaconData", - "list": "BeaconData" - } - ], - "GeolocationAccuracy": [ - { - "fid": 1, - "name": "radiusMeters", - "type": 4 - }, - { - "fid": 2, - "name": "radiusConfidence", - "type": 4 - }, - { - "fid": 3, - "name": "altitudeAccuracy", - "type": 4 - }, - { - "fid": 4, - "name": "velocityAccuracy", - "type": 4 - }, - { - "fid": 5, - "name": "bearingAccuracy", - "type": 4 - }, - { - "fid": 6, - "name": "accuracyMode", - "struct": "Pb1_EnumC13050k" - } - ], - "GetAccessTokenRequest": [ - { - "fid": 1, - "name": "fontId", - "type": 11 - } - ], - "GetAccessTokenResponse": [ - { - "fid": 1, - "name": "queryParams", - "key": 11 - }, - { - "fid": 2, - "name": "headers", - "key": 11 - }, - { - "fid": 3, - "name": "expiresAtMillis", - "type": 10 - } - ], - "I80_C26410k": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "GetAcctVerifMethodResponse": [ - { - "fid": 1, - "name": "availableMethod", - "struct": "T70_EnumC14392c" - }, - { - "fid": 2, - "name": "sameAccountFromAuthFactor", - "type": 2 - } - ], - "I80_C26412l": [ - { - "fid": 1, - "name": "availableMethod", - "struct": "I80_EnumC26392b" - } - ], - "GetAllChatMidsRequest": [ - { - "fid": 1, - "name": "withMemberChats", - "type": 2 - }, - { - "fid": 2, - "name": "withInvitedChats", - "type": 2 - } - ], - "GetAllChatMidsResponse": [ - { - "fid": 1, - "name": "memberChatMids", - "set": 11 - }, - { - "fid": 2, - "name": "invitedChatMids", - "set": 11 - } - ], - "GetAllowedRegistrationMethodResponse": [ - { - "fid": 1, - "name": "registrationMethod", - "struct": "T70_Z0" - } - ], - "GetAssertionChallengeResponse": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "challenge", - "type": 11 - } - ], - "GetAttestationChallengeResponse": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "challenge", - "type": 11 - } - ], - "GetBalanceResponse": [ - { - "fid": 1, - "name": "balance", - "struct": "Balance" - } - ], - "GetBalanceSummaryResponseV2": [ - { - "fid": 1, - "name": "payInfo", - "struct": "LinePayInfo" - }, - { - "fid": 2, - "name": "payPromotions", - "list": "LinePayPromotion" - }, - { - "fid": 4, - "name": "pointInfo", - "struct": "LinePointInfo" - }, - { - "fid": 5, - "name": "balanceShortcutInfo", - "struct": "BalanceShortcutInfo" - } - ], - "GetBalanceSummaryV4WithPayV3Response": [ - { - "fid": 1, - "name": "payInfo", - "struct": "LinePayInfoV3" - }, - { - "fid": 2, - "name": "payPromotions", - "list": "LinePayPromotion" - }, - { - "fid": 3, - "name": "balanceShortcutInfo", - "struct": "BalanceShortcutInfoV4" - }, - { - "fid": 4, - "name": "pointInfo", - "struct": "LinePointInfo" - } - ], - "GetBirthdayEffectResponse": [ - { - "fid": 1, - "name": "effect", - "struct": "HomeEffect" - } - ], - "GetBleDeviceRequest": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "psdi", - "type": 11 - } - ], - "GetBuddyChatBarRequest": [ - { - "fid": 1, - "name": "buddyMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatBarRevision", - "type": 10 - }, - { - "fid": 3, - "name": "richMenuId", - "type": 11 - } - ], - "GetBuddyLiveRequest": [ - { - "fid": 1, - "name": "mid", - "type": 11 - } - ], - "GetBuddyLiveResponse": [ - { - "fid": 1, - "name": "info", - "struct": "BuddyLive" - }, - { - "fid": 2, - "name": "refreshedIn", - "type": 10 - } - ], - "GetBuddyStatusBarV2Request": [ - { - "fid": 1, - "name": "botMid", - "type": 11 - }, - { - "fid": 2, - "name": "revision", - "type": 10 - } - ], - "GetCallStatusRequest": [ - { - "fid": 1, - "name": "basicSearchId", - "type": 11 - }, - { - "fid": 2, - "name": "otp", - "type": 11 - } - ], - "GetCallStatusResponse": [ - { - "fid": 1, - "name": "isInsideBusinessHours", - "type": 2 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "isCallSettingEnabled", - "type": 2 - }, - { - "fid": 4, - "name": "isExpiredOtp", - "type": 2 - }, - { - "fid": 5, - "name": "requireOtpInCallUrl", - "type": 2 - } - ], - "GetCampaignRequest": [ - { - "fid": 1, - "name": "campaignType", - "type": 11 - } - ], - "GetCampaignResponse": [ - { - "fid": 1, - "name": "campaignStatus", - "struct": "NZ0_EnumC12188n" - }, - { - "fid": 2, - "name": "campaignProperty", - "struct": "CampaignProperty" - }, - { - "fid": 3, - "name": "intervalDateTimeMillis", - "type": 10 - } - ], - "GetChallengeForPaakAuthRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "GetChallengeForPaakAuthResponse": [ - { - "fid": 1, - "name": "options", - "struct": "o80_p80_j" - } - ], - "GetChallengeForPrimaryRegRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "GetChallengeForPrimaryRegResponse": [ - { - "fid": 1, - "name": "options", - "struct": "PublicKeyCredentialCreationOptions" - } - ], - "GetChannelContextRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "GetChannelContextResponse": [ - { - "fid": 1, - "name": "channelContext", - "struct": "n80_W70_a" - } - ], - "GetChatappRequest": [ - { - "fid": 1, - "name": "chatappId", - "type": 11 - }, - { - "fid": 2, - "name": "language", - "type": 11 - } - ], - "GetChatappResponse": [ - { - "fid": 1, - "name": "app", - "struct": "Chatapp" - } - ], - "GetChatsRequest": [ - { - "fid": 1, - "name": "chatMids", - "list": 11 - }, - { - "fid": 2, - "name": "withMembers", - "type": 2 - }, - { - "fid": 3, - "name": "withInvitees", - "type": 2 - } - ], - "GetChatsResponse": [ - { - "fid": 1, - "name": "chats", - "list": "Chat" - } - ], - "GetCoinHistoryRequest": [ - { - "fid": 1, - "name": "appStoreCode", - "struct": "jO0_EnumC27533B" - }, - { - "fid": 2, - "name": "country", - "type": 11 - }, - { - "fid": 3, - "name": "language", - "type": 11 - }, - { - "fid": 4, - "name": "searchEndDate", - "type": 11 - }, - { - "fid": 5, - "name": "offset", - "type": 8 - }, - { - "fid": 6, - "name": "limit", - "type": 8 - } - ], - "GetCoinHistoryResponse": [ - { - "fid": 1, - "name": "histories", - "list": "CoinHistory" - }, - { - "fid": 2, - "name": "balance", - "struct": "Coin" - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "hasNext", - "type": 2 - } - ], - "GetCoinProductsRequest": [ - { - "fid": 1, - "name": "appStoreCode", - "struct": "jO0_EnumC27533B" - }, - { - "fid": 2, - "name": "country", - "type": 11 - }, - { - "fid": 3, - "name": "language", - "type": 11 - }, - { - "fid": 4, - "name": "pgCode", - "struct": "jO0_EnumC27559z" - } - ], - "GetCoinProductsResponse": [ - { - "fid": 1, - "name": "items", - "list": "CoinProductItem" - } - ], - "GetContactCalendarEventResponse": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "userType", - "struct": "LN0_X0" - }, - { - "fid": 3, - "name": "ContactCalendarEvents", - "struct": "ContactCalendarEvents" - }, - { - "fid": 4, - "name": "snapshotTimeMillis", - "type": 10 - } - ], - "GetContactCalendarEventTarget": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - } - ], - "GetContactCalendarEventsRequest": [ - { - "fid": 1, - "name": "targetUsers", - "list": "GetContactCalendarEventTarget" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - }, - { - "fid": 3, - "name": "requiredContactCalendarEvents", - "set": "Pb1_EnumC13096n3" - } - ], - "GetContactCalendarEventsResponse": [ - { - "fid": 1, - "name": "responses", - "list": "GetContactCalendarEventResponse" - } - ], - "GetContactV3Response": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "userType", - "struct": "LN0_X0" - }, - { - "fid": 3, - "name": "targetProfileDetail", - "struct": "TargetProfileDetail" - }, - { - "fid": 4, - "name": "friendDetail", - "struct": "LN0_Z" - }, - { - "fid": 5, - "name": "blockDetail", - "struct": "LN0_V" - }, - { - "fid": 6, - "name": "recommendationDetail", - "struct": "LN0_y0" - }, - { - "fid": 7, - "name": "notificationSettingEntry", - "struct": "NotificationSettingEntry" - } - ], - "GetContactV3Target": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - } - ], - "GetContactsV3Request": [ - { - "fid": 1, - "name": "targetUsers", - "list": "GetContactV3Target" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - }, - { - "fid": 3, - "name": "checkUserStatusStrictly", - "type": 2 - } - ], - "GetContactsV3Response": [ - { - "fid": 1, - "name": "responses", - "list": "GetContactV3Response" - } - ], - "I80_C26413m": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "simCard", - "struct": "I80_B0" - } - ], - "I80_C26414n": [ - { - "fid": 1, - "name": "countryCode", - "type": 11 - }, - { - "fid": 2, - "name": "countryInEEA", - "type": 2 - }, - { - "fid": 3, - "name": "countrySetOfEEA", - "set": 11 - } - ], - "GetCountryInfoResponse": [ - { - "fid": 1, - "name": "countryCode", - "type": 11 - }, - { - "fid": 2, - "name": "countryInEEA", - "type": 2 - }, - { - "fid": 3, - "name": "countrySetOfEEA", - "set": 11 - } - ], - "GetDisasterCasesResponse": [ - { - "fid": 1, - "name": "disasters", - "list": "DisasterInfo" - }, - { - "fid": 2, - "name": "messageTemplate", - "list": 11 - }, - { - "fid": 3, - "name": "ttlInMillis", - "type": 10 - } - ], - "GetE2EEKeyBackupCertificatesResponse": [ - { - "fid": 1, - "name": "urlHashList", - "list": 11 - } - ], - "GetE2EEKeyBackupInfoResponse": [ - { - "fid": 1, - "name": "blobHeaderHash", - "type": 11 - }, - { - "fid": 2, - "name": "blobPayloadHash", - "type": 11 - }, - { - "fid": 3, - "name": "missingKeyIds", - "set": 8 - }, - { - "fid": 4, - "name": "startTimeMillis", - "type": 10 - }, - { - "fid": 5, - "name": "endTimeMillis", - "type": 10 - } - ], - "GetExchangeKeyRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "GetExchangeKeyResponse": [ - { - "fid": 2, - "name": "exchangeKey", - "map": 11, - "key": 11 - } - ], - "GetFollowBlacklistRequest": [ - { - "fid": 1, - "name": "cursor", - "type": 11 - } - ], - "GetFollowBlacklistResponse": [ - { - "fid": 1, - "name": "profiles", - "list": "FollowProfile" - }, - { - "fid": 2, - "name": "cursor", - "type": 11 - } - ], - "GetFollowersRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - }, - { - "fid": 2, - "name": "cursor", - "type": 11 - } - ], - "GetFollowersResponse": [ - { - "fid": 1, - "name": "profiles", - "list": "FollowProfile" - }, - { - "fid": 2, - "name": "cursor", - "type": 11 - }, - { - "fid": 3, - "name": "followingCount", - "type": 10 - }, - { - "fid": 4, - "name": "followerCount", - "type": 10 - } - ], - "GetFollowingsRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - }, - { - "fid": 2, - "name": "cursor", - "type": 11 - } - ], - "GetFollowingsResponse": [ - { - "fid": 1, - "name": "profiles", - "list": "FollowProfile" - }, - { - "fid": 2, - "name": "cursor", - "type": 11 - }, - { - "fid": 3, - "name": "followingCount", - "type": 10 - }, - { - "fid": 4, - "name": "followerCount", - "type": 10 - } - ], - "GetFontMetasRequest": [ - { - "fid": 1, - "name": "requestCause", - "struct": "VR0_l" - } - ], - "GetFontMetasResponse": [ - { - "fid": 1, - "name": "fontMetas", - "list": "FontMeta" - }, - { - "fid": 2, - "name": "ttlInSeconds", - "type": 8 - } - ], - "GetFriendDetailResponse": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "friendDetail", - "struct": "LN0_Z" - } - ], - "GetFriendDetailTarget": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - } - ], - "GetFriendDetailsRequest": [ - { - "fid": 1, - "name": "targetUsers", - "list": "GetFriendDetailTarget" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetFriendDetailsResponse": [ - { - "fid": 1, - "name": "responses", - "list": "GetFriendDetailResponse" - } - ], - "GetGnbBadgeStatusRequest": [ - { - "fid": 1, - "name": "uenRevision", - "type": 11 - } - ], - "GetGnbBadgeStatusResponse": [ - { - "fid": 1, - "name": "uenRevision", - "type": 11 - }, - { - "fid": 2, - "name": "badgeStatus", - "struct": "NZ0_EnumC12170h" - } - ], - "GetGoogleAdOptionsRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "adScreen", - "struct": "AdScreen" - } - ], - "GetGoogleAdOptionsResponse": [ - { - "fid": 1, - "name": "showAd", - "type": 2 - }, - { - "fid": 2, - "name": "contentUrls", - "list": 11 - }, - { - "fid": 3, - "name": "customTargeting", - "key": 11 - }, - { - "fid": 4, - "name": "clientCacheTtlSeconds", - "type": 8 - } - ], - "GetGroupCallUrlInfoRequest": [ - { - "fid": 1, - "name": "urlId", - "type": 11 - } - ], - "GetGroupCallUrlInfoResponse": [ - { - "fid": 1, - "name": "title", - "type": 11 - }, - { - "fid": 2, - "name": "createdTimeMillis", - "type": 10 - } - ], - "GetGroupCallUrlsResponse": [ - { - "fid": 1, - "name": "urls", - "list": "GroupCallUrl" - } - ], - "GetHomeFlexContentRequest": [ - { - "fid": 1, - "name": "supportedFlexVersion", - "type": 8 - } - ], - "GetHomeFlexContentResponse": [ - { - "fid": 1, - "name": "placements", - "list": "HomeTabPlacement" - }, - { - "fid": 2, - "name": "expireTimeMillis", - "type": 10 - }, - { - "fid": 3, - "name": "gnbBadgeId", - "type": 11 - }, - { - "fid": 4, - "name": "gnbBadgeExpireTimeMillis", - "type": 10 - } - ], - "GetHomeServiceListResponse": [ - { - "fid": 1, - "name": "services", - "list": "HomeService" - }, - { - "fid": 2, - "name": "fixedServiceIds", - "list": 8 - }, - { - "fid": 3, - "name": "pinnedServiceCandidateIds", - "list": 8 - }, - { - "fid": 4, - "name": "categories", - "list": "HomeCategory" - }, - { - "fid": 5, - "name": "fixedServiceIdsV3", - "list": 8 - }, - { - "fid": 6, - "name": "specificServiceId", - "type": 8 - } - ], - "GetHomeServicesRequest": [ - { - "fid": 1, - "name": "ids", - "list": 8 - } - ], - "GetHomeServicesResponse": [ - { - "fid": 1, - "name": "services", - "list": "HomeService" - } - ], - "GetIncentiveStatusResponse": [ - { - "fid": 1, - "name": "paypayPoint", - "type": 8 - }, - { - "fid": 2, - "name": "incentiveCode", - "type": 11 - }, - { - "fid": 3, - "name": "subscribedFromViral", - "type": 2 - } - ], - "GetInvitationTicketUrlRequest": [ - { - "fid": 2, - "name": "mid", - "type": 11 - } - ], - "GetInvitationTicketUrlResponse": [ - { - "fid": 1, - "name": "invitationURL", - "type": 11 - } - ], - "GetJoinableSquareChatsRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 10, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 11, - "name": "limit", - "type": 8 - } - ], - "GetJoinableSquareChatsResponse": [ - { - "fid": 1, - "name": "squareChats", - "list": "SquareChat" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalSquareChatCount", - "type": 8 - }, - { - "fid": 4, - "name": "squareChatStatuses", - "map": "SquareChatStatus", - "key": 11 - } - ], - "GetJoinedMembershipByBotMidRequest": [ - { - "fid": 1, - "name": "botMid", - "type": 11 - } - ], - "GetJoinedMembershipRequest": [ - { - "fid": 1, - "name": "uniqueKey", - "type": 11 - } - ], - "GetJoinedSquareChatsRequest": [ - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - } - ], - "GetJoinedSquareChatsResponse": [ - { - "fid": 1, - "name": "chats", - "list": "SquareChat" - }, - { - "fid": 2, - "name": "chatMembers", - "map": "SquareChatMember", - "key": 11 - }, - { - "fid": 3, - "name": "statuses", - "map": "SquareChatStatus", - "key": 11 - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - } - ], - "GetJoinedSquaresRequest": [ - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - } - ], - "GetJoinedSquaresResponse": [ - { - "fid": 1, - "name": "squares", - "list": "Square" - }, - { - "fid": 2, - "name": "members", - "map": "SquareMember", - "key": 11 - }, - { - "fid": 3, - "name": "authorities", - "map": "SquareAuthority", - "key": 11 - }, - { - "fid": 4, - "name": "statuses", - "map": "SquareStatus", - "key": 11 - }, - { - "fid": 5, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 6, - "name": "noteStatuses", - "map": "NoteStatus", - "key": 11 - } - ], - "GetKeyBackupCertificatesV2Response": [ - { - "fid": 1, - "name": "urlHashList", - "list": 11 - } - ], - "GetLFLSuggestionResponse": [ - { - "fid": 1, - "name": "majorVersion", - "type": 11 - }, - { - "fid": 2, - "name": "minorVersion", - "type": 11 - }, - { - "fid": 3, - "name": "clusterLink", - "type": 11 - } - ], - "GetLiveTalkInfoForNonMemberRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "speakers", - "list": 11 - } - ], - "GetLiveTalkInfoForNonMemberResponse": [ - { - "fid": 1, - "name": "chatName", - "type": 11 - }, - { - "fid": 2, - "name": "chatImageObsHash", - "type": 11 - }, - { - "fid": 3, - "name": "liveTalk", - "struct": "LiveTalk" - }, - { - "fid": 4, - "name": "speakers", - "list": "LiveTalkSpeaker" - }, - { - "fid": 5, - "name": "chatInvitationTicket", - "type": 11 - } - ], - "GetLiveTalkInvitationUrlRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "GetLiveTalkInvitationUrlResponse": [ - { - "fid": 1, - "name": "invitationUrl", - "type": 11 - } - ], - "GetLiveTalkSpeakersForNonMemberRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "speakers", - "list": 11 - } - ], - "GetLiveTalkSpeakersForNonMemberResponse": [ - { - "fid": 1, - "name": "speakers", - "list": "LiveTalkSpeaker" - } - ], - "GetLoginActorContextRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "GetLoginActorContextResponse": [ - { - "fid": 1, - "name": "applicationType", - "type": 11 - }, - { - "fid": 2, - "name": "ipAddress", - "type": 11 - }, - { - "fid": 3, - "name": "location", - "type": 11 - } - ], - "GetMappedProfileIdsRequest": [ - { - "fid": 1, - "name": "targetUserMids", - "list": 11 - } - ], - "GetMappedProfileIdsResponse": [ - { - "fid": 1, - "name": "mappings", - "map": 11, - "key": 11 - } - ], - "I80_C26415o": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "I80_C26416p": [ - { - "fid": 1, - "name": "maskedEmail", - "type": 11 - } - ], - "GetMaskedEmailResponse": [ - { - "fid": 1, - "name": "maskedEmail", - "type": 11 - } - ], - "GetMessageReactionsRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "MessageReactionType" - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 5, - "name": "limit", - "type": 8 - }, - { - "fid": 6, - "name": "threadMid", - "type": 11 - } - ], - "GetMessageReactionsResponse": [ - { - "fid": 1, - "name": "reactions", - "list": "SquareMessageReaction" - }, - { - "fid": 2, - "name": "status", - "struct": "SquareMessageReactionStatus" - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - } - ], - "GetModuleLayoutV4Request": [ - { - "fid": 2, - "name": "etag", - "type": 11 - } - ], - "GetModulesRequestV2": [ - { - "fid": 1, - "name": "etag", - "type": 11 - }, - { - "fid": 2, - "name": "deviceAdId", - "type": 11 - } - ], - "GetModulesRequestV3": [ - { - "fid": 1, - "name": "etag", - "type": 11 - }, - { - "fid": 2, - "name": "tabIdentifier", - "struct": "NZ0_EnumC12169g1" - }, - { - "fid": 3, - "name": "deviceAdId", - "type": 11 - }, - { - "fid": 4, - "name": "agreedWithTargetingAdByMid", - "type": 2 - } - ], - "GetModulesV4WithStatusRequest": [ - { - "fid": 1, - "name": "etag", - "type": 11 - }, - { - "fid": 2, - "name": "subTabId", - "type": 11 - }, - { - "fid": 3, - "name": "deviceAdId", - "type": 11 - }, - { - "fid": 4, - "name": "agreedWithTargetingAdByMid", - "type": 2 - }, - { - "fid": 5, - "name": "deviceId", - "type": 11 - } - ], - "GetMusicSubscriptionStatusResponse": [ - { - "fid": 1, - "name": "validUntil", - "type": 10 - }, - { - "fid": 2, - "name": "expired", - "type": 2 - }, - { - "fid": 3, - "name": "isStickersPremiumEnabled", - "type": 2 - } - ], - "GetMyAssetInformationV2Request": [ - { - "fid": 1, - "name": "refresh", - "type": 2 - } - ], - "GetMyAssetInformationV2Response": [ - { - "fid": 1, - "name": "headerInfo", - "struct": "HeaderInfo" - }, - { - "fid": 2, - "name": "assetServiceInfos", - "list": "AssetServiceInfo" - }, - { - "fid": 3, - "name": "serviceDisclaimerInfo", - "struct": "ServiceDisclaimerInfo" - }, - { - "fid": 4, - "name": "pointInfo", - "struct": "PointInfo" - }, - { - "fid": 5, - "name": "linkRewardInfo", - "struct": "LinkRewardInfo" - }, - { - "fid": 6, - "name": "pocketMoneyInfo", - "struct": "PocketMoneyInfo" - }, - { - "fid": 7, - "name": "scoreInfo", - "struct": "ScoreInfo" - }, - { - "fid": 8, - "name": "timestamp", - "type": 10 - } - ], - "GetMyChatappsRequest": [ - { - "fid": 1, - "name": "language", - "type": 11 - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - } - ], - "GetMyChatappsResponse": [ - { - "fid": 1, - "name": "apps", - "list": "MyChatapp" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - } - ], - "GetMyDashboardRequest": [ - { - "fid": 1, - "name": "tabIdentifier", - "struct": "NZ0_EnumC12169g1" - } - ], - "GetMyDashboardResponse": [ - { - "fid": 1, - "name": "responseStatus", - "struct": "NZ0_W0" - }, - { - "fid": 2, - "name": "messages", - "list": "MyDashboardItem" - }, - { - "fid": 3, - "name": "cacheTimeSec", - "type": 8 - }, - { - "fid": 4, - "name": "cautionText", - "type": 11 - } - ], - "GetNoteStatusRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - } - ], - "GetNoteStatusResponse": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "status", - "struct": "NoteStatus" - } - ], - "GetNotificationSettingsRequest": [ - { - "fid": 1, - "name": "chatMids", - "set": 11 - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetNotificationSettingsResponse": [ - { - "fid": 1, - "name": "notificationSettingEntries", - "map": "NotificationSettingEntry", - "key": 11 - } - ], - "I80_C26417q": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "GetPasswordHashingParametersForPwdRegRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "GetPasswordHashingParametersForPwdRegResponse": [ - { - "fid": 1, - "name": "params", - "struct": "PasswordHashingParameters" - }, - { - "fid": 2, - "name": "passwordValidationRule", - "list": "PasswordValidationRule" - } - ], - "I80_C26418r": [ - { - "fid": 1, - "name": "params", - "struct": "PasswordHashingParameters" - }, - { - "fid": 2, - "name": "passwordValidationRule", - "list": "PasswordValidationRule" - } - ], - "GetPasswordHashingParametersForPwdVerifRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "I80_C26419s": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "GetPasswordHashingParametersForPwdVerifResponse": [ - { - "fid": 1, - "name": "isV1HashRequired", - "type": 2 - }, - { - "fid": 2, - "name": "v1HashParams", - "struct": "V1PasswordHashingParameters" - }, - { - "fid": 3, - "name": "hashParams", - "struct": "PasswordHashingParameters" - } - ], - "I80_C26420t": [ - { - "fid": 1, - "name": "isV1HashRequired", - "type": 2 - }, - { - "fid": 2, - "name": "v1HashParams", - "struct": "V1PasswordHashingParameters" - }, - { - "fid": 3, - "name": "hashParams", - "struct": "PasswordHashingParameters" - } - ], - "GetPasswordHashingParametersRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - } - ], - "GetPasswordHashingParametersResponse": [ - { - "fid": 1, - "name": "hmacKey", - "type": 11 - }, - { - "fid": 2, - "name": "scryptParams", - "struct": "ScryptParams" - }, - { - "fid": 3, - "name": "passwordValidationRule", - "list": "PasswordValidationRule" - } - ], - "GetPhoneVerifMethodForRegistrationRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "device", - "struct": "Device" - }, - { - "fid": 3, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - } - ], - "GetPhoneVerifMethodForRegistrationResponse": [ - { - "fid": 1, - "name": "availableMethods", - "list": 8 - }, - { - "fid": 2, - "name": "prettifiedPhoneNumber", - "type": 11 - } - ], - "GetPhoneVerifMethodV2Request": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "device", - "struct": "Device" - }, - { - "fid": 3, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - } - ], - "I80_C26421u": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - } - ], - "I80_C26422v": [ - { - "fid": 1, - "name": "availableMethods", - "list": 8 - }, - { - "fid": 3, - "name": "prettifiedPhoneNumber", - "type": 11 - } - ], - "GetPhoneVerifMethodV2Response": [ - { - "fid": 1, - "name": "availableMethods", - "list": 8 - }, - { - "fid": 3, - "name": "prettifiedPhoneNumber", - "type": 11 - } - ], - "GetPhotoboothBalanceResponse": [ - { - "fid": 1, - "name": "availableTickets", - "type": 8 - }, - { - "fid": 2, - "name": "nextTicketAvailableAt", - "type": 10 - } - ], - "GetPopularKeywordsResponse": [ - { - "fid": 1, - "name": "popularKeywords", - "list": "PopularKeyword" - }, - { - "fid": 2, - "name": "expiredAt", - "type": 10 - } - ], - "GetPredefinedScenarioSetsRequest": [ - { - "fid": 1, - "name": "deviceIds", - "list": 11 - } - ], - "GetPredefinedScenarioSetsResponse": [ - { - "fid": 1, - "name": "scenarioSets", - "map": "ScenarioSet", - "key": 11 - } - ], - "GetPremiumContextForMigResponse": [ - { - "fid": 1, - "name": "isPremiumActive", - "type": 2 - }, - { - "fid": 2, - "name": "isPremiumBackupActive", - "type": 2 - }, - { - "fid": 3, - "name": "premiumType", - "struct": "T70_L" - }, - { - "fid": 4, - "name": "availablePremiumTypes", - "list": 8 - } - ], - "GetPremiumDataRetentionResponse": [ - { - "fid": 1, - "name": "dataRetentions", - "list": "DataRetention" - }, - { - "fid": 2, - "name": "noSyncUntil", - "type": 10 - } - ], - "GetPremiumStatusResponse": [ - { - "fid": 1, - "name": "active", - "type": 2 - }, - { - "fid": 2, - "name": "validUntil", - "type": 10 - }, - { - "fid": 3, - "name": "updatedTime", - "type": 10 - }, - { - "fid": 4, - "name": "freeTrialUsed", - "type": 2 - }, - { - "fid": 5, - "name": "willExpire", - "type": 2 - }, - { - "fid": 6, - "name": "newToYahooShopping", - "type": 2 - }, - { - "fid": 8, - "name": "idLinked", - "type": 2 - }, - { - "fid": 9, - "name": "onFreeTrial", - "type": 2 - }, - { - "fid": 10, - "name": "duplicated", - "type": 2 - }, - { - "fid": 11, - "name": "planType", - "struct": "fN0_p" - }, - { - "fid": 12, - "name": "noSyncUntil", - "type": 10 - }, - { - "fid": 13, - "name": "productId", - "type": 11 - }, - { - "fid": 14, - "name": "currency", - "type": 11 - }, - { - "fid": 15, - "name": "price", - "type": 11 - }, - { - "fid": 16, - "name": "status", - "struct": "fN0_H" - }, - { - "fid": 17, - "name": "invitedByFriend", - "type": 2 - }, - { - "fid": 18, - "name": "canceledProviders", - "list": 8 - }, - { - "fid": 19, - "name": "nextPaymentTime", - "type": 10 - } - ], - "GetPreviousMessagesV2Request": [ - { - "fid": 1, - "name": "messageBoxId", - "type": 11 - }, - { - "fid": 2, - "name": "endMessageId", - "struct": "MessageBoxV2MessageId" - }, - { - "fid": 3, - "name": "messagesCount", - "type": 8 - }, - { - "fid": 4, - "name": "withReadCount", - "type": 2 - }, - { - "fid": 5, - "name": "receivedOnly", - "type": 2 - } - ], - "GetProductLatestVersionForUserRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - } - ], - "GetProductLatestVersionForUserResponse": [ - { - "fid": 1, - "name": "latestVersion", - "type": 10 - }, - { - "fid": 2, - "name": "latestVersionString", - "type": 11 - } - ], - "GetProductRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "carrierCode", - "type": 11 - }, - { - "fid": 4, - "name": "saveBrowsingHistory", - "type": 2 - } - ], - "GetProductResponse": [ - { - "fid": 1, - "name": "productDetail", - "struct": "ProductDetail" - } - ], - "GetProfileRequest": [ - { - "fid": 1, - "name": "profileId", - "type": 11 - } - ], - "GetProfileResponse": [ - { - "fid": 1, - "name": "profile", - "struct": "Profile" - } - ], - "GetProfilesRequest": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetProfilesResponse": [ - { - "fid": 1, - "name": "profiles", - "list": "Profile" - } - ], - "GetPublishedMembershipsRequest": [ - { - "fid": 1, - "name": "basicSearchId", - "type": 11 - } - ], - "GetQuickMenuResponse": [ - { - "fid": 1, - "name": "pointInfo", - "struct": "QuickMenuPointInfo" - }, - { - "fid": 2, - "name": "couponInfo", - "struct": "QuickMenuCouponInfo" - }, - { - "fid": 3, - "name": "myCardInfo", - "struct": "QuickMenuMyCardInfo" - } - ], - "GetRecommendationDetailResponse": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "recommendationOrNot", - "struct": "LN0_y0" - } - ], - "GetRecommendationDetailTarget": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - } - ], - "GetRecommendationDetailsRequest": [ - { - "fid": 1, - "name": "targetUsers", - "list": "GetRecommendationDetailTarget" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetRecommendationDetailsResponse": [ - { - "fid": 1, - "name": "responses", - "list": "GetRecommendationDetailResponse" - } - ], - "GetRecommendationResponse": [ - { - "fid": 1, - "name": "results", - "list": "ProductSearchSummary" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalSize", - "type": 10 - } - ], - "GetRepairElementsRequest": [ - { - "fid": 1, - "name": "profile", - "type": 2 - }, - { - "fid": 2, - "name": "settings", - "type": 2 - }, - { - "fid": 3, - "name": "configurations", - "struct": "ConfigurationsParams" - }, - { - "fid": 4, - "name": "numLocalJoinedGroups", - "type": 8 - }, - { - "fid": 5, - "name": "numLocalInvitedGroups", - "type": 8 - }, - { - "fid": 6, - "name": "numLocalFriends", - "type": 8 - }, - { - "fid": 7, - "name": "numLocalRecommendations", - "type": 8 - }, - { - "fid": 8, - "name": "numLocalBlockedFriends", - "type": 8 - }, - { - "fid": 9, - "name": "numLocalBlockedRecommendations", - "type": 8 - }, - { - "fid": 10, - "name": "localGroupMembers", - "map": "RepairGroupMembers", - "key": 11 - }, - { - "fid": 11, - "name": "syncReason", - "struct": "Pb1_V7" - }, - { - "fid": 12, - "name": "localProfileMappings", - "map": 8, - "key": 11 - } - ], - "GetRepairElementsResponse": [ - { - "fid": 1, - "name": "profile", - "struct": "RepairTriggerProfileElement" - }, - { - "fid": 2, - "name": "settings", - "struct": "RepairTriggerSettingsElement" - }, - { - "fid": 3, - "name": "configurations", - "struct": "RepairTriggerConfigurationsElement" - }, - { - "fid": 4, - "name": "numJoinedGroups", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 5, - "name": "numInvitedGroups", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 6, - "name": "numFriends", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 7, - "name": "numRecommendations", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 8, - "name": "numBlockedFriends", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 9, - "name": "numBlockedRecommendations", - "struct": "RepairTriggerNumElement" - }, - { - "fid": 10, - "name": "groupMembers", - "struct": "RepairTriggerGroupMembersElement" - }, - { - "fid": 11, - "name": "profileMappings", - "struct": "RepairTriggerProfileMappingListElement" - } - ], - "GetRequest": [ - { - "fid": 1, - "name": "keyName", - "type": 11 - }, - { - "fid": 2, - "name": "ns", - "struct": "t80_h" - } - ], - "GetResourceFileReponse": [ - { - "fid": 1, - "name": "tagClusterFileResponse", - "struct": "GetTagClusterFileResponse" - } - ], - "GetResourceFileRequest": [ - { - "fid": 1, - "name": "tagClusterFileRequest", - "struct": "Ob1_C12642m0" - }, - { - "fid": 2, - "name": "staging", - "type": 2 - } - ], - "GetResponse": [ - { - "fid": 1, - "name": "value", - "struct": "SettingValue" - } - ], - "GetResponseStatusRequest": [ - { - "fid": 1, - "name": "botMid", - "type": 11 - } - ], - "GetResponseStatusResponse": [ - { - "fid": 1, - "name": "displayedResponseStatus", - "struct": "jf_EnumC27712a" - } - ], - "GetSCCRequest": [ - { - "fid": 1, - "name": "basicSearchId", - "type": 11 - } - ], - "I80_C26423w": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "I80_C26424x": [ - { - "fid": 1, - "name": "encryptionKey", - "struct": "I80_y0" - } - ], - "GetSeasonalEffectsResponse": [ - { - "fid": 1, - "name": "effects", - "list": "HomeEffect" - } - ], - "GetSecondAuthMethodResponse": [ - { - "fid": 1, - "name": "secondAuthMethod", - "struct": "T70_e1" - } - ], - "GetServiceShortcutMenuResponse": [ - { - "fid": 1, - "name": "revision", - "type": 11 - }, - { - "fid": 2, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 3, - "name": "expandable", - "type": 2 - }, - { - "fid": 4, - "name": "serviceShortcuts", - "list": "ServiceShortcut" - }, - { - "fid": 5, - "name": "menuDescription", - "type": 11 - }, - { - "fid": 6, - "name": "numberOfItemsInRow", - "type": 8 - } - ], - "GetSessionContentBeforeMigCompletionResponse": [ - { - "fid": 1, - "name": "appTypeDifferentFromPrevDevice", - "type": 2 - }, - { - "fid": 2, - "name": "e2eeKeyBackupServiceConfig", - "type": 2 - }, - { - "fid": 4, - "name": "e2eeKeyBackupPeriodServiceConfig", - "type": 8 - } - ], - "GetSmartChannelRecommendationsRequest": [ - { - "fid": 1, - "name": "maxResults", - "type": 8 - }, - { - "fid": 2, - "name": "placement", - "type": 11 - }, - { - "fid": 3, - "name": "testMode", - "type": 2 - } - ], - "GetSmartChannelRecommendationsResponse": [ - { - "fid": 1, - "name": "smartChannelRecommendations", - "list": "SmartChannelRecommendation" - }, - { - "fid": 2, - "name": "minInterval", - "type": 8 - }, - { - "fid": 3, - "name": "requestId", - "type": 11 - } - ], - "GetSquareAuthoritiesRequest": [ - { - "fid": 2, - "name": "squareMids", - "set": 11 - } - ], - "GetSquareAuthoritiesResponse": [ - { - "fid": 1, - "name": "authorities", - "map": "SquareAuthority", - "key": 11 - } - ], - "GetSquareAuthorityRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - } - ], - "GetSquareAuthorityResponse": [ - { - "fid": 1, - "name": "authority", - "struct": "SquareAuthority" - } - ], - "GetSquareBotRequest": [ - { - "fid": 1, - "name": "botMid", - "type": 11 - } - ], - "GetSquareBotResponse": [ - { - "fid": 1, - "name": "squareBot", - "struct": "SquareBot" - } - ], - "GetSquareCategoriesResponse": [ - { - "fid": 1, - "name": "categoryList", - "list": "Category" - } - ], - "GetSquareChatAnnouncementsRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatAnnouncementsResponse": [ - { - "fid": 1, - "name": "announcements", - "list": "SquareChatAnnouncement" - } - ], - "GetSquareChatEmidRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatEmidResponse": [ - { - "fid": 1, - "name": "squareChatEmid", - "type": 11 - } - ], - "GetSquareChatFeatureSetRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatFeatureSetResponse": [ - { - "fid": 1, - "name": "squareChatFeatureSet", - "struct": "SquareChatFeatureSet" - } - ], - "GetSquareChatMemberRequest": [ - { - "fid": 2, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatMemberResponse": [ - { - "fid": 1, - "name": "squareChatMember", - "struct": "SquareChatMember" - } - ], - "GetSquareChatMembersRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - } - ], - "GetSquareChatMembersResponse": [ - { - "fid": 1, - "name": "squareChatMembers", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "contentsAttributes", - "map": 8, - "key": 11 - } - ], - "GetSquareChatRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatResponse": [ - { - "fid": 1, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 2, - "name": "squareChatMember", - "struct": "SquareChatMember" - }, - { - "fid": 3, - "name": "squareChatStatus", - "struct": "SquareChatStatus" - } - ], - "GetSquareChatStatusRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareChatStatusResponse": [ - { - "fid": 1, - "name": "chatStatus", - "struct": "SquareChatStatus" - } - ], - "GetSquareEmidRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - } - ], - "GetSquareEmidResponse": [ - { - "fid": 1, - "name": "squareEmid", - "type": 11 - } - ], - "GetSquareFeatureSetRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - } - ], - "GetSquareFeatureSetResponse": [ - { - "fid": 1, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - } - ], - "GetSquareInfoByChatMidRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - } - ], - "GetSquareInfoByChatMidResponse": [ - { - "fid": 1, - "name": "defaultChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareName", - "type": 11 - }, - { - "fid": 3, - "name": "squareDesc", - "type": 11 - } - ], - "GetSquareMemberRelationRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetSquareMemberMid", - "type": 11 - } - ], - "GetSquareMemberRelationResponse": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "targetSquareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "relation", - "struct": "SquareMemberRelation" - } - ], - "GetSquareMemberRelationsRequest": [ - { - "fid": 2, - "name": "state", - "struct": "SquareMemberRelationState" - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - } - ], - "GetSquareMemberRelationsResponse": [ - { - "fid": 1, - "name": "squareMembers", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "relations", - "map": "SquareMemberRelation", - "key": 11 - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - } - ], - "GetSquareMemberRequest": [ - { - "fid": 2, - "name": "squareMemberMid", - "type": 11 - } - ], - "GetSquareMemberResponse": [ - { - "fid": 1, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 2, - "name": "relation", - "struct": "SquareMemberRelation" - }, - { - "fid": 3, - "name": "oneOnOneChatMid", - "type": 11 - }, - { - "fid": 4, - "name": "contentsAttribute", - "struct": "ContentsAttribute" - } - ], - "GetSquareMembersBySquareRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareMemberMids", - "set": 11 - } - ], - "GetSquareMembersBySquareResponse": [ - { - "fid": 1, - "name": "members", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "contentsAttributes", - "map": 8, - "key": 11 - } - ], - "GetSquareMembersRequest": [ - { - "fid": 2, - "name": "mids", - "set": 11 - } - ], - "GetSquareMembersResponse": [ - { - "fid": 1, - "name": "members", - "map": "SquareMember", - "key": 11 - } - ], - "GetSquareRequest": [ - { - "fid": 2, - "name": "mid", - "type": 11 - } - ], - "GetSquareResponse": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "myMembership", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 4, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - }, - { - "fid": 7, - "name": "extraInfo", - "struct": "SquareExtraInfo" - } - ], - "GetSquareStatusRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - } - ], - "GetSquareStatusResponse": [ - { - "fid": 1, - "name": "squareStatus", - "struct": "SquareStatus" - } - ], - "GetSquareThreadMidRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - } - ], - "GetSquareThreadMidResponse": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - } - ], - "GetSquareThreadRequest": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - }, - { - "fid": 2, - "name": "includeRootMessage", - "type": 2 - } - ], - "GetSquareThreadResponse": [ - { - "fid": 1, - "name": "squareThread", - "struct": "SquareThread" - }, - { - "fid": 2, - "name": "myThreadMember", - "struct": "SquareThreadMember" - }, - { - "fid": 3, - "name": "rootMessage", - "struct": "SquareMessage" - } - ], - "GetStudentInformationResponse": [ - { - "fid": 1, - "name": "studentInformation", - "struct": "StudentInformation" - }, - { - "fid": 2, - "name": "isValid", - "type": 2 - } - ], - "GetSubscriptionPlansRequest": [ - { - "fid": 1, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 2, - "name": "storeCode", - "struct": "Ob1_K1" - } - ], - "GetSubscriptionPlansResponse": [ - { - "fid": 1, - "name": "plans", - "list": "SubscriptionPlan" - } - ], - "GetSubscriptionStatusRequest": [ - { - "fid": 1, - "name": "includeOtherOwnedSubscriptions", - "type": 2 - } - ], - "GetSubscriptionStatusResponse": [ - { - "fid": 1, - "name": "subscriptions", - "map": "SubscriptionStatus", - "key": 8 - }, - { - "fid": 2, - "name": "hasValidStudentInformation", - "type": 2 - }, - { - "fid": 3, - "name": "otherOwnedSubscriptions", - "key": 8 - } - ], - "GetSuggestDictionarySettingResponse": [ - { - "fid": 1, - "name": "results", - "list": "SuggestDictionarySetting" - } - ], - "GetSuggestResourcesV2Request": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productIds", - "list": 11 - } - ], - "GetSuggestResourcesV2Response": [ - { - "fid": 1, - "name": "suggestResources", - "map": "SuggestResource", - "key": 11 - } - ], - "GetSuggestTrialRecommendationResponse": [ - { - "fid": 1, - "name": "recommendations", - "list": "SuggestTrialRecommendation" - }, - { - "fid": 2, - "name": "expiresAt", - "type": 10 - }, - { - "fid": 3, - "name": "recommendationGrouping", - "type": 11 - } - ], - "GetTagClusterFileResponse": [ - { - "fid": 1, - "name": "path", - "type": 11 - }, - { - "fid": 2, - "name": "updatedTimeMillis", - "type": 10 - } - ], - "GetTaiwanBankBalanceRequest": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - }, - { - "fid": 2, - "name": "authorizationCode", - "type": 11 - }, - { - "fid": 3, - "name": "codeVerifier", - "type": 11 - } - ], - "GetTaiwanBankBalanceResponse": [ - { - "fid": 1, - "name": "maintenaceText", - "type": 11 - }, - { - "fid": 2, - "name": "lineBankPromotions", - "list": "LineBankPromotion" - }, - { - "fid": 3, - "name": "taiwanBankBalanceInfo", - "struct": "TaiwanBankBalanceInfo" - }, - { - "fid": 4, - "name": "lineBankShortcutInfo", - "struct": "LineBankShortcutInfo" - }, - { - "fid": 5, - "name": "loginParameters", - "struct": "TaiwanBankLoginParameters" - } - ], - "GetTargetProfileResponse": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "userType", - "struct": "LN0_X0" - }, - { - "fid": 3, - "name": "targetProfileDetail", - "struct": "TargetProfileDetail" - } - ], - "GetTargetProfileTarget": [ - { - "fid": 1, - "name": "targetUserMid", - "type": 11 - } - ], - "GetTargetProfilesRequest": [ - { - "fid": 1, - "name": "targetUsers", - "list": "GetTargetProfileTarget" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetTargetProfilesResponse": [ - { - "fid": 1, - "name": "responses", - "list": "GetTargetProfileResponse" - } - ], - "GetTargetingPopupResponse": [ - { - "fid": 1, - "name": "targetingPopups", - "list": "PopupProperty" - }, - { - "fid": 2, - "name": "intervalTimeSec", - "type": 8 - } - ], - "GetThaiBankBalanceRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - } - ], - "GetThaiBankBalanceResponse": [ - { - "fid": 1, - "name": "maintenaceText", - "type": 11 - }, - { - "fid": 2, - "name": "thaiBankBalanceInfo", - "struct": "ThaiBankBalanceInfo" - }, - { - "fid": 3, - "name": "lineBankPromotions", - "list": "LineBankPromotion" - }, - { - "fid": 4, - "name": "lineBankShortcutInfo", - "struct": "LineBankShortcutInfo" - } - ], - "GetTotalCoinBalanceRequest": [ - { - "fid": 1, - "name": "appStoreCode", - "struct": "jO0_EnumC27533B" - } - ], - "GetTotalCoinBalanceResponse": [ - { - "fid": 1, - "name": "totalBalance", - "type": 11 - }, - { - "fid": 2, - "name": "paidCoinBalance", - "type": 11 - }, - { - "fid": 3, - "name": "freeCoinBalance", - "type": 11 - }, - { - "fid": 4, - "name": "rewardCoinBalance", - "type": 11 - }, - { - "fid": 5, - "name": "expectedAutoExchangedCoinBalance", - "type": 11 - } - ], - "GetUserCollectionsRequest": [ - { - "fid": 1, - "name": "lastUpdatedTimeMillis", - "type": 10 - }, - { - "fid": 2, - "name": "includeSummary", - "type": 2 - }, - { - "fid": 3, - "name": "productType", - "struct": "Ob1_O0" - } - ], - "GetUserCollectionsResponse": [ - { - "fid": 1, - "name": "collections", - "list": "Collection" - }, - { - "fid": 2, - "name": "updated", - "type": 2 - } - ], - "GetUserProfileResponse": [ - { - "fid": 1, - "name": "userProfile", - "struct": "UserProfile" - } - ], - "GetUserSettingsRequest": [ - { - "fid": 1, - "name": "requestedAttrs", - "set": "SquareUserSettingsAttribute" - } - ], - "GetUserSettingsResponse": [ - { - "fid": 1, - "name": "requestedAttrs", - "set": 8 - }, - { - "fid": 2, - "name": "userSettings", - "struct": "SquareUserSettings" - } - ], - "GetUserVectorRequest": [ - { - "fid": 1, - "name": "majorVersion", - "type": 11 - } - ], - "GetUserVectorResponse": [ - { - "fid": 1, - "name": "userVector", - "list": 4 - }, - { - "fid": 2, - "name": "majorVersion", - "type": 11 - }, - { - "fid": 3, - "name": "minorVersion", - "type": 11 - } - ], - "GetUsersMappedByProfileRequest": [ - { - "fid": 1, - "name": "profileId", - "type": 11 - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "GetUsersMappedByProfileResponse": [ - { - "fid": 1, - "name": "mappedMids", - "list": 11 - } - ], - "GlobalEvent": [ - { - "fid": 1, - "name": "type", - "struct": "Pb1_EnumC13209v5" - }, - { - "fid": 2, - "name": "minDelayInMinutes", - "type": 8 - }, - { - "fid": 3, - "name": "maxDelayInMinutes", - "type": 8 - }, - { - "fid": 4, - "name": "createTimeMillis", - "type": 10 - }, - { - "fid": 5, - "name": "maxDelayHardLimit", - "type": 2 - } - ], - "GroupCall": [ - { - "fid": 1, - "name": "online", - "type": 2 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "hostMid", - "type": 11 - }, - { - "fid": 4, - "name": "memberMids", - "list": 11 - }, - { - "fid": 5, - "name": "started", - "type": 10 - }, - { - "fid": 6, - "name": "mediaType", - "struct": "Pb1_EnumC13237x5" - }, - { - "fid": 7, - "name": "protocol", - "struct": "Pb1_EnumC13251y5" - }, - { - "fid": 8, - "name": "maxAllowableMembers", - "type": 8 - } - ], - "GroupCallRoute": [ - { - "fid": 1, - "name": "token", - "type": 11 - }, - { - "fid": 2, - "name": "cscf", - "struct": "CallHost" - }, - { - "fid": 3, - "name": "mix", - "struct": "CallHost" - }, - { - "fid": 4, - "name": "hostMid", - "type": 11 - }, - { - "fid": 5, - "name": "capabilities", - "list": 11 - }, - { - "fid": 6, - "name": "proto", - "struct": "Pb1_EnumC13251y5" - }, - { - "fid": 7, - "name": "voipAddress", - "type": 11 - }, - { - "fid": 8, - "name": "voipUdpPort", - "type": 8 - }, - { - "fid": 9, - "name": "voipTcpPort", - "type": 8 - }, - { - "fid": 10, - "name": "fromZone", - "type": 11 - }, - { - "fid": 11, - "name": "commParam", - "type": 11 - }, - { - "fid": 12, - "name": "polarisAddress", - "type": 11 - }, - { - "fid": 13, - "name": "polarisUdpPort", - "type": 8 - }, - { - "fid": 14, - "name": "polarisZone", - "type": 11 - }, - { - "fid": 15, - "name": "orionAddress", - "type": 11 - }, - { - "fid": 16, - "name": "voipAddress6", - "type": 11 - }, - { - "fid": 17, - "name": "stnpk", - "type": 11 - } - ], - "GroupCallUrl": [ - { - "fid": 1, - "name": "urlId", - "type": 11 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "createdTimeMillis", - "type": 10 - } - ], - "GroupExtra": [ - { - "fid": 1, - "name": "creator", - "type": 11 - }, - { - "fid": 2, - "name": "preventedJoinByTicket", - "type": 2 - }, - { - "fid": 3, - "name": "invitationTicket", - "type": 11 - }, - { - "fid": 4, - "name": "memberMids", - "map": 10, - "key": 11 - }, - { - "fid": 5, - "name": "inviteeMids", - "map": 10, - "key": 11 - }, - { - "fid": 6, - "name": "addFriendDisabled", - "type": 2 - }, - { - "fid": 7, - "name": "ticketDisabled", - "type": 2 - }, - { - "fid": 8, - "name": "autoName", - "type": 2 - } - ], - "HeaderContent": [ - { - "fid": 1, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 2, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 3, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 4, - "name": "title", - "type": 11 - }, - { - "fid": 5, - "name": "animationImageUrl", - "type": 11 - }, - { - "fid": 6, - "name": "tooltipText", - "type": 11 - } - ], - "HeaderInfo": [ - { - "fid": 1, - "name": "totalBalance", - "type": 11 - }, - { - "fid": 2, - "name": "currencyProperty", - "struct": "CurrencyProperty" - } - ], - "HideSquareMemberContentsRequest": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - } - ], - "HomeCategory": [ - { - "fid": 1, - "name": "id", - "type": 8 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "ids", - "list": 8 - } - ], - "HomeEffect": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "resourceUrl", - "type": 11 - }, - { - "fid": 3, - "name": "checksum", - "type": 11 - }, - { - "fid": 4, - "name": "startDate", - "type": 10 - }, - { - "fid": 5, - "name": "endDate", - "type": 10 - } - ], - "HomeService": [ - { - "fid": 1, - "name": "id", - "type": 8 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "serviceEntryUrl", - "type": 11 - }, - { - "fid": 4, - "name": "storeUrl", - "type": 11 - }, - { - "fid": 5, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 6, - "name": "pictogramIconUrl", - "type": 11 - }, - { - "fid": 7, - "name": "badgeUpdatedTimeMillis", - "type": 10 - }, - { - "fid": 8, - "name": "badgeType", - "struct": "Eg_EnumC8927a" - }, - { - "fid": 9, - "name": "serviceDescription", - "type": 11 - }, - { - "fid": 10, - "name": "iconThemeDisabled", - "type": 2 - } - ], - "HomeTabPlacement": [ - { - "fid": 1, - "name": "placementTemplateId", - "type": 11 - }, - { - "fid": 2, - "name": "placementService", - "type": 11 - }, - { - "fid": 3, - "name": "placementLogic", - "type": 11 - }, - { - "fid": 4, - "name": "contents", - "type": 11 - }, - { - "fid": 5, - "name": "crsPlacementImpressionTrackingUrl", - "type": 11 - } - ], - "Icon": [ - { - "fid": 1, - "name": "darkModeUrl", - "type": 11 - }, - { - "fid": 2, - "name": "lightModeUrl", - "type": 11 - } - ], - "IconDisplayRule": [ - { - "fid": 1, - "name": "rule", - "type": 11 - }, - { - "fid": 2, - "name": "offset", - "type": 8 - } - ], - "IdentifierConfirmationRequest": [ - { - "fid": 1, - "name": "metaData", - "map": 11, - "key": 11 - }, - { - "fid": 2, - "name": "forceRegistration", - "type": 2 - }, - { - "fid": 3, - "name": "verificationCode", - "type": 11 - } - ], - "IdentityCredentialRequest": [ - { - "fid": 1, - "name": "metaData", - "map": 11, - "key": 11 - }, - { - "fid": 2, - "name": "identityProvider", - "struct": "IdentityProvider" - }, - { - "fid": 3, - "name": "cipherKeyId", - "type": 11 - }, - { - "fid": 4, - "name": "cipherText", - "type": 11 - }, - { - "fid": 5, - "name": "confirmationRequest", - "struct": "IdentifierConfirmationRequest" - } - ], - "IdentityCredentialResponse": [ - { - "fid": 1, - "name": "metaData", - "map": 11, - "key": 11 - }, - { - "fid": 2, - "name": "responseType", - "struct": "Pb1_F5" - }, - { - "fid": 3, - "name": "confirmationVerifier", - "type": 11 - }, - { - "fid": 4, - "name": "timeoutInSeconds", - "type": 10 - } - ], - "Image": [ - { - "fid": 1, - "name": "url", - "type": 11 - }, - { - "fid": 2, - "name": "height", - "type": 8 - }, - { - "fid": 3, - "name": "width", - "type": 8 - } - ], - "ImageTextProperty": [ - { - "fid": 1, - "name": "status", - "struct": "Ob1_EnumC12656r0" - }, - { - "fid": 2, - "name": "plainText", - "type": 11 - }, - { - "fid": 3, - "name": "nameTextMaxCharacterCount", - "type": 8 - }, - { - "fid": 4, - "name": "encryptedText", - "type": 11 - } - ], - "InstantNews": [ - { - "fid": 1, - "name": "newsId", - "type": 10 - }, - { - "fid": 2, - "name": "newsService", - "type": 11 - }, - { - "fid": 3, - "name": "ttlMillis", - "type": 10 - }, - { - "fid": 4, - "name": "category", - "type": 11 - }, - { - "fid": 5, - "name": "categoryBgColor", - "type": 11 - }, - { - "fid": 6, - "name": "categoryColor", - "type": 11 - }, - { - "fid": 7, - "name": "title", - "type": 11 - }, - { - "fid": 8, - "name": "url", - "type": 11 - }, - { - "fid": 9, - "name": "image", - "type": 11 - } - ], - "InviteFriendsRequest": [ - { - "fid": 1, - "name": "campaignId", - "type": 11 - }, - { - "fid": 2, - "name": "invitees", - "list": 11 - } - ], - "InviteFriendsResponse": [ - { - "fid": 1, - "name": "result", - "struct": "fN0_EnumC24469a" - } - ], - "InviteIntoChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetUserMids", - "set": 11 - } - ], - "InviteIntoSquareChatRequest": [ - { - "fid": 1, - "name": "inviteeMids", - "list": 11 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - } - ], - "InviteIntoSquareChatResponse": [ - { - "fid": 1, - "name": "inviteeMids", - "list": 11 - } - ], - "InviteToChangeRoleRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "targetMid", - "type": 11 - }, - { - "fid": 4, - "name": "targetRole", - "struct": "LiveTalkRole" - } - ], - "InviteToListenRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "targetMid", - "type": 11 - } - ], - "InviteToLiveTalkRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "invitees", - "list": 11 - } - ], - "InviteToSpeakRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "targetMid", - "type": 11 - } - ], - "InviteToSpeakResponse": [ - { - "fid": 1, - "name": "inviteRequestId", - "type": 11 - } - ], - "InviteToSquareRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "invitees", - "list": 11 - }, - { - "fid": 4, - "name": "squareChatMid", - "type": 11 - } - ], - "IpassTokenProperty": [ - { - "fid": 1, - "name": "token", - "type": 11 - }, - { - "fid": 2, - "name": "tokenIssuedTimestamp", - "type": 11 - } - ], - "IsProductForCollectionsRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - } - ], - "IsProductForCollectionsResponse": [ - { - "fid": 1, - "name": "isAvailable", - "type": 2 - } - ], - "IsStickerAvailableForCombinationStickerRequest": [ - { - "fid": 1, - "name": "packageId", - "type": 11 - } - ], - "IsStickerAvailableForCombinationStickerResponse": [ - { - "fid": 1, - "name": "availableForCombinationSticker", - "type": 2 - } - ], - "IssueBirthdayGiftTokenRequest": [ - { - "fid": 1, - "name": "recipientUserMid", - "type": 11 - } - ], - "IssueBirthdayGiftTokenResponse": [ - { - "fid": 1, - "name": "giftAssociationToken", - "type": 11 - } - ], - "IssueV3TokenForPrimaryRequest": [ - { - "fid": 1, - "name": "udid", - "type": 11 - }, - { - "fid": 2, - "name": "systemDisplayName", - "type": 11 - }, - { - "fid": 3, - "name": "modelName", - "type": 11 - } - ], - "IssueV3TokenForPrimaryResponse": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - }, - { - "fid": 2, - "name": "refreshToken", - "type": 11 - }, - { - "fid": 3, - "name": "durationUntilRefreshInSec", - "type": 10 - }, - { - "fid": 4, - "name": "refreshApiRetryPolicy", - "struct": "RefreshApiRetryPolicy" - }, - { - "fid": 5, - "name": "loginSessionId", - "type": 11 - }, - { - "fid": 6, - "name": "tokenIssueTimeEpochSec", - "type": 10 - }, - { - "fid": 7, - "name": "mid", - "type": 11 - } - ], - "IssueWebAuthDetailsForSecondAuthResponse": [ - { - "fid": 1, - "name": "webAuthDetails", - "struct": "WebAuthDetails" - } - ], - "JoinChatByCallUrlRequest": [ - { - "fid": 1, - "name": "urlId", - "type": 11 - }, - { - "fid": 2, - "name": "reqSeq", - "type": 8 - } - ], - "JoinChatByCallUrlResponse": [ - { - "fid": 1, - "name": "chat", - "struct": "Chat" - } - ], - "JoinLiveTalkRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "wantToSpeak", - "type": 2 - }, - { - "fid": 4, - "name": "claimAdult", - "struct": "BooleanState" - } - ], - "JoinLiveTalkResponse": [ - { - "fid": 1, - "name": "hostMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "memberSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "token", - "type": 11 - }, - { - "fid": 4, - "name": "proto", - "type": 11 - }, - { - "fid": 5, - "name": "voipAddress", - "type": 11 - }, - { - "fid": 6, - "name": "voipAddress6", - "type": 11 - }, - { - "fid": 7, - "name": "voipUdpPort", - "type": 8 - }, - { - "fid": 8, - "name": "voipTcpPort", - "type": 8 - }, - { - "fid": 9, - "name": "fromZone", - "type": 11 - }, - { - "fid": 10, - "name": "commParam", - "type": 11 - }, - { - "fid": 11, - "name": "orionAddress", - "type": 11 - }, - { - "fid": 12, - "name": "polarisAddress", - "type": 11 - }, - { - "fid": 13, - "name": "polarisZone", - "type": 11 - }, - { - "fid": 14, - "name": "polarisUdpPort", - "type": 8 - }, - { - "fid": 15, - "name": "speaker", - "type": 2 - } - ], - "JoinSquareChatRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - } - ], - "JoinSquareChatResponse": [ - { - "fid": 1, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 2, - "name": "squareChatStatus", - "struct": "SquareChatStatus" - }, - { - "fid": 3, - "name": "squareChatMember", - "struct": "SquareChatMember" - } - ], - "JoinSquareRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "member", - "struct": "SquareMember" - }, - { - "fid": 4, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 5, - "name": "joinValue", - "struct": "SquareJoinMethodValue" - }, - { - "fid": 6, - "name": "claimAdult", - "struct": "BooleanState" - } - ], - "JoinSquareResponse": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 3, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 4, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - }, - { - "fid": 7, - "name": "squareChat", - "struct": "SquareChat" - }, - { - "fid": 8, - "name": "squareChatStatus", - "struct": "SquareChatStatus" - }, - { - "fid": 9, - "name": "squareChatMember", - "struct": "SquareChatMember" - } - ], - "JoinSquareThreadRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "threadMid", - "type": 11 - } - ], - "JoinSquareThreadResponse": [ - { - "fid": 1, - "name": "threadMember", - "struct": "SquareThreadMember" - } - ], - "JoinedMemberships": [ - { - "fid": 1, - "name": "subscribing", - "list": "MemberInfo" - }, - { - "fid": 2, - "name": "expired", - "list": "MemberInfo" - } - ], - "KickOutLiveTalkParticipantsRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "target", - "struct": "LiveTalkKickOutTarget" - } - ], - "KickoutFromGroupCallRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "targetMids", - "list": 11 - } - ], - "LFLClusterV2": [ - { - "fid": 1, - "name": "majorVersion", - "type": 11 - }, - { - "fid": 2, - "name": "minorVersion", - "type": 11 - }, - { - "fid": 3, - "name": "tags", - "list": "Tag" - }, - { - "fid": 4, - "name": "products", - "list": "Product" - } - ], - "LIFFMenuColor": [ - { - "fid": 1, - "name": "iconColor", - "type": 8 - }, - { - "fid": 2, - "name": "statusBarColor", - "struct": "Qj_EnumC13585b" - }, - { - "fid": 3, - "name": "titleTextColor", - "type": 8 - }, - { - "fid": 4, - "name": "titleSubtextColor", - "type": 8 - }, - { - "fid": 5, - "name": "titleButtonColor", - "type": 8 - }, - { - "fid": 6, - "name": "titleBackgroundColor", - "type": 8 - }, - { - "fid": 7, - "name": "progressBarColor", - "type": 8 - }, - { - "fid": 8, - "name": "progressBackgroundColor", - "type": 8 - }, - { - "fid": 9, - "name": "titleButtonAreaBackgroundColor", - "type": 8 - }, - { - "fid": 10, - "name": "titleButtonAreaBorderColor", - "type": 8 - } - ], - "LIFFMenuColorSetting": [ - { - "fid": 1, - "name": "lightModeColor", - "struct": "LIFFMenuColor" - }, - { - "fid": 2, - "name": "darkModeColor", - "struct": "LIFFMenuColor" - } - ], - "LN0_A": [], - "LN0_A0": [], - "LN0_B": [], - "LN0_B0": [], - "LN0_C0": [], - "LN0_C11270b": [], - "LN0_C11274d": [ - { - "fid": 1, - "name": "invalid", - "struct": "AddMetaInvalid" - }, - { - "fid": 2, - "name": "byPhone", - "struct": "AddMetaByPhone" - }, - { - "fid": 3, - "name": "bySearchId", - "struct": "AddMetaBySearchId" - }, - { - "fid": 4, - "name": "byUserTicket", - "struct": "AddMetaByUserTicket" - }, - { - "fid": 5, - "name": "groupMemberList", - "struct": "AddMetaGroupMemberList" - }, - { - "fid": 6, - "name": "timelineCPF", - "struct": "LN0_P" - }, - { - "fid": 7, - "name": "smartChannelCPF", - "struct": "LN0_L" - }, - { - "fid": 8, - "name": "openchatCPF", - "struct": "LN0_G" - }, - { - "fid": 9, - "name": "beaconBanner", - "struct": "LN0_C11282h" - }, - { - "fid": 10, - "name": "friendRecommendation", - "struct": "LN0_C11300q" - }, - { - "fid": 11, - "name": "homeRecommendation", - "struct": "LN0_C11307u" - }, - { - "fid": 12, - "name": "shareContact", - "struct": "AddMetaShareContact" - }, - { - "fid": 13, - "name": "strangerMessage", - "struct": "AddMetaStrangerMessage" - }, - { - "fid": 14, - "name": "strangerCall", - "struct": "AddMetaStrangerCall" - }, - { - "fid": 15, - "name": "mentionInChat", - "struct": "AddMetaMentionInChat" - }, - { - "fid": 16, - "name": "timeline", - "struct": "LN0_O" - }, - { - "fid": 17, - "name": "unifiedSearch", - "struct": "LN0_Q" - }, - { - "fid": 18, - "name": "lineLab", - "struct": "LN0_C11313x" - }, - { - "fid": 19, - "name": "lineToCall", - "struct": "LN0_A" - }, - { - "fid": 20, - "name": "groupVideo", - "struct": "AddMetaGroupVideoCall" - }, - { - "fid": 21, - "name": "friendRequest", - "struct": "LN0_r" - }, - { - "fid": 22, - "name": "liveViewer", - "struct": "LN0_C11315y" - }, - { - "fid": 23, - "name": "lineThings", - "struct": "LN0_C11316z" - }, - { - "fid": 24, - "name": "mediaCapture", - "struct": "LN0_B" - }, - { - "fid": 25, - "name": "avatarOASetting", - "struct": "LN0_C11280g" - }, - { - "fid": 26, - "name": "urlScheme", - "struct": "LN0_T" - }, - { - "fid": 27, - "name": "addressBook", - "struct": "LN0_C11276e" - }, - { - "fid": 28, - "name": "unifiedSearchOATab", - "struct": "LN0_S" - }, - { - "fid": 29, - "name": "profileUndefined", - "struct": "AddMetaProfileUndefined" - }, - { - "fid": 30, - "name": "DEPRECATED_oaChatHeader", - "struct": "LN0_F" - }, - { - "fid": 31, - "name": "chatMenu", - "struct": "LN0_C11294n" - }, - { - "fid": 32, - "name": "chatHeader", - "struct": "LN0_C11290l" - }, - { - "fid": 33, - "name": "homeTabCPF", - "struct": "LN0_C11309v" - }, - { - "fid": 34, - "name": "chatList", - "struct": "LN0_C11292m" - }, - { - "fid": 35, - "name": "chatNote", - "struct": "AddMetaChatNote" - }, - { - "fid": 36, - "name": "chatNoteMenu", - "struct": "AddMetaChatNoteMenu" - }, - { - "fid": 37, - "name": "walletTabCPF", - "struct": "LN0_U" - }, - { - "fid": 38, - "name": "oaCall", - "struct": "LN0_E" - }, - { - "fid": 39, - "name": "searchIdInUnifiedSearch", - "struct": "AddMetaSearchIdInUnifiedSearch" - }, - { - "fid": 40, - "name": "newsDigestADCPF", - "struct": "LN0_D" - }, - { - "fid": 41, - "name": "albumCPF", - "struct": "LN0_C11278f" - }, - { - "fid": 42, - "name": "premiumAgreement", - "struct": "LN0_H" - } - ], - "LN0_C11276e": [], - "LN0_C11278f": [], - "LN0_C11280g": [], - "LN0_C11282h": [], - "LN0_C11290l": [], - "LN0_C11292m": [], - "LN0_C11294n": [], - "LN0_C11300q": [], - "LN0_C11307u": [], - "LN0_C11308u0": [], - "LN0_C11309v": [], - "LN0_C11310v0": [], - "LN0_C11312w0": [], - "LN0_C11313x": [], - "LN0_C11315y": [], - "LN0_C11316z": [], - "LN0_D": [], - "LN0_E": [], - "LN0_F": [], - "LN0_G": [], - "LN0_H": [], - "LN0_L": [], - "LN0_O": [], - "LN0_P": [], - "LN0_Q": [], - "LN0_S": [], - "LN0_T": [], - "LN0_U": [], - "LN0_V": [ - { - "fid": 1, - "name": "user", - "struct": "UserBlockDetail" - }, - { - "fid": 2, - "name": "bot", - "struct": "BotBlockDetail" - }, - { - "fid": 3, - "name": "notBlocked", - "struct": "LN0_C11308u0" - } - ], - "LN0_Z": [ - { - "fid": 1, - "name": "user", - "struct": "UserFriendDetail" - }, - { - "fid": 2, - "name": "bot", - "struct": "BotFriendDetail" - }, - { - "fid": 3, - "name": "notFriend", - "struct": "LN0_C11310v0" - } - ], - "LN0_r": [], - "LN0_y0": [ - { - "fid": 1, - "name": "recommendationDetail", - "struct": "RecommendationDetail" - }, - { - "fid": 2, - "name": "notRecommended", - "struct": "LN0_C11312w0" - } - ], - "LN0_z0": [ - { - "fid": 1, - "name": "sharedChat", - "struct": "RecommendationReasonSharedChat" - }, - { - "fid": 2, - "name": "reverseFriendByUserId", - "struct": "LN0_C0" - }, - { - "fid": 3, - "name": "reverseFriendByQrCode", - "struct": "LN0_B0" - }, - { - "fid": 4, - "name": "reverseFriendByPhone", - "struct": "LN0_A0" - } - ], - "LatestProductByAuthorItem": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "version", - "type": 10 - }, - { - "fid": 4, - "name": "newFlag", - "type": 2 - }, - { - "fid": 5, - "name": "productResourceType", - "struct": "Ob1_I0" - }, - { - "fid": 6, - "name": "popupLayer", - "struct": "Ob1_B0" - } - ], - "LatestProductsByAuthorRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "authorId", - "type": 10 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - } - ], - "LatestProductsByAuthorResponse": [ - { - "fid": 1, - "name": "authorId", - "type": 10 - }, - { - "fid": 2, - "name": "author", - "type": 11 - }, - { - "fid": 3, - "name": "items", - "list": "LatestProductByAuthorItem" - } - ], - "LeaveSquareChatRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "sayGoodbye", - "type": 2 - }, - { - "fid": 4, - "name": "squareChatMemberRevision", - "type": 10 - } - ], - "LeaveSquareRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - } - ], - "LeaveSquareThreadRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "threadMid", - "type": 11 - } - ], - "LeaveSquareThreadResponse": [ - { - "fid": 1, - "name": "threadMember", - "struct": "SquareThreadMember" - } - ], - "LeftSquareMember": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "updatedAt", - "type": 10 - } - ], - "LiffAdvertisingId": [ - { - "fid": 1, - "name": "advertisingId", - "type": 11 - }, - { - "fid": 2, - "name": "tracking", - "type": 2 - }, - { - "fid": 3, - "name": "att", - "struct": "Qj_EnumC13584a" - }, - { - "fid": 4, - "name": "skAdNetwork", - "struct": "SKAdNetwork" - } - ], - "LiffChatContext": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "LiffDeviceSetting": [ - { - "fid": 1, - "name": "videoAutoPlayAllowed", - "type": 2 - }, - { - "fid": 2, - "name": "advertisingId", - "struct": "LiffAdvertisingId" - } - ], - "LiffErrorConsentRequired": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - }, - { - "fid": 2, - "name": "consentUrl", - "type": 11 - } - ], - "LiffErrorPermanentLinkInvalidRequest": [ - { - "fid": 1, - "name": "liffId", - "type": 11 - }, - { - "fid": 2, - "name": "fallbackUrl", - "type": 11 - } - ], - "LiffFIDOExternalService": [ - { - "fid": 1, - "name": "rpId", - "type": 11 - }, - { - "fid": 2, - "name": "rpApiBaseUrl", - "type": 11 - } - ], - "LiffSquareChatContext": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - } - ], - "LiffView": [ - { - "fid": 1, - "name": "type", - "type": 11 - }, - { - "fid": 2, - "name": "url", - "type": 11 - }, - { - "fid": 4, - "name": "titleTextColor", - "type": 8 - }, - { - "fid": 5, - "name": "titleBackgroundColor", - "type": 8 - }, - { - "fid": 6, - "name": "titleIconUrl", - "type": 11 - }, - { - "fid": 7, - "name": "titleSubtextColor", - "type": 8 - }, - { - "fid": 8, - "name": "titleButtonColor", - "type": 8 - }, - { - "fid": 9, - "name": "progressBarColor", - "type": 8 - }, - { - "fid": 10, - "name": "progressBackgroundColor", - "type": 8 - }, - { - "fid": 11, - "name": "trustedDomain", - "type": 2 - }, - { - "fid": 12, - "name": "suspendable", - "type": 2 - }, - { - "fid": 13, - "name": "maxBrightness", - "type": 2 - }, - { - "fid": 14, - "name": "titleButtonAreaBackgroundColor", - "type": 8 - }, - { - "fid": 15, - "name": "titleButtonAreaBorderColor", - "type": 8 - }, - { - "fid": 16, - "name": "suspendableV2", - "type": 2 - }, - { - "fid": 17, - "name": "menuStyle", - "struct": "Qj_EnumC13606x" - }, - { - "fid": 18, - "name": "moduleMode", - "type": 2 - }, - { - "fid": 19, - "name": "pinToHomeServiceId", - "type": 8 - }, - { - "fid": 20, - "name": "menuColorSetting", - "struct": "LIFFMenuColorSetting" - }, - { - "fid": 21, - "name": "showPinInduction", - "type": 2 - }, - { - "fid": 22, - "name": "appName", - "type": 11 - }, - { - "fid": 23, - "name": "adaptableColorSchemes", - "set": 8 - }, - { - "fid": 24, - "name": "provider", - "struct": "Provider" - }, - { - "fid": 25, - "name": "basicAuthAllowed", - "type": 2 - }, - { - "fid": 26, - "name": "siriDonationAllowed", - "type": 2 - }, - { - "fid": 27, - "name": "transitionToNonLiffWithoutPopupAllowed", - "type": 2 - }, - { - "fid": 28, - "name": "urlHistoryAllowed", - "type": 2 - }, - { - "fid": 29, - "name": "shrinkHeaderDisabled", - "type": 2 - }, - { - "fid": 30, - "name": "skipWebRTCPermissionPopupAllowed", - "type": 2 - }, - { - "fid": 31, - "name": "useGmaSdkAllowed", - "type": 2 - }, - { - "fid": 32, - "name": "useMinimizeButtonAllowed", - "type": 2 - } - ], - "LiffViewRequest": [ - { - "fid": 1, - "name": "liffId", - "type": 11 - }, - { - "fid": 2, - "name": "context", - "struct": "Qj_C13595l" - }, - { - "fid": 3, - "name": "lang", - "type": 11 - }, - { - "fid": 4, - "name": "deviceSetting", - "struct": "LiffDeviceSetting" - }, - { - "fid": 5, - "name": "msit", - "type": 11 - }, - { - "fid": 6, - "name": "subsequentLiff", - "type": 2 - }, - { - "fid": 7, - "name": "domain", - "type": 11 - } - ], - "LiffViewResponse": [ - { - "fid": 1, - "name": "view", - "struct": "LiffView" - }, - { - "fid": 2, - "name": "contextToken", - "type": 11 - }, - { - "fid": 3, - "name": "accessToken", - "type": 11 - }, - { - "fid": 4, - "name": "featureToken", - "type": 11 - }, - { - "fid": 5, - "name": "features", - "list": 8 - }, - { - "fid": 6, - "name": "channelId", - "type": 11 - }, - { - "fid": 7, - "name": "idToken", - "type": 11 - }, - { - "fid": 8, - "name": "scopes", - "list": 11 - }, - { - "fid": 9, - "name": "launchOptions", - "list": 8 - }, - { - "fid": 10, - "name": "permanentLinkPattern", - "struct": "Qj_a0" - }, - { - "fid": 11, - "name": "subLiffView", - "struct": "SubLiffView" - }, - { - "fid": 12, - "name": "revisions", - "map": 8, - "key": 8 - }, - { - "fid": 13, - "name": "accessTokenExpiresIn", - "type": 10 - }, - { - "fid": 14, - "name": "accessTokenExpiresInWithRoom", - "type": 10 - }, - { - "fid": 15, - "name": "liffId", - "type": 11 - }, - { - "fid": 16, - "name": "miniDomainAllowed", - "type": 2 - }, - { - "fid": 17, - "name": "miniAppId", - "type": 11 - }, - { - "fid": 18, - "name": "miniHistoryServiceId", - "type": 8 - }, - { - "fid": 19, - "name": "addToHomeV2Allowed", - "type": 2 - }, - { - "fid": 20, - "name": "addToHomeV2LineSchemeAllowed", - "type": 2 - }, - { - "fid": 21, - "name": "fido", - "struct": "Qj_C13602t" - }, - { - "fid": 22, - "name": "omitLiffReferrer", - "type": 2 - } - ], - "LiffViewWithoutUserContextRequest": [ - { - "fid": 1, - "name": "liffId", - "type": 11 - } - ], - "LiffWebLoginRequest": [ - { - "fid": 1, - "name": "hookedFullUrl", - "type": 11 - }, - { - "fid": 2, - "name": "sessionString", - "type": 11 - }, - { - "fid": 3, - "name": "context", - "struct": "Qj_C13595l" - }, - { - "fid": 4, - "name": "deviceSetting", - "struct": "LiffDeviceSetting" - } - ], - "LiffWebLoginResponse": [ - { - "fid": 1, - "name": "returnUrl", - "type": 11 - }, - { - "fid": 2, - "name": "sessionString", - "type": 11 - }, - { - "fid": 3, - "name": "liffId", - "type": 11 - } - ], - "LineBankBalanceShortcut": [ - { - "fid": 1, - "name": "iconPosition", - "type": 8 - }, - { - "fid": 2, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 3, - "name": "iconText", - "type": 11 - }, - { - "fid": 4, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 5, - "name": "iconType", - "struct": "NZ0_EnumC12154b1" - }, - { - "fid": 6, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 7, - "name": "tsTargetId", - "type": 11 - }, - { - "fid": 8, - "name": "userGuidePopupInfo", - "struct": "ShortcutUserGuidePopupInfo" - } - ], - "LineBankPromotion": [ - { - "fid": 1, - "name": "mainText", - "type": 11 - }, - { - "fid": 2, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 3, - "name": "tsTargetId", - "type": 11 - } - ], - "LineBankShortcutInfo": [ - { - "fid": 1, - "name": "mainShortcuts", - "list": "LineBankBalanceShortcut" - }, - { - "fid": 2, - "name": "subShortcuts", - "list": "LineBankBalanceShortcut" - } - ], - "LinePayInfo": [ - { - "fid": 1, - "name": "balanceAmount", - "type": 11 - }, - { - "fid": 2, - "name": "currencyProperty", - "struct": "CurrencyProperty" - }, - { - "fid": 3, - "name": "payMemberStatus", - "struct": "NZ0_EnumC12195p0" - }, - { - "fid": 4, - "name": "applicationUrl", - "type": 11 - }, - { - "fid": 5, - "name": "chargeUrl", - "type": 11 - }, - { - "fid": 6, - "name": "payMemberGrade", - "struct": "NZ0_EnumC12192o0" - }, - { - "fid": 7, - "name": "country", - "type": 11 - }, - { - "fid": 8, - "name": "referenceNumber", - "type": 11 - }, - { - "fid": 9, - "name": "ipassTokenProperty", - "struct": "IpassTokenProperty" - }, - { - "fid": 10, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 11, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 12, - "name": "iconLinkUrl", - "type": 11 - }, - { - "fid": 13, - "name": "suspendedText", - "type": 11 - }, - { - "fid": 14, - "name": "responseStatus", - "struct": "NZ0_W0" - } - ], - "LinePayInfoV3": [ - { - "fid": 1, - "name": "availableBalance", - "type": 11 - }, - { - "fid": 2, - "name": "availableBalanceString", - "type": 11 - }, - { - "fid": 3, - "name": "currencyProperty", - "struct": "CurrencyProperty" - }, - { - "fid": 4, - "name": "payMemberStatus", - "struct": "NZ0_EnumC12195p0" - }, - { - "fid": 5, - "name": "payMemberGrade", - "struct": "NZ0_EnumC12192o0" - }, - { - "fid": 6, - "name": "country", - "type": 11 - }, - { - "fid": 7, - "name": "applicationUrl", - "type": 11 - }, - { - "fid": 8, - "name": "iconAltText", - "type": 11 - }, - { - "fid": 9, - "name": "iconLinkUrl", - "type": 11 - }, - { - "fid": 10, - "name": "suspendedText", - "type": 11 - }, - { - "fid": 11, - "name": "responseStatus", - "struct": "NZ0_W0" - } - ], - "LinePayPromotion": [ - { - "fid": 1, - "name": "mainText", - "type": 11 - }, - { - "fid": 2, - "name": "subText", - "type": 11 - }, - { - "fid": 3, - "name": "buttonText", - "type": 11 - }, - { - "fid": 4, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 5, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 6, - "name": "tsTargetId", - "type": 11 - } - ], - "LinePointInfo": [ - { - "fid": 1, - "name": "balanceAmount", - "type": 11 - }, - { - "fid": 2, - "name": "applicationUrl", - "type": 11 - }, - { - "fid": 3, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 4, - "name": "displayText", - "type": 11 - }, - { - "fid": 5, - "name": "responseStatus", - "struct": "NZ0_W0" - } - ], - "LinkRewardInfo": [ - { - "fid": 1, - "name": "assetServiceInfo", - "struct": "AssetServiceInfo" - }, - { - "fid": 2, - "name": "autoConversion", - "type": 2 - }, - { - "fid": 3, - "name": "backgroundColorCode", - "type": 11 - } - ], - "LiveTalk": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "title", - "type": 11 - }, - { - "fid": 4, - "name": "type", - "struct": "LiveTalkType" - }, - { - "fid": 5, - "name": "speakerSetting", - "struct": "LiveTalkSpeakerSetting" - }, - { - "fid": 6, - "name": "allowRequestToSpeak", - "type": 2 - }, - { - "fid": 7, - "name": "hostMemberMid", - "type": 11 - }, - { - "fid": 8, - "name": "announcement", - "type": 11 - }, - { - "fid": 9, - "name": "participantCount", - "type": 8 - }, - { - "fid": 10, - "name": "revision", - "type": 10 - }, - { - "fid": 11, - "name": "startedAt", - "type": 10 - } - ], - "LiveTalkEvent": [ - { - "fid": 1, - "name": "type", - "struct": "LiveTalkEventType" - }, - { - "fid": 2, - "name": "payload", - "struct": "LiveTalkEventPayload" - }, - { - "fid": 3, - "name": "revision", - "type": 10 - } - ], - "LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak": [ - { - "fid": 1, - "name": "allowRequestToSpeak", - "type": 2 - } - ], - "LiveTalkEventNotifiedUpdateLiveTalkAnnouncement": [ - { - "fid": 1, - "name": "announcement", - "type": 11 - } - ], - "LiveTalkEventNotifiedUpdateLiveTalkTitle": [ - { - "fid": 1, - "name": "title", - "type": 11 - } - ], - "LiveTalkEventNotifiedUpdateSquareMember": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "role", - "struct": "SquareMemberRole" - } - ], - "LiveTalkEventNotifiedUpdateSquareMemberRole": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "role", - "struct": "SquareMemberRole" - } - ], - "LiveTalkExtraInfo": [ - { - "fid": 1, - "name": "saturnResponse", - "type": 11 - } - ], - "LiveTalkParticipant": [ - { - "fid": 1, - "name": "mid", - "type": 11 - } - ], - "LiveTalkSpeaker": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - }, - { - "fid": 2, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 3, - "name": "role", - "struct": "SquareMemberRole" - } - ], - "LiveTalkSubscriptionNotification": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "Locale": [ - { - "fid": 1, - "name": "language", - "type": 11 - }, - { - "fid": 2, - "name": "country", - "type": 11 - } - ], - "Location": [ - { - "fid": 1, - "name": "title", - "type": 11 - }, - { - "fid": 2, - "name": "address", - "type": 11 - }, - { - "fid": 3, - "name": "latitude", - "type": 4 - }, - { - "fid": 4, - "name": "longitude", - "type": 4 - }, - { - "fid": 5, - "name": "phone", - "type": 11 - }, - { - "fid": 6, - "name": "categoryId", - "type": 11 - }, - { - "fid": 7, - "name": "provider", - "struct": "Pb1_D6" - }, - { - "fid": 8, - "name": "accuracy", - "struct": "GeolocationAccuracy" - }, - { - "fid": 9, - "name": "altitudeMeters", - "type": 4 - } - ], - "LocationDebugInfo": [ - { - "fid": 1, - "name": "poiInfo", - "struct": "PoiInfo" - } - ], - "LookupAvailableEapRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "LookupAvailableEapResponse": [ - { - "fid": 1, - "name": "availableEap", - "list": 8 - } - ], - "LpPromotionProperty": [ - { - "fid": 1, - "name": "landingPageUrl", - "type": 11 - }, - { - "fid": 2, - "name": "label", - "type": 11 - }, - { - "fid": 3, - "name": "buttonLabel", - "type": 11 - } - ], - "MainPopup": [ - { - "fid": 1, - "name": "imageObsHash", - "type": 11 - }, - { - "fid": 2, - "name": "button", - "struct": "Button" - } - ], - "ManualRepairRequest": [ - { - "fid": 1, - "name": "syncToken", - "type": 11 - }, - { - "fid": 2, - "name": "limit", - "type": 8 - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - } - ], - "ManualRepairResponse": [ - { - "fid": 1, - "name": "events", - "list": "SquareEvent" - }, - { - "fid": 2, - "name": "syncToken", - "type": 11 - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - } - ], - "MapProfileToUsersRequest": [ - { - "fid": 1, - "name": "profileId", - "type": 11 - }, - { - "fid": 2, - "name": "targetMids", - "list": 11 - } - ], - "MapProfileToUsersResponse": [ - { - "fid": 1, - "name": "mappedMids", - "list": 11 - } - ], - "MarkAsReadRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 4, - "name": "messageId", - "type": 11 - }, - { - "fid": 5, - "name": "threadMid", - "type": 11 - } - ], - "MarkChatsAsReadRequest": [ - { - "fid": 2, - "name": "chatMids", - "set": 11 - } - ], - "MarkThreadsAsReadRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "MemberInfo": [ - { - "fid": 1, - "name": "membership", - "struct": "Membership" - }, - { - "fid": 2, - "name": "memberNo", - "type": 8 - }, - { - "fid": 3, - "name": "isJoining", - "type": 2 - }, - { - "fid": 4, - "name": "isSubscribing", - "type": 2 - }, - { - "fid": 5, - "name": "validUntil", - "type": 10 - }, - { - "fid": 6, - "name": "billingItemName", - "type": 11 - } - ], - "Membership": [ - { - "fid": 1, - "name": "membershipId", - "type": 10 - }, - { - "fid": 2, - "name": "uniqueKey", - "type": 11 - }, - { - "fid": 3, - "name": "title", - "type": 11 - }, - { - "fid": 4, - "name": "membershipDescription", - "type": 11 - }, - { - "fid": 5, - "name": "benefits", - "type": 11 - }, - { - "fid": 6, - "name": "isInAppPurchase", - "type": 2 - }, - { - "fid": 7, - "name": "paymentType", - "struct": "og_G" - }, - { - "fid": 8, - "name": "isPublished", - "type": 2 - }, - { - "fid": 9, - "name": "isFullMember", - "type": 2 - }, - { - "fid": 10, - "name": "price", - "type": 11 - }, - { - "fid": 11, - "name": "currency", - "type": 11 - }, - { - "fid": 12, - "name": "membershipStatus", - "struct": "og_E" - }, - { - "fid": 13, - "name": "bot", - "struct": "Bot" - }, - { - "fid": 14, - "name": "closeDate", - "type": 10 - }, - { - "fid": 15, - "name": "membershipCardUrl", - "type": 11 - }, - { - "fid": 16, - "name": "openchatUrl", - "type": 11 - } - ], - "MentionableBot": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "squareMid", - "type": 11 - } - ], - "MentionableSquareMember": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "role", - "struct": "SquareMemberRole" - }, - { - "fid": 5, - "name": "squareMid", - "type": 11 - } - ], - "Message": [ - { - "fid": 1, - "name": "from", - "type": 11 - }, - { - "fid": 2, - "name": "to", - "type": 11 - }, - { - "fid": 3, - "name": "toType", - "struct": "MIDType" - }, - { - "fid": 4, - "name": "id", - "type": 11 - }, - { - "fid": 5, - "name": "createdTime", - "type": 10 - }, - { - "fid": 6, - "name": "deliveredTime", - "type": 10 - }, - { - "fid": 10, - "name": "text", - "type": 11 - }, - { - "fid": 11, - "name": "location", - "struct": "Location" - }, - { - "fid": 14, - "name": "hasContent", - "type": 2 - }, - { - "fid": 15, - "name": "contentType", - "struct": "ContentType" - }, - { - "fid": 17, - "name": "contentPreview", - "type": 11 - }, - { - "fid": 18, - "name": "contentMetadata", - "map": 11, - "key": 11 - }, - { - "fid": 19, - "name": "sessionId", - "type": 3 - }, - { - "fid": 20, - "name": "chunks", - "list": 11 - }, - { - "fid": 21, - "name": "relatedMessageId", - "type": 11 - }, - { - "fid": 22, - "name": "messageRelationType", - "struct": "Pb1_EnumC13015h6" - }, - { - "fid": 23, - "name": "readCount", - "type": 8 - }, - { - "fid": 24, - "name": "relatedMessageServiceCode", - "struct": "Pb1_E7" - }, - { - "fid": 25, - "name": "appExtensionType", - "struct": "Pb1_B" - }, - { - "fid": 27, - "name": "reactions", - "list": "Reaction" - } - ], - "MessageBoxList": [ - { - "fid": 1, - "name": "messageBoxes", - "list": "ExtendedMessageBox" - }, - { - "fid": 2, - "name": "hasNext", - "type": 2 - } - ], - "MessageBoxListRequest": [ - { - "fid": 1, - "name": "minChatId", - "type": 11 - }, - { - "fid": 2, - "name": "maxChatId", - "type": 11 - }, - { - "fid": 3, - "name": "activeOnly", - "type": 2 - }, - { - "fid": 4, - "name": "messageBoxCountLimit", - "type": 8 - }, - { - "fid": 5, - "name": "withUnreadCount", - "type": 2 - }, - { - "fid": 6, - "name": "lastMessagesPerMessageBoxCount", - "type": 8 - }, - { - "fid": 7, - "name": "unreadOnly", - "type": 2 - } - ], - "MessageBoxV2MessageId": [ - { - "fid": 1, - "name": "deliveredTime", - "type": 10 - }, - { - "fid": 2, - "name": "messageId", - "type": 10 - } - ], - "MessageSummary": [ - { - "fid": 1, - "name": "summary", - "list": 11 - }, - { - "fid": 2, - "name": "keywords", - "list": 11 - }, - { - "fid": 3, - "name": "range", - "struct": "MessageSummaryRange" - }, - { - "fid": 4, - "name": "detailedSummary", - "list": 11 - } - ], - "MessageSummaryContent": [ - { - "fid": 1, - "name": "summary", - "list": 11 - }, - { - "fid": 2, - "name": "keywords", - "list": 11 - }, - { - "fid": 3, - "name": "range", - "struct": "MessageSummaryRange" - } - ], - "MessageSummaryRange": [ - { - "fid": 1, - "name": "from", - "type": 10 - }, - { - "fid": 2, - "name": "to", - "type": 10 - } - ], - "MessageVisibility": [ - { - "fid": 1, - "name": "showJoinMessage", - "type": 2 - }, - { - "fid": 2, - "name": "showLeaveMessage", - "type": 2 - }, - { - "fid": 3, - "name": "showKickoutMessage", - "type": 2 - } - ], - "MigratePrimaryUsingQrCodeRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "nonce", - "type": 11 - }, - { - "fid": 3, - "name": "newDevice", - "struct": "h80_Y70_a" - } - ], - "MigratePrimaryUsingQrCodeResponse": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "tokenV3IssueResult", - "struct": "TokenV3IssueResult" - }, - { - "fid": 3, - "name": "tokenV1IssueResult", - "struct": "TokenV1IssueResult" - }, - { - "fid": 4, - "name": "accountCountryCode", - "struct": "h80_X70_a" - }, - { - "fid": 5, - "name": "formattedPhoneNumbers", - "struct": "FormattedPhoneNumbers" - } - ], - "MigratePrimaryWithTokenV3Response": [ - { - "fid": 1, - "name": "authToken", - "type": 11 - }, - { - "fid": 2, - "name": "tokenV3IssueResult", - "struct": "TokenV3IssueResult" - }, - { - "fid": 3, - "name": "countryCode", - "type": 11 - }, - { - "fid": 4, - "name": "prettifiedFormatPhoneNumber", - "type": 11 - }, - { - "fid": 5, - "name": "localFormatPhoneNumber", - "type": 11 - }, - { - "fid": 6, - "name": "mid", - "type": 11 - } - ], - "ModuleResponse": [ - { - "fid": 1, - "name": "moduleInstance", - "struct": "NZ0_C12206t0" - } - ], - "ModuleWithStatusResponse": [ - { - "fid": 1, - "name": "moduleInstance", - "struct": "NZ0_C12221y0" - } - ], - "MyChatapp": [ - { - "fid": 1, - "name": "app", - "struct": "Chatapp" - }, - { - "fid": 2, - "name": "category", - "struct": "zf_EnumC40715c" - }, - { - "fid": 3, - "name": "priority", - "type": 10 - } - ], - "MyDashboardItem": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "messageText", - "type": 11 - }, - { - "fid": 4, - "name": "icon", - "struct": "MyDashboardMessageIcon" - }, - { - "fid": 5, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 6, - "name": "exposedAt", - "type": 10 - }, - { - "fid": 7, - "name": "expiredAt", - "type": 10 - }, - { - "fid": 8, - "name": "order", - "type": 8 - }, - { - "fid": 9, - "name": "targetWrsModelId", - "type": 11 - }, - { - "fid": 10, - "name": "templateId", - "type": 11 - }, - { - "fid": 11, - "name": "fullMessageText", - "type": 11 - }, - { - "fid": 12, - "name": "templateCautionText", - "type": 11 - } - ], - "MyDashboardMessageIcon": [ - { - "fid": 1, - "name": "walletTabIconUrl", - "type": 11 - }, - { - "fid": 2, - "name": "assetTabIconUrl", - "type": 11 - }, - { - "fid": 3, - "name": "iconAltText", - "type": 11 - } - ], - "NZ0_C12150a0": [], - "NZ0_C12152b": [], - "NZ0_C12155c": [], - "NZ0_C12206t0": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "templateName", - "type": 11 - }, - { - "fid": 3, - "name": "fields", - "map": 11, - "key": 11 - }, - { - "fid": 4, - "name": "elements", - "list": "_any" - }, - { - "fid": 5, - "name": "etag", - "type": 11 - }, - { - "fid": 6, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 7, - "name": "name", - "type": 11 - }, - { - "fid": 8, - "name": "recommendable", - "type": 2 - }, - { - "fid": 9, - "name": "recommendedModelId", - "type": 11 - }, - { - "fid": 10, - "name": "flexContent", - "type": 11 - }, - { - "fid": 11, - "name": "categories", - "list": "_any" - }, - { - "fid": 12, - "name": "headers", - "list": "_any" - } - ], - "NZ0_C12208u": [], - "NZ0_C12209u0": [ - { - "fid": 1, - "name": "fixedModules", - "list": "NZ0_C12206t0" - }, - { - "fid": 2, - "name": "etag", - "type": 11 - }, - { - "fid": 3, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 4, - "name": "recommendedModules", - "list": "NZ0_C12206t0" - } - ], - "NZ0_C12212v0": [ - { - "fid": 1, - "name": "topTab", - "struct": "TopTab" - }, - { - "fid": 2, - "name": "subTabs", - "list": "SubTab" - }, - { - "fid": 3, - "name": "forceSelectedSubTabInfo", - "struct": "ForceSelectedSubTabInfo" - }, - { - "fid": 4, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 6, - "name": "etag", - "type": 11 - } - ], - "NZ0_C12214w": [], - "NZ0_C12221y0": [ - { - "fid": 1, - "name": "status", - "struct": "NZ0_EnumC12218x0" - }, - { - "fid": 2, - "name": "id", - "type": 11 - }, - { - "fid": 3, - "name": "templateName", - "type": 11 - }, - { - "fid": 4, - "name": "etag", - "type": 11 - }, - { - "fid": 5, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 6, - "name": "name", - "type": 11 - }, - { - "fid": 7, - "name": "recommendable", - "type": 2 - }, - { - "fid": 8, - "name": "recommendedModelId", - "type": 11 - }, - { - "fid": 9, - "name": "fields", - "map": 11, - "key": 11 - }, - { - "fid": 10, - "name": "elements", - "list": "_any" - }, - { - "fid": 11, - "name": "categories", - "list": "_any" - }, - { - "fid": 12, - "name": "headers", - "list": "_any" - } - ], - "NZ0_C12224z0": [ - { - "fid": 1, - "name": "etag", - "type": 11 - }, - { - "fid": 2, - "name": "refreshTimeSec", - "type": 8 - }, - { - "fid": 3, - "name": "fixedModules", - "list": "NZ0_C12221y0" - }, - { - "fid": 4, - "name": "recommendedModules", - "list": "NZ0_C12221y0" - } - ], - "NZ0_D": [ - { - "fid": 1, - "name": "moduleLayoutV4", - "struct": "NZ0_C12212v0" - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_G0" - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_F0" - } - ], - "NZ0_E": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "etag", - "type": 11 - }, - { - "fid": 3, - "name": "recommendedModelId", - "type": 11 - }, - { - "fid": 4, - "name": "deviceAdId", - "type": 11 - }, - { - "fid": 5, - "name": "agreedWithTargetingAdByMid", - "type": 2 - }, - { - "fid": 6, - "name": "deviceId", - "type": 11 - } - ], - "NZ0_F": [ - { - "fid": 1, - "name": "moduleResponse", - "struct": "ModuleResponse" - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_G0" - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_F0" - } - ], - "NZ0_F0": [], - "NZ0_G": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "etag", - "type": 11 - }, - { - "fid": 3, - "name": "recommendedModelId", - "type": 11 - }, - { - "fid": 4, - "name": "deviceAdId", - "type": 11 - }, - { - "fid": 5, - "name": "agreedWithTargetingAdByMid", - "type": 2 - }, - { - "fid": 6, - "name": "deviceId", - "type": 11 - } - ], - "NZ0_G0": [], - "NZ0_H": [ - { - "fid": 1, - "name": "moduleResponse", - "struct": "ModuleWithStatusResponse" - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_G0" - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_F0" - } - ], - "NZ0_K": [ - { - "fid": 1, - "name": "moduleAggregationResponse", - "struct": "NZ0_C12209u0" - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_G0" - } - ], - "NZ0_M": [ - { - "fid": 1, - "name": "moduleAggregationResponse", - "struct": "NZ0_C12224z0" - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_G0" - } - ], - "NZ0_S": [], - "NZ0_U": [], - "NearbyEntry": [ - { - "fid": 1, - "name": "emid", - "type": 11 - }, - { - "fid": 2, - "name": "distance", - "type": 4 - }, - { - "fid": 3, - "name": "lastUpdatedInSec", - "type": 8 - }, - { - "fid": 4, - "name": "property", - "map": 11, - "key": 11 - }, - { - "fid": 5, - "name": "profile", - "struct": "Profile" - } - ], - "NoBidCallback": [ - { - "fid": 1, - "name": "impEventUrl", - "type": 11 - }, - { - "fid": 2, - "name": "vimpEventUrl", - "type": 11 - }, - { - "fid": 3, - "name": "imp100pEventUrl", - "type": 11 - } - ], - "NoteStatus": [ - { - "fid": 1, - "name": "noteCount", - "type": 8 - }, - { - "fid": 2, - "name": "latestCreatedAt", - "type": 10 - } - ], - "NotificationSetting": [ - { - "fid": 1, - "name": "mute", - "type": 2 - } - ], - "NotificationSettingEntry": [ - { - "fid": 1, - "name": "notificationSetting", - "struct": "NotificationSetting" - } - ], - "NotifyChatAdEntryRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "scenarioId", - "type": 11 - }, - { - "fid": 3, - "name": "sdata", - "type": 11 - } - ], - "NotifyDeviceConnectionRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - }, - { - "fid": 2, - "name": "connectionId", - "type": 11 - }, - { - "fid": 3, - "name": "connectionType", - "struct": "do0_EnumC23148f" - }, - { - "fid": 4, - "name": "code", - "struct": "do0_EnumC23147e" - }, - { - "fid": 5, - "name": "errorReason", - "type": 11 - }, - { - "fid": 6, - "name": "startTime", - "type": 10 - }, - { - "fid": 7, - "name": "endTime", - "type": 10 - } - ], - "NotifyDeviceConnectionResponse": [ - { - "fid": 1, - "name": "latestOffset", - "type": 10 - } - ], - "NotifyDeviceDisconnectionRequest": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - }, - { - "fid": 2, - "name": "connectionId", - "type": 11 - }, - { - "fid": 4, - "name": "disconnectedTime", - "type": 10 - } - ], - "NotifyOATalkroomEventsRequest": [ - { - "fid": 1, - "name": "events", - "list": "OATalkroomEvent" - } - ], - "NotifyScenarioExecutedRequest": [ - { - "fid": 2, - "name": "scenarioResults", - "list": "do0_F" - } - ], - "OATalkroomEvent": [ - { - "fid": 1, - "name": "eventId", - "type": 11 - }, - { - "fid": 2, - "name": "type", - "struct": "kf_p" - }, - { - "fid": 3, - "name": "context", - "struct": "OATalkroomEventContext" - }, - { - "fid": 4, - "name": "content", - "struct": "kf_m" - } - ], - "OATalkroomEventContext": [ - { - "fid": 1, - "name": "timestampMillis", - "type": 10 - }, - { - "fid": 2, - "name": "botMid", - "type": 11 - }, - { - "fid": 3, - "name": "userMid", - "type": 11 - }, - { - "fid": 4, - "name": "os", - "struct": "kf_o" - }, - { - "fid": 5, - "name": "osVersion", - "type": 11 - }, - { - "fid": 6, - "name": "appVersion", - "type": 11 - }, - { - "fid": 7, - "name": "region", - "type": 11 - } - ], - "OaAddFriendArea": [ - { - "fid": 1, - "name": "text", - "type": 11 - } - ], - "Ob1_C12606a0": [], - "Ob1_C12608b": [], - "Ob1_C12618e0": [ - { - "fid": 1, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - }, - { - "fid": 4, - "name": "productType", - "struct": "Ob1_O0" - } - ], - "Ob1_C12621f0": [ - { - "fid": 1, - "name": "history", - "list": "SubscriptionSlotHistory" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalSize", - "type": 10 - } - ], - "Ob1_C12630i0": [], - "Ob1_C12637k1": [], - "Ob1_C12642m0": [], - "Ob1_C12649o1": [], - "Ob1_C12660s1": [], - "Ob1_E": [ - { - "fid": 1, - "name": "stickerSummary", - "struct": "_any" - } - ], - "Ob1_G": [], - "Ob1_H0": [ - { - "fid": 1, - "name": "lpPromotionProperty", - "struct": "_any" - } - ], - "Ob1_I0": [ - { - "fid": 1, - "name": "stickerResourceType", - "type": 8 - }, - { - "fid": 2, - "name": "themeResourceType", - "type": 8 - }, - { - "fid": 3, - "name": "sticonResourceType", - "type": 8 - } - ], - "Ob1_L": [ - { - "fid": 1, - "name": "productTypes", - "set": "Ob1_O0" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - }, - { - "fid": 4, - "name": "shopFilter", - "struct": "ShopFilter" - } - ], - "Ob1_M": [ - { - "fid": 1, - "name": "browsingHistory", - "list": "BrowsingHistory" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalSize", - "type": 8 - } - ], - "Ob1_N": [], - "Ob1_P0": [ - { - "fid": 1, - "name": "stickerSummary", - "struct": "StickerSummary" - }, - { - "fid": 2, - "name": "themeSummary", - "struct": "ThemeSummary" - }, - { - "fid": 3, - "name": "sticonSummary", - "struct": "SticonSummary" - } - ], - "Ob1_U": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "limit", - "type": 8 - }, - { - "fid": 4, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 5, - "name": "sortType", - "struct": "Ob1_V1" - } - ], - "Ob1_V": [ - { - "fid": 1, - "name": "products", - "list": "ProductSummary" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalSize", - "type": 10 - }, - { - "fid": 4, - "name": "maxSlotCount", - "type": 8 - } - ], - "Ob1_W": [ - { - "fid": 1, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 2, - "name": "limit", - "type": 8 - }, - { - "fid": 3, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 4, - "name": "recommendationType", - "struct": "Ob1_EnumC12631i1" - }, - { - "fid": 5, - "name": "productId", - "type": 11 - }, - { - "fid": 6, - "name": "subtypes", - "set": 8 - }, - { - "fid": 7, - "name": "shouldShuffle", - "type": 2 - }, - { - "fid": 8, - "name": "includeStickerIds", - "type": 2 - }, - { - "fid": 9, - "name": "shopFilter", - "struct": "ShopFilter" - } - ], - "Ob1_W0": [ - { - "fid": 1, - "name": "promotionBuddyInfo", - "struct": "PromotionBuddyInfo" - }, - { - "fid": 2, - "name": "promotionInstallInfo", - "struct": "PromotionInstallInfo" - }, - { - "fid": 3, - "name": "promotionMissionInfo", - "struct": "PromotionMissionInfo" - } - ], - "OkButton": [ - { - "fid": 1, - "name": "text", - "type": 11 - } - ], - "OpenSessionRequest": [ - { - "fid": 1, - "name": "metaData", - "map": 11, - "key": 11 - } - ], - "OpenSessionResponse": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "OperationResponse": [ - { - "fid": 1, - "name": "operations", - "list": "Pb1_C13154r6" - }, - { - "fid": 2, - "name": "hasMoreOps", - "type": 2 - }, - { - "fid": 3, - "name": "globalEvents", - "struct": "TGlobalEvents" - }, - { - "fid": 4, - "name": "individualEvents", - "struct": "TIndividualEvents" - } - ], - "OrderInfo": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "orderId", - "type": 11 - }, - { - "fid": 3, - "name": "confirmUrl", - "type": 11 - }, - { - "fid": 4, - "name": "bot", - "struct": "Bot" - } - ], - "P70_k": [], - "PaidCallDialing": [ - { - "fid": 1, - "name": "type", - "struct": "PaidCallType" - }, - { - "fid": 2, - "name": "dialedNumber", - "type": 11 - }, - { - "fid": 3, - "name": "serviceDomain", - "type": 11 - }, - { - "fid": 4, - "name": "productType", - "struct": "Pb1_EnumC13196u6" - }, - { - "fid": 5, - "name": "productName", - "type": 11 - }, - { - "fid": 6, - "name": "multipleProduct", - "type": 2 - }, - { - "fid": 7, - "name": "callerIdStatus", - "struct": "Pb1_EnumC13238x6" - }, - { - "fid": 10, - "name": "balance", - "type": 8 - }, - { - "fid": 11, - "name": "unit", - "type": 11 - }, - { - "fid": 12, - "name": "rate", - "type": 8 - }, - { - "fid": 13, - "name": "displayCode", - "type": 11 - }, - { - "fid": 14, - "name": "calledNumber", - "type": 11 - }, - { - "fid": 15, - "name": "calleeNationalNumber", - "type": 11 - }, - { - "fid": 16, - "name": "calleeCallingCode", - "type": 11 - }, - { - "fid": 17, - "name": "rateDivision", - "type": 11 - }, - { - "fid": 20, - "name": "adMaxMin", - "type": 8 - }, - { - "fid": 21, - "name": "adRemains", - "type": 8 - }, - { - "fid": 22, - "name": "adSessionId", - "type": 11 - } - ], - "PaidCallResponse": [ - { - "fid": 1, - "name": "host", - "struct": "CallHost" - }, - { - "fid": 2, - "name": "dialing", - "struct": "PaidCallDialing" - }, - { - "fid": 3, - "name": "token", - "type": 11 - }, - { - "fid": 4, - "name": "spotItems", - "list": "SpotItem" - } - ], - "PartialFullSyncResponse": [ - { - "fid": 1, - "name": "targetCategories", - "map": 10, - "key": 8 - } - ], - "PasswordHashingParameters": [ - { - "fid": 1, - "name": "hmacKey", - "type": 11 - }, - { - "fid": 2, - "name": "scryptParams", - "struct": "ScryptParams" - } - ], - "PasswordValidationRule": [ - { - "fid": 1, - "name": "type", - "struct": "c80_EnumC18292e" - }, - { - "fid": 2, - "name": "pattern", - "list": 11 - }, - { - "fid": 3, - "name": "clientNoticeMessage", - "type": 11 - } - ], - "PaymentAuthenticationInfo": [ - { - "fid": 1, - "name": "authToken", - "type": 11 - }, - { - "fid": 2, - "name": "confirmMessage", - "type": 11 - } - ], - "PaymentEligibleFriendStatus": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "status", - "struct": "r80_EnumC34367g" - } - ], - "PaymentLineCardInfo": [ - { - "fid": 1, - "name": "designCode", - "type": 11 - }, - { - "fid": 2, - "name": "imageUrl", - "type": 11 - } - ], - "PaymentLineCardIssueForm": [ - { - "fid": 1, - "name": "requiredTermsOfServiceBundle", - "struct": "r80_e0" - }, - { - "fid": 2, - "name": "availableLineCards", - "list": "PaymentLineCardInfo" - } - ], - "PaymentRequiredAgreementsInfo": [ - { - "fid": 1, - "name": "title", - "type": 11 - }, - { - "fid": 2, - "name": "desc", - "type": 11 - }, - { - "fid": 3, - "name": "linkName", - "type": 11 - }, - { - "fid": 4, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 5, - "name": "newAgreements", - "list": 11 - } - ], - "PaymentReservationResult": [ - { - "fid": 1, - "name": "orderId", - "type": 11 - }, - { - "fid": 2, - "name": "confirmUrl", - "type": 11 - }, - { - "fid": 3, - "name": "extras", - "map": 11, - "key": 11 - } - ], - "PaymentTradeInfo": [ - { - "fid": 1, - "name": "chargeRequestId", - "type": 11 - }, - { - "fid": 2, - "name": "chargeRequestType", - "struct": "r80_g0" - }, - { - "fid": 3, - "name": "chargeRequestYmdt", - "type": 10 - }, - { - "fid": 4, - "name": "tradeNumber", - "type": 11 - }, - { - "fid": 7, - "name": "agencyNo", - "type": 11 - }, - { - "fid": 8, - "name": "confirmNo", - "type": 11 - }, - { - "fid": 9, - "name": "expireYmd", - "type": 10 - }, - { - "fid": 10, - "name": "moneyAmount", - "struct": "DisplayMoney" - }, - { - "fid": 11, - "name": "completeYmdt", - "type": 10 - }, - { - "fid": 12, - "name": "paymentProcessCorp", - "type": 11 - }, - { - "fid": 13, - "name": "status", - "struct": "r80_h0" - }, - { - "fid": 14, - "name": "helpUrl", - "type": 11 - }, - { - "fid": 15, - "name": "guideMessage", - "type": 11 - } - ], - "Pb1_A4": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "eMid", - "type": 11 - } - ], - "Pb1_A6": [], - "Pb1_B3": [], - "Pb1_C12916a5": [ - { - "fid": 1, - "name": "wrappedNonce", - "type": 11 - }, - { - "fid": 2, - "name": "kdfParameter1", - "type": 11 - }, - { - "fid": 3, - "name": "kdfParameter2", - "type": 11 - } - ], - "Pb1_C12938c": [ - { - "fid": 1, - "name": "message", - "struct": "AbuseReport" - }, - { - "fid": 2, - "name": "lineMeeting", - "struct": "AbuseReportLineMeeting" - } - ], - "Pb1_C12946c7": [], - "Pb1_C12953d0": [ - { - "fid": 2, - "name": "verifier", - "type": 11 - }, - { - "fid": 3, - "name": "pinCode", - "type": 11 - }, - { - "fid": 4, - "name": "errorCode", - "struct": "ErrorCode" - }, - { - "fid": 5, - "name": "publicKey", - "struct": "Pb1_C13097n4" - }, - { - "fid": 6, - "name": "encryptedKeyChain", - "type": 11 - }, - { - "fid": 7, - "name": "hashKeyChain", - "type": 11 - } - ], - "Pb1_C12980f": [], - "Pb1_C12996g1": [], - "Pb1_C13008h": [], - "Pb1_C13019ha": [], - "Pb1_C13042j5": [], - "Pb1_C13070l5": [], - "Pb1_C13097n4": [ - { - "fid": 1, - "name": "version", - "type": 8 - }, - { - "fid": 2, - "name": "keyId", - "type": 8 - }, - { - "fid": 4, - "name": "keyData", - "type": 11 - }, - { - "fid": 5, - "name": "createdTime", - "type": 10 - } - ], - "Pb1_C13113o6": [ - { - "fid": 1, - "name": "callRoute", - "struct": "CallRoute" - }, - { - "fid": 2, - "name": "paidCallResponse", - "struct": "PaidCallResponse" - } - ], - "Pb1_C13114o7": [], - "Pb1_C13126p5": [], - "Pb1_C13131pa": [], - "Pb1_C13150r2": [], - "Pb1_C13154r6": [ - { - "fid": 1, - "name": "revision", - "type": 10 - }, - { - "fid": 2, - "name": "createdTime", - "type": 10 - }, - { - "fid": 3, - "name": "type", - "struct": "OpType" - }, - { - "fid": 4, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 5, - "name": "checksum", - "type": 11 - }, - { - "fid": 7, - "name": "status", - "struct": "Pb1_EnumC13127p6" - }, - { - "fid": 10, - "name": "param1", - "type": 11 - }, - { - "fid": 11, - "name": "param2", - "type": 11 - }, - { - "fid": 12, - "name": "param3", - "type": 11 - }, - { - "fid": 20, - "name": "message", - "struct": "Message" - } - ], - "Pb1_C13155r7": [ - { - "fid": 1, - "name": "restoreClaim", - "type": 11 - } - ], - "Pb1_C13169s7": [ - { - "fid": 1, - "name": "recoveryKey", - "type": 11 - }, - { - "fid": 2, - "name": "blobPayload", - "type": 11 - } - ], - "Pb1_C13183t7": [], - "Pb1_C13190u0": [ - { - "fid": 1, - "name": "rich", - "struct": "BuddyRichMenuChatBarItem" - }, - { - "fid": 2, - "name": "widgetList", - "struct": "BuddyWidgetListCharBarItem" - }, - { - "fid": 3, - "name": "web", - "struct": "BuddyWebChatBarItem" - } - ], - "Pb1_C13202uc": [], - "Pb1_C13208v4": [ - { - "fid": 1, - "name": "groupExtra", - "struct": "GroupExtra" - }, - { - "fid": 2, - "name": "peerExtra", - "struct": "Pb1_A6" - } - ], - "Pb1_C13254y8": [], - "Pb1_C13263z3": [ - { - "fid": 1, - "name": "blobHeader", - "type": 11 - }, - { - "fid": 2, - "name": "blobPayload", - "type": 11 - }, - { - "fid": 3, - "name": "reason", - "struct": "Pb1_A3" - } - ], - "Pb1_Ca": [], - "Pb1_E3": [ - { - "fid": 1, - "name": "blobHeader", - "type": 11 - }, - { - "fid": 2, - "name": "payloadDataList", - "list": "Pb1_X5" - } - ], - "Pb1_Ea": [], - "Pb1_F3": [], - "Pb1_H3": [], - "Pb1_I3": [], - "Pb1_Ia": [], - "Pb1_J5": [], - "Pb1_K3": [], - "Pb1_M3": [], - "Pb1_O": [], - "Pb1_O3": [], - "Pb1_P9": [], - "Pb1_Q8": [], - "Pb1_S5": [], - "Pb1_Sb": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "encryptedKeyChain", - "type": 11 - }, - { - "fid": 3, - "name": "hashKeyChain", - "type": 11 - } - ], - "Pb1_U1": [], - "Pb1_U3": [ - { - "fid": 1, - "name": "keyVersion", - "type": 8 - }, - { - "fid": 2, - "name": "groupKeyId", - "type": 8 - }, - { - "fid": 3, - "name": "creator", - "type": 11 - }, - { - "fid": 4, - "name": "creatorKeyId", - "type": 8 - }, - { - "fid": 5, - "name": "receiver", - "type": 11 - }, - { - "fid": 6, - "name": "receiverKeyId", - "type": 8 - }, - { - "fid": 7, - "name": "encryptedSharedKey", - "type": 11 - }, - { - "fid": 8, - "name": "allowedTypes", - "set": 8 - }, - { - "fid": 9, - "name": "specVersion", - "type": 8 - } - ], - "Pb1_V3": [ - { - "fid": 1, - "name": "version", - "type": 8 - }, - { - "fid": 2, - "name": "keyId", - "type": 8 - }, - { - "fid": 4, - "name": "publicKey", - "type": 11 - }, - { - "fid": 5, - "name": "privateKey", - "type": 11 - }, - { - "fid": 6, - "name": "createdTime", - "type": 10 - } - ], - "Pb1_W4": [], - "Pb1_W5": [ - { - "fid": 1, - "name": "e2ee", - "struct": "E2EEMetadata" - }, - { - "fid": 2, - "name": "singleValue", - "struct": "SingleValueMetadata" - } - ], - "Pb1_W6": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "publicKey", - "struct": "Pb1_C13097n4" - }, - { - "fid": 3, - "name": "blobPayload", - "type": 11 - } - ], - "Pb1_X": [ - { - "fid": 1, - "name": "verifier", - "type": 11 - }, - { - "fid": 2, - "name": "publicKey", - "struct": "Pb1_C13097n4" - }, - { - "fid": 3, - "name": "encryptedKeyChain", - "type": 11 - }, - { - "fid": 4, - "name": "hashKeyChain", - "type": 11 - }, - { - "fid": 5, - "name": "errorCode", - "struct": "ErrorCode" - } - ], - "Pb1_X5": [ - { - "fid": 1, - "name": "metadata", - "struct": "Pb1_W5" - }, - { - "fid": 2, - "name": "blobPayload", - "type": 11 - } - ], - "Pb1_X7": [ - { - "fid": 1, - "name": "operationResponse", - "struct": "OperationResponse" - }, - { - "fid": 2, - "name": "fullSyncResponse", - "struct": "FullSyncResponse" - }, - { - "fid": 3, - "name": "partialFullSyncResponse", - "struct": "PartialFullSyncResponse" - } - ], - "Pb1_Y4": [], - "Pb1_Za": [], - "Pb1_Zc": [], - "Pb1_ad": [ - { - "fid": 1, - "name": "title", - "type": 11 - } - ], - "Pb1_cd": [], - "PendingAgreementsResponse": [ - { - "fid": 1, - "name": "pendingAgreements", - "list": 8 - } - ], - "PermitLoginRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "metaData", - "map": 11, - "key": 11 - } - ], - "PermitLoginResponse": [ - { - "fid": 1, - "name": "oneTimeToken", - "type": 11 - } - ], - "PhoneVerificationResult": [ - { - "fid": 1, - "name": "verificationResult", - "struct": "VerificationResult" - }, - { - "fid": 2, - "name": "accountMigrationCheckType", - "struct": "Pb1_EnumC13022i" - }, - { - "fid": 3, - "name": "recommendAddFriends", - "type": 2 - } - ], - "PocketMoneyInfo": [ - { - "fid": 1, - "name": "assetServiceInfo", - "struct": "AssetServiceInfo" - }, - { - "fid": 2, - "name": "displayType", - "struct": "NZ0_I0" - }, - { - "fid": 3, - "name": "productType", - "struct": "NZ0_K0" - }, - { - "fid": 4, - "name": "refinanceText", - "type": 11 - } - ], - "PoiInfo": [ - { - "fid": 1, - "name": "poiId", - "type": 11 - }, - { - "fid": 2, - "name": "poiRealm", - "struct": "Pb1_F6" - } - ], - "PointInfo": [ - { - "fid": 1, - "name": "assetServiceInfo", - "struct": "AssetServiceInfo" - } - ], - "PopularKeyword": [ - { - "fid": 1, - "name": "value", - "type": 11 - }, - { - "fid": 2, - "name": "highlighted", - "type": 2 - }, - { - "fid": 3, - "name": "id", - "type": 10 - } - ], - "Popup": [ - { - "fid": 1, - "name": "id", - "type": 10 - }, - { - "fid": 2, - "name": "country", - "type": 11 - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "type", - "struct": "PopupType" - }, - { - "fid": 5, - "name": "content", - "struct": "PopupContent" - }, - { - "fid": 6, - "name": "activated", - "type": 2 - }, - { - "fid": 7, - "name": "revision", - "type": 10 - }, - { - "fid": 8, - "name": "startsAt", - "type": 10 - }, - { - "fid": 9, - "name": "endsAt", - "type": 10 - }, - { - "fid": 10, - "name": "createdAt", - "type": 10 - } - ], - "PopupContent": [ - { - "fid": 1, - "name": "mainPopUp", - "struct": "MainPopup" - }, - { - "fid": 2, - "name": "chatroomPopup", - "struct": "ChatroomPopup" - } - ], - "PopupProperty": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "startDateTimeMillis", - "type": 10 - }, - { - "fid": 4, - "name": "endDateTimeMillis", - "type": 10 - }, - { - "fid": 5, - "name": "popupContents", - "list": "PopupContent" - }, - { - "fid": 6, - "name": "wrsCampaignId", - "type": 11 - }, - { - "fid": 7, - "name": "optOut", - "type": 2 - }, - { - "fid": 8, - "name": "layoutSize", - "struct": "NZ0_N0" - } - ], - "Price": [ - { - "fid": 1, - "name": "currency", - "type": 11 - }, - { - "fid": 2, - "name": "amount", - "type": 11 - }, - { - "fid": 3, - "name": "priceString", - "type": 11 - } - ], - "Priority": [ - { - "fid": 1, - "name": "value", - "type": 10 - } - ], - "Product": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "productVersion", - "type": 10 - }, - { - "fid": 3, - "name": "productDetails", - "struct": "AR0_o" - } - ], - "ProductDetail": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "type": 11 - }, - { - "fid": 4, - "name": "subtype", - "struct": "Ob1_X1" - }, - { - "fid": 5, - "name": "billingCpId", - "type": 11 - }, - { - "fid": 11, - "name": "name", - "type": 11 - }, - { - "fid": 12, - "name": "author", - "type": 11 - }, - { - "fid": 13, - "name": "details", - "type": 11 - }, - { - "fid": 14, - "name": "copyright", - "type": 11 - }, - { - "fid": 15, - "name": "notice", - "type": 11 - }, - { - "fid": 16, - "name": "promotionInfo", - "struct": "PromotionInfo" - }, - { - "fid": 21, - "name": "latestVersion", - "type": 10 - }, - { - "fid": 22, - "name": "latestVersionString", - "type": 11 - }, - { - "fid": 23, - "name": "version", - "type": 10 - }, - { - "fid": 24, - "name": "versionString", - "type": 11 - }, - { - "fid": 25, - "name": "applicationVersionRange", - "struct": "ApplicationVersionRange" - }, - { - "fid": 31, - "name": "owned", - "type": 2 - }, - { - "fid": 32, - "name": "grantedByDefault", - "type": 2 - }, - { - "fid": 41, - "name": "validFor", - "type": 8 - }, - { - "fid": 42, - "name": "validUntil", - "type": 10 - }, - { - "fid": 51, - "name": "onSale", - "type": 2 - }, - { - "fid": 52, - "name": "salesFlags", - "set": 11 - }, - { - "fid": 53, - "name": "availableForPresent", - "type": 2 - }, - { - "fid": 54, - "name": "availableForMyself", - "type": 2 - }, - { - "fid": 61, - "name": "priceTier", - "type": 8 - }, - { - "fid": 62, - "name": "price", - "struct": "Price" - }, - { - "fid": 63, - "name": "priceInLineCoin", - "type": 11 - }, - { - "fid": 64, - "name": "localizedPrice", - "struct": "Price" - }, - { - "fid": 91, - "name": "images", - "key": 11 - }, - { - "fid": 92, - "name": "attributes", - "map": 11, - "key": 11 - }, - { - "fid": 93, - "name": "authorId", - "type": 11 - }, - { - "fid": 94, - "name": "stickerResourceType", - "struct": "StickerResourceType" - }, - { - "fid": 95, - "name": "productProperty", - "struct": "jp_naver_line_shop_protocol_thrift_ProductProperty" - }, - { - "fid": 96, - "name": "productSalesState", - "struct": "Ob1_J0" - }, - { - "fid": 97, - "name": "installedTime", - "type": 10 - }, - { - "fid": 101, - "name": "wishProperty", - "struct": "ProductWishProperty" - }, - { - "fid": 102, - "name": "subscriptionProperty", - "struct": "ProductSubscriptionProperty" - }, - { - "fid": 103, - "name": "productPromotionProperty", - "struct": "Ob1_H0" - }, - { - "fid": 104, - "name": "availableInCountry", - "type": 2 - }, - { - "fid": 105, - "name": "editorsPickBanners", - "list": "EditorsPickBannerForClient" - }, - { - "fid": 106, - "name": "ableToBeGivenAsPresent", - "type": 2 - }, - { - "fid": 107, - "name": "madeWithStickerMaker", - "type": 2 - }, - { - "fid": 108, - "name": "customDownloadButtonLabel", - "type": 11 - } - ], - "ProductList": [ - { - "fid": 1, - "name": "productList", - "list": "ProductDetail" - }, - { - "fid": 2, - "name": "offset", - "type": 8 - }, - { - "fid": 3, - "name": "totalSize", - "type": 8 - }, - { - "fid": 11, - "name": "title", - "type": 11 - } - ], - "ProductListByAuthorRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "authorId", - "type": 11 - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "shopFilter", - "struct": "ShopFilter" - }, - { - "fid": 6, - "name": "includeStickerIds", - "type": 2 - }, - { - "fid": 7, - "name": "additionalProductTypes", - "list": 8 - }, - { - "fid": 8, - "name": "showcaseType", - "struct": "Ob1_EnumC12666u1" - } - ], - "ProductSearchSummary": [], - "ProductSubscriptionProperty": [ - { - "fid": 1, - "name": "availableForSubscribe", - "type": 2 - }, - { - "fid": 2, - "name": "subscriptionAvailability", - "struct": "Ob1_D0" - } - ], - "ProductSummary": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 11, - "name": "name", - "type": 11 - }, - { - "fid": 21, - "name": "latestVersion", - "type": 10 - }, - { - "fid": 25, - "name": "applicationVersionRange", - "struct": "ApplicationVersionRange" - }, - { - "fid": 32, - "name": "grantedByDefault", - "type": 2 - }, - { - "fid": 92, - "name": "attributes", - "map": 11, - "key": 11 - }, - { - "fid": 93, - "name": "productTypeSummary", - "struct": "Ob1_P0" - }, - { - "fid": 94, - "name": "validUntil", - "type": 10 - }, - { - "fid": 95, - "name": "validFor", - "type": 8 - }, - { - "fid": 96, - "name": "installedTime", - "type": 10 - }, - { - "fid": 97, - "name": "availability", - "struct": "Ob1_D0" - }, - { - "fid": 98, - "name": "authorId", - "type": 11 - }, - { - "fid": 99, - "name": "canAutoDownload", - "type": 2 - }, - { - "fid": 100, - "name": "promotionInfo", - "struct": "PromotionInfo" - } - ], - "ProductSummaryForAutoSuggest": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "version", - "type": 10 - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "stickerResourceType", - "struct": "StickerResourceType" - }, - { - "fid": 5, - "name": "suggestVersion", - "type": 10 - }, - { - "fid": 6, - "name": "popupLayer", - "struct": "Ob1_B0" - }, - { - "fid": 7, - "name": "type", - "struct": "Ob1_O0" - }, - { - "fid": 8, - "name": "resourceType", - "struct": "Ob1_I0" - }, - { - "fid": 9, - "name": "stickerSize", - "struct": "Ob1_C1" - } - ], - "ProductSummaryList": [ - { - "fid": 1, - "name": "productList", - "list": "ProductSummary" - }, - { - "fid": 2, - "name": "offset", - "type": 8 - }, - { - "fid": 3, - "name": "totalSize", - "type": 8 - } - ], - "ProductValidationRequest": [ - { - "fid": 1, - "name": "validationScheme", - "struct": "ProductValidationScheme" - }, - { - "fid": 10, - "name": "authCode", - "type": 11 - } - ], - "ProductValidationResult": [ - { - "fid": 1, - "name": "validated", - "type": 2 - } - ], - "ProductValidationScheme": [ - { - "fid": 10, - "name": "key", - "type": 11 - }, - { - "fid": 11, - "name": "offset", - "type": 10 - }, - { - "fid": 12, - "name": "size", - "type": 10 - } - ], - "ProductWishProperty": [ - { - "fid": 1, - "name": "totalCount", - "type": 10 - } - ], - "Profile": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "userid", - "type": 11 - }, - { - "fid": 10, - "name": "phone", - "type": 11 - }, - { - "fid": 11, - "name": "email", - "type": 11 - }, - { - "fid": 12, - "name": "regionCode", - "type": 11 - }, - { - "fid": 20, - "name": "displayName", - "type": 11 - }, - { - "fid": 21, - "name": "phoneticName", - "type": 11 - }, - { - "fid": 22, - "name": "pictureStatus", - "type": 11 - }, - { - "fid": 23, - "name": "thumbnailUrl", - "type": 11 - }, - { - "fid": 24, - "name": "statusMessage", - "type": 11 - }, - { - "fid": 31, - "name": "allowSearchByUserid", - "type": 2 - }, - { - "fid": 32, - "name": "allowSearchByEmail", - "type": 2 - }, - { - "fid": 33, - "name": "picturePath", - "type": 11 - }, - { - "fid": 34, - "name": "musicProfile", - "type": 11 - }, - { - "fid": 35, - "name": "videoProfile", - "type": 11 - }, - { - "fid": 36, - "name": "statusMessageContentMetadata", - "map": 11, - "key": 11 - }, - { - "fid": 37, - "name": "avatarProfile", - "struct": "AvatarProfile" - }, - { - "fid": 38, - "name": "nftProfile", - "type": 2 - }, - { - "fid": 39, - "name": "pictureSource", - "struct": "Pb1_N6" - }, - { - "fid": 40, - "name": "profileId", - "type": 11 - }, - { - "fid": 41, - "name": "profileType", - "struct": "Pb1_O6" - }, - { - "fid": 42, - "name": "createdTimeMillis", - "type": 10 - } - ], - "ProfileContent": [ - { - "fid": 1, - "name": "value", - "type": 11 - }, - { - "fid": 2, - "name": "meta", - "map": 11, - "key": 11 - } - ], - "ProfileRefererContent": [ - { - "fid": 1, - "name": "oatQueryParameters", - "map": 11, - "key": 11 - } - ], - "PromotionBuddyDetail": [ - { - "fid": 1, - "name": "searchId", - "type": 11 - }, - { - "fid": 2, - "name": "contactStatus", - "struct": "ContactStatus" - }, - { - "fid": 3, - "name": "name", - "type": 11 - }, - { - "fid": 4, - "name": "pictureUrl", - "type": 11 - }, - { - "fid": 5, - "name": "statusMessage", - "type": 11 - }, - { - "fid": 6, - "name": "brandType", - "struct": "Ob1_EnumC12641m" - } - ], - "PromotionBuddyInfo": [ - { - "fid": 1, - "name": "buddyMid", - "type": 11 - }, - { - "fid": 2, - "name": "promotionBuddyDetail", - "struct": "PromotionBuddyDetail" - }, - { - "fid": 3, - "name": "showBanner", - "type": 2 - } - ], - "PromotionInfo": [ - { - "fid": 1, - "name": "promotionType", - "struct": "Ob1_EnumC12610b1" - }, - { - "fid": 2, - "name": "promotionDetail", - "struct": "Ob1_W0" - }, - { - "fid": 51, - "name": "buddyInfo", - "struct": "PromotionBuddyInfo" - } - ], - "PromotionInstallInfo": [ - { - "fid": 1, - "name": "downloadUrl", - "type": 11 - }, - { - "fid": 2, - "name": "customUrlSchema", - "type": 11 - } - ], - "PromotionMissionInfo": [ - { - "fid": 1, - "name": "promotionMissionType", - "struct": "Ob1_EnumC12607a1" - }, - { - "fid": 2, - "name": "missionCompleted", - "type": 2 - }, - { - "fid": 3, - "name": "downloadUrl", - "type": 11 - }, - { - "fid": 4, - "name": "customUrlSchema", - "type": 11 - }, - { - "fid": 5, - "name": "oaMid", - "type": 11 - } - ], - "Provider": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "providerPageUrl", - "type": 11 - } - ], - "PublicKeyCredentialCreationOptions": [ - { - "fid": 1, - "name": "rp", - "struct": "PublicKeyCredentialRpEntity" - }, - { - "fid": 2, - "name": "user", - "struct": "PublicKeyCredentialUserEntity" - }, - { - "fid": 3, - "name": "challenge", - "type": 11 - }, - { - "fid": 4, - "name": "pubKeyCredParams", - "list": "PublicKeyCredentialParameters" - }, - { - "fid": 5, - "name": "timeout", - "type": 10 - }, - { - "fid": 6, - "name": "excludeCredentials", - "set": "PublicKeyCredentialDescriptor" - }, - { - "fid": 7, - "name": "authenticatorSelection", - "struct": "AuthenticatorSelectionCriteria" - }, - { - "fid": 8, - "name": "attestation", - "type": 11 - }, - { - "fid": 9, - "name": "extensions", - "struct": "AuthenticationExtensionsClientInputs" - } - ], - "PublicKeyCredentialDescriptor": [ - { - "fid": 1, - "name": "type", - "type": 11 - }, - { - "fid": 2, - "name": "id", - "type": 11 - }, - { - "fid": 3, - "name": "transports", - "set": 11 - } - ], - "PublicKeyCredentialParameters": [ - { - "fid": 1, - "name": "type", - "type": 11 - }, - { - "fid": 2, - "name": "alg", - "type": 8 - } - ], - "PublicKeyCredentialRequestOptions": [ - { - "fid": 1, - "name": "challenge", - "type": 11 - }, - { - "fid": 2, - "name": "timeout", - "type": 10 - }, - { - "fid": 3, - "name": "rpId", - "type": 11 - }, - { - "fid": 4, - "name": "allowCredentials", - "set": "PublicKeyCredentialDescriptor" - }, - { - "fid": 5, - "name": "userVerification", - "type": 11 - }, - { - "fid": 6, - "name": "extensions", - "struct": "AuthenticationExtensionsClientInputs" - } - ], - "PublicKeyCredentialRpEntity": [ - { - "fid": 1, - "name": "name", - "type": 11 - }, - { - "fid": 2, - "name": "icon", - "type": 11 - }, - { - "fid": 3, - "name": "id", - "type": 11 - } - ], - "PublicKeyCredentialUserEntity": [ - { - "fid": 1, - "name": "name", - "type": 11 - }, - { - "fid": 2, - "name": "icon", - "type": 11 - }, - { - "fid": 3, - "name": "id", - "type": 11 - }, - { - "fid": 4, - "name": "displayName", - "type": 11 - } - ], - "PurchaseEnabledRequest": [ - { - "fid": 1, - "name": "uniqueKey", - "type": 11 - } - ], - "PurchaseOrder": [ - { - "fid": 1, - "name": "shopId", - "type": 11 - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 5, - "name": "recipientMid", - "type": 11 - }, - { - "fid": 11, - "name": "price", - "struct": "Price" - }, - { - "fid": 12, - "name": "enableLinePointAutoExchange", - "type": 2 - }, - { - "fid": 21, - "name": "locale", - "struct": "Locale" - }, - { - "fid": 31, - "name": "presentAttributes", - "map": 11, - "key": 11 - } - ], - "PurchaseOrderResponse": [ - { - "fid": 1, - "name": "orderId", - "type": 11 - }, - { - "fid": 11, - "name": "attributes", - "map": 11, - "key": 11 - }, - { - "fid": 12, - "name": "billingConfirmUrl", - "type": 11 - } - ], - "PurchaseRecord": [ - { - "fid": 1, - "name": "productDetail", - "struct": "ProductDetail" - }, - { - "fid": 11, - "name": "purchasedTime", - "type": 10 - }, - { - "fid": 21, - "name": "giver", - "type": 11 - }, - { - "fid": 22, - "name": "recipient", - "type": 11 - }, - { - "fid": 31, - "name": "purchasedPrice", - "struct": "Price" - } - ], - "PurchaseRecordList": [ - { - "fid": 1, - "name": "purchaseRecords", - "list": "PurchaseRecord" - }, - { - "fid": 2, - "name": "offset", - "type": 8 - }, - { - "fid": 3, - "name": "totalSize", - "type": 8 - } - ], - "PurchaseSubscriptionRequest": [ - { - "fid": 1, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 2, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 3, - "name": "storeCode", - "struct": "Ob1_K1" - }, - { - "fid": 4, - "name": "storeOrderId", - "type": 11 - }, - { - "fid": 5, - "name": "outsideAppPurchase", - "type": 2 - }, - { - "fid": 6, - "name": "unavailableItemPurchase", - "type": 2 - } - ], - "PurchaseSubscriptionResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_M1" - }, - { - "fid": 2, - "name": "orderId", - "type": 11 - }, - { - "fid": 3, - "name": "confirmUrl", - "type": 11 - } - ], - "PushRecvReport": [ - { - "fid": 1, - "name": "pushTrackingId", - "type": 11 - }, - { - "fid": 2, - "name": "recvTimestamp", - "type": 10 - }, - { - "fid": 3, - "name": "battery", - "type": 8 - }, - { - "fid": 4, - "name": "batteryMode", - "struct": "Pb1_EnumC13009h0" - }, - { - "fid": 5, - "name": "clientNetworkType", - "struct": "Pb1_EnumC12998g3" - }, - { - "fid": 6, - "name": "carrierCode", - "type": 11 - }, - { - "fid": 7, - "name": "displayTimestamp", - "type": 10 - } - ], - "PutE2eeKeyRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "e2eeKey", - "map": 11, - "key": 11 - } - ], - "Q70_l": [], - "Q70_o": [], - "Qj_C13595l": [ - { - "fid": 1, - "name": "none", - "struct": "_any" - }, - { - "fid": 2, - "name": "chat", - "struct": "LiffChatContext" - }, - { - "fid": 3, - "name": "squareChat", - "struct": "LiffSquareChatContext" - } - ], - "Qj_C13599p": [ - { - "fid": 3, - "name": "consentRequired", - "struct": "LiffErrorConsentRequired" - }, - { - "fid": 4, - "name": "permanentLinkInvalidRequest", - "struct": "LiffErrorPermanentLinkInvalidRequest" - } - ], - "Qj_C13602t": [ - { - "fid": 1, - "name": "externalService", - "struct": "_any" - } - ], - "Qj_C13607y": [], - "QuickMenuCouponInfo": [ - { - "fid": 1, - "name": "couponCount", - "type": 11 - }, - { - "fid": 2, - "name": "mainText", - "type": 11 - }, - { - "fid": 3, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 4, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 5, - "name": "targetId", - "type": 11 - }, - { - "fid": 6, - "name": "targetName", - "type": 11 - }, - { - "fid": 7, - "name": "responseStatus", - "struct": "NZ0_W0" - }, - { - "fid": 8, - "name": "darkModeIconUrl", - "type": 11 - } - ], - "QuickMenuMyCardInfo": [ - { - "fid": 1, - "name": "myCardItems", - "list": "QuickMenuMyCardItem" - }, - { - "fid": 2, - "name": "responseStatus", - "struct": "NZ0_W0" - } - ], - "QuickMenuMyCardItem": [ - { - "fid": 1, - "name": "itemType", - "struct": "NZ0_S0" - }, - { - "fid": 2, - "name": "mainText", - "type": 11 - }, - { - "fid": 3, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 4, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 5, - "name": "targetId", - "type": 11 - }, - { - "fid": 6, - "name": "targetName", - "type": 11 - }, - { - "fid": 7, - "name": "darkModeIconUrl", - "type": 11 - } - ], - "QuickMenuPointInfo": [ - { - "fid": 1, - "name": "balance", - "type": 11 - }, - { - "fid": 2, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 3, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 4, - "name": "targetId", - "type": 11 - }, - { - "fid": 5, - "name": "targetName", - "type": 11 - }, - { - "fid": 6, - "name": "responseStatus", - "struct": "NZ0_W0" - } - ], - "R70_a": [], - "R70_c": [], - "R70_d": [], - "R70_t": [], - "RSAEncryptedLoginInfo": [ - { - "fid": 1, - "name": "loginId", - "type": 11 - }, - { - "fid": 2, - "name": "loginPassword", - "type": 11 - } - ], - "RSAEncryptedPassword": [ - { - "fid": 1, - "name": "encrypted", - "type": 11 - }, - { - "fid": 2, - "name": "keyName", - "type": 11 - } - ], - "RSAKey": [ - { - "fid": 1, - "name": "keynm", - "type": 11 - }, - { - "fid": 2, - "name": "nvalue", - "type": 11 - }, - { - "fid": 3, - "name": "evalue", - "type": 11 - }, - { - "fid": 4, - "name": "sessionKey", - "type": 11 - } - ], - "ReactRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "messageId", - "type": 10 - }, - { - "fid": 3, - "name": "reactionType", - "struct": "ReactionType" - } - ], - "ReactToMessageRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "messageId", - "type": 11 - }, - { - "fid": 4, - "name": "reactionType", - "struct": "MessageReactionType" - }, - { - "fid": 5, - "name": "threadMid", - "type": 11 - } - ], - "ReactToMessageResponse": [ - { - "fid": 1, - "name": "reaction", - "struct": "SquareMessageReaction" - }, - { - "fid": 2, - "name": "status", - "struct": "SquareMessageReactionStatus" - } - ], - "Reaction": [ - { - "fid": 1, - "name": "fromUserMid", - "type": 11 - }, - { - "fid": 2, - "name": "atMillis", - "type": 10 - }, - { - "fid": 3, - "name": "reactionType", - "struct": "ReactionType" - } - ], - "ReactionType": [ - { - "fid": 1, - "name": "predefinedReactionType", - "struct": "MessageReactionType" - } - ], - "RecommendationDetail": [ - { - "fid": 1, - "name": "createdTime", - "type": 10 - }, - { - "fid": 2, - "name": "reasons", - "list": "LN0_z0" - }, - { - "fid": 4, - "name": "hidden", - "type": 2 - } - ], - "RecommendationReasonSharedChat": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "RefreshAccessTokenRequest": [ - { - "fid": 1, - "name": "refreshToken", - "type": 11 - } - ], - "RefreshAccessTokenResponse": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - }, - { - "fid": 2, - "name": "durationUntilRefreshInSec", - "type": 10 - }, - { - "fid": 3, - "name": "retryPolicy", - "struct": "RetryPolicy" - }, - { - "fid": 4, - "name": "tokenIssueTimeEpochSec", - "type": 10 - }, - { - "fid": 5, - "name": "refreshToken", - "type": 11 - } - ], - "RefreshApiRetryPolicy": [ - { - "fid": 1, - "name": "initialDelayInMillis", - "type": 10 - }, - { - "fid": 2, - "name": "maxDelayInMillis", - "type": 10 - }, - { - "fid": 3, - "name": "multiplier", - "type": 4 - }, - { - "fid": 4, - "name": "jitterRate", - "type": 4 - } - ], - "RefreshSubscriptionsRequest": [ - { - "fid": 2, - "name": "subscriptions", - "list": 10 - } - ], - "RefreshSubscriptionsResponse": [ - { - "fid": 1, - "name": "ttlMillis", - "type": 10 - }, - { - "fid": 2, - "name": "subscriptionStates", - "map": "SubscriptionState", - "key": 10 - } - ], - "RegPublicKeyCredential": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "type", - "type": 11 - }, - { - "fid": 3, - "name": "response", - "struct": "AuthenticatorAttestationResponse" - }, - { - "fid": 4, - "name": "extensionResults", - "struct": "AuthenticationExtensionsClientOutputs" - } - ], - "RegisterCampaignRewardRequest": [ - { - "fid": 1, - "name": "campaignId", - "type": 11 - } - ], - "RegisterCampaignRewardResponse": [ - { - "fid": 1, - "name": "campaignStatus", - "struct": "NZ0_EnumC12188n" - }, - { - "fid": 2, - "name": "resultPopupProperty", - "struct": "ResultPopupProperty" - }, - { - "fid": 3, - "name": "errorMessage", - "type": 11 - }, - { - "fid": 4, - "name": "registeredId", - "type": 11 - }, - { - "fid": 5, - "name": "registeredDateTimeMillis", - "type": 10 - }, - { - "fid": 6, - "name": "redirectUrlWithoutResultPopup", - "type": 11 - } - ], - "RegisterE2EEPublicKeyV2Response": [ - { - "fid": 1, - "name": "publicKey", - "struct": "Pb1_C13097n4" - }, - { - "fid": 2, - "name": "isMasterKeyConflict", - "type": 2 - } - ], - "RegisterPrimaryCredentialRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "credential", - "struct": "R70_p80_m" - } - ], - "RegisterPrimaryWithTokenV3Response": [ - { - "fid": 1, - "name": "authToken", - "type": 11 - }, - { - "fid": 2, - "name": "tokenV3IssueResult", - "struct": "TokenV3IssueResult" - }, - { - "fid": 3, - "name": "mid", - "type": 11 - } - ], - "I80_q0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "encryptionKey", - "struct": "I80_y0" - } - ], - "RegularBadge": [ - { - "fid": 1, - "name": "label", - "type": 11 - }, - { - "fid": 2, - "name": "color", - "type": 11 - } - ], - "ReissueChatTicketRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "groupMid", - "type": 11 - } - ], - "ReissueChatTicketResponse": [ - { - "fid": 1, - "name": "ticketId", - "type": 11 - } - ], - "RejectChatInvitationRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - } - ], - "RejectSpeakersRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "targetMids", - "set": 11 - } - ], - "RejectSquareMembersRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "requestedMemberMids", - "list": 11 - } - ], - "RejectSquareMembersResponse": [ - { - "fid": 1, - "name": "rejectedMembers", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "status", - "struct": "SquareStatus" - } - ], - "RejectToSpeakRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "inviteRequestId", - "type": 11 - } - ], - "RemoveFollowerRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - } - ], - "RemoveFromFollowBlacklistRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - } - ], - "RemoveItemFromCollectionRequest": [ - { - "fid": 1, - "name": "collectionId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "itemId", - "type": 11 - } - ], - "RemoveLiveTalkSubscriptionRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "RemoveProductFromSubscriptionSlotRequest": [ - { - "fid": 1, - "name": "productType", - "struct": "Ob1_O0" - }, - { - "fid": 2, - "name": "productId", - "type": 11 - }, - { - "fid": 3, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 4, - "name": "productIds", - "set": 11 - } - ], - "RemoveProductFromSubscriptionSlotResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_U1" - } - ], - "RemoveSubscriptionsRequest": [ - { - "fid": 2, - "name": "unsubscriptions", - "list": 10 - } - ], - "RepairGroupMembers": [ - { - "fid": 1, - "name": "numMembers", - "type": 8 - }, - { - "fid": 3, - "name": "invalidGroup", - "type": 2 - } - ], - "RepairProfileMappingMembers": [ - { - "fid": 1, - "name": "matched", - "type": 2 - }, - { - "fid": 2, - "name": "numMembers", - "type": 8 - } - ], - "RepairTriggerConfigurationsElement": [ - { - "fid": 1, - "name": "serverConfigurations", - "struct": "Configurations" - }, - { - "fid": 2, - "name": "nextCallIntervalMinutes", - "type": 8 - } - ], - "RepairTriggerGroupMembersElement": [ - { - "fid": 1, - "name": "matchedGroups", - "map": "RepairGroupMembers", - "key": 11 - }, - { - "fid": 2, - "name": "mismatchedGroups", - "map": "RepairGroupMembers", - "key": 11 - }, - { - "fid": 3, - "name": "nextCallIntervalMinutes", - "type": 8 - } - ], - "RepairTriggerNumElement": [ - { - "fid": 1, - "name": "matched", - "type": 2 - }, - { - "fid": 2, - "name": "numValue", - "type": 8 - }, - { - "fid": 3, - "name": "nextCallIntervalMinutes", - "type": 8 - } - ], - "RepairTriggerProfileElement": [ - { - "fid": 1, - "name": "serverProfile", - "struct": "Profile" - }, - { - "fid": 2, - "name": "nextCallIntervalMinutes", - "type": 8 - }, - { - "fid": 3, - "name": "serverMultiProfiles", - "list": "Profile" - } - ], - "RepairTriggerProfileMappingListElement": [ - { - "fid": 1, - "name": "profileMappings", - "map": "RepairProfileMappingMembers", - "key": 11 - }, - { - "fid": 2, - "name": "nextCallIntervalMinutes", - "type": 8 - } - ], - "RepairTriggerSettingsElement": [ - { - "fid": 1, - "name": "serverSettings", - "struct": "Settings" - }, - { - "fid": 2, - "name": "nextCallIntervalMinutes", - "type": 8 - } - ], - "ReportAbuseExRequest": [ - { - "fid": 1, - "name": "abuseReportEntry", - "struct": "Pb1_C12938c" - } - ], - "ReportLiveTalkRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "reportType", - "struct": "LiveTalkReportType" - } - ], - "ReportLiveTalkSpeakerRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "speakerMemberMid", - "type": 11 - }, - { - "fid": 4, - "name": "reportType", - "struct": "LiveTalkReportType" - } - ], - "ReportMessageSummaryRequest": [ - { - "fid": 1, - "name": "chatEmid", - "type": 11 - }, - { - "fid": 2, - "name": "messageSummaryRangeTo", - "type": 10 - }, - { - "fid": 3, - "name": "reportType", - "struct": "MessageSummaryReportType" - } - ], - "ReportRefreshedAccessTokenRequest": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - } - ], - "ReportSquareChatRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 5, - "name": "reportType", - "struct": "ReportType" - }, - { - "fid": 6, - "name": "otherReason", - "type": 11 - } - ], - "ReportSquareMemberRequest": [ - { - "fid": 2, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "reportType", - "struct": "ReportType" - }, - { - "fid": 4, - "name": "otherReason", - "type": 11 - }, - { - "fid": 5, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 6, - "name": "threadMid", - "type": 11 - } - ], - "ReportSquareMessageRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 4, - "name": "squareMessageId", - "type": 11 - }, - { - "fid": 5, - "name": "reportType", - "struct": "ReportType" - }, - { - "fid": 6, - "name": "otherReason", - "type": 11 - }, - { - "fid": 7, - "name": "threadMid", - "type": 11 - } - ], - "ReportSquareRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "reportType", - "struct": "ReportType" - }, - { - "fid": 4, - "name": "otherReason", - "type": 11 - } - ], - "ReqToSendPhonePinCodeRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - }, - { - "fid": 3, - "name": "verifMethod", - "struct": "T70_K" - } - ], - "I80_s0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - }, - { - "fid": 3, - "name": "verifMethod", - "struct": "I80_EnumC26425y" - } - ], - "I80_t0": [ - { - "fid": 1, - "name": "availableMethods", - "list": 8 - } - ], - "ReqToSendPhonePinCodeResponse": [ - { - "fid": 1, - "name": "availableMethods", - "list": 8 - } - ], - "RequestToListenRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "I80_u0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "email", - "type": 11 - } - ], - "RequestToSendPasswordSetVerificationEmailResponse": [ - { - "fid": 1, - "name": "timeoutMinutes", - "type": 10 - } - ], - "RequestToSpeakRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "RequestTokenResponse": [ - { - "fid": 1, - "name": "requestToken", - "type": 11 - }, - { - "fid": 2, - "name": "returnUrl", - "type": 11 - } - ], - "ReserveInfo": [ - { - "fid": 1, - "name": "purchaseEnabledStatus", - "struct": "og_I" - }, - { - "fid": 2, - "name": "orderInfo", - "struct": "OrderInfo" - } - ], - "ReserveRequest": [ - { - "fid": 1, - "name": "uniqueKey", - "type": 11 - } - ], - "ReserveSubscriptionPurchaseRequest": [ - { - "fid": 1, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 2, - "name": "storeCode", - "struct": "fN0_G" - }, - { - "fid": 3, - "name": "addOaFriend", - "type": 2 - }, - { - "fid": 4, - "name": "entryPoint", - "type": 11 - }, - { - "fid": 5, - "name": "campaignId", - "type": 11 - }, - { - "fid": 6, - "name": "invitationId", - "type": 11 - } - ], - "ReserveSubscriptionPurchaseResponse": [ - { - "fid": 1, - "name": "result", - "struct": "fN0_F" - }, - { - "fid": 2, - "name": "orderId", - "type": 11 - }, - { - "fid": 3, - "name": "confirmUrl", - "type": 11 - } - ], - "I80_w0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "I80_x0": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "tokenV3IssueResult", - "struct": "TokenV3IssueResult" - }, - { - "fid": 3, - "name": "tokenV1IssueResult", - "struct": "TokenV1IssueResult" - }, - { - "fid": 4, - "name": "accountCountryCode", - "struct": "I80_X70_a" - }, - { - "fid": 5, - "name": "formattedPhoneNumbers", - "struct": "FormattedPhoneNumbers" - } - ], - "ResultPopupProperty": [ - { - "fid": 1, - "name": "iconUrl", - "type": 11 - }, - { - "fid": 2, - "name": "text", - "type": 11 - }, - { - "fid": 3, - "name": "closeButtonText", - "type": 11 - }, - { - "fid": 4, - "name": "linkButtonText", - "type": 11 - }, - { - "fid": 5, - "name": "linkButtonForwardUrl", - "type": 11 - }, - { - "fid": 6, - "name": "eventButton", - "struct": "EventButton" - }, - { - "fid": 7, - "name": "oaAddfreindArea", - "struct": "OaAddFriendArea" - } - ], - "RetrieveRequestTokenWithDocomoV2Response": [ - { - "fid": 1, - "name": "loginRedirectUrl", - "type": 11 - } - ], - "RetryPolicy": [ - { - "fid": 1, - "name": "initialDelayInMillis", - "type": 10 - }, - { - "fid": 2, - "name": "maxDelayInMillis", - "type": 10 - }, - { - "fid": 3, - "name": "multiplier", - "type": 4 - }, - { - "fid": 4, - "name": "jitterRate", - "type": 4 - } - ], - "RevokeTokensRequest": [ - { - "fid": 1, - "name": "accessTokens", - "list": 11 - } - ], - "RichContent": [ - { - "fid": 1, - "name": "callback", - "struct": "Callback" - }, - { - "fid": 2, - "name": "noBidCallback", - "struct": "NoBidCallback" - }, - { - "fid": 3, - "name": "ttl", - "type": 10 - }, - { - "fid": 4, - "name": "muteSupported", - "type": 2 - }, - { - "fid": 5, - "name": "voteSupported", - "type": 2 - }, - { - "fid": 6, - "name": "priority", - "struct": "Priority" - }, - { - "fid": 7, - "name": "richFormatPayload", - "struct": "Uf_t" - } - ], - "RichImage": [ - { - "fid": 1, - "name": "url", - "type": 11 - } - ], - "RichItem": [ - { - "fid": 1, - "name": "eyeCatchMessage", - "type": 11 - }, - { - "fid": 2, - "name": "message", - "type": 11 - }, - { - "fid": 3, - "name": "animationLayer", - "struct": "AnimationLayer" - }, - { - "fid": 4, - "name": "thumbnailLayer", - "struct": "ThumbnailLayer" - }, - { - "fid": 5, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 6, - "name": "fallbackUrl", - "type": 11 - } - ], - "RichString": [ - { - "fid": 1, - "name": "content", - "type": 11 - }, - { - "fid": 2, - "name": "meta", - "map": 11, - "key": 11 - } - ], - "RichmenuCoordinates": [ - { - "fid": 1, - "name": "x", - "type": 4 - }, - { - "fid": 2, - "name": "y", - "type": 4 - } - ], - "RichmenuEvent": [ - { - "fid": 1, - "name": "type", - "struct": "kf_u" - }, - { - "fid": 2, - "name": "richmenuId", - "type": 11 - }, - { - "fid": 3, - "name": "coordinates", - "struct": "RichmenuCoordinates" - }, - { - "fid": 4, - "name": "areaIndex", - "type": 8 - }, - { - "fid": 5, - "name": "clickUrl", - "type": 11 - }, - { - "fid": 6, - "name": "clickAction", - "struct": "kf_r" - } - ], - "RingbackTone": [ - { - "fid": 1, - "name": "uuid", - "type": 11 - }, - { - "fid": 2, - "name": "trackId", - "type": 11 - }, - { - "fid": 3, - "name": "title", - "type": 11 - }, - { - "fid": 4, - "name": "oid", - "type": 11 - }, - { - "fid": 5, - "name": "tids", - "map": 11, - "key": 11 - }, - { - "fid": 6, - "name": "sid", - "type": 11 - }, - { - "fid": 7, - "name": "artist", - "type": 11 - }, - { - "fid": 8, - "name": "channelId", - "type": 11 - } - ], - "Ringtone": [ - { - "fid": 1, - "name": "title", - "type": 11 - }, - { - "fid": 2, - "name": "artist", - "type": 11 - }, - { - "fid": 3, - "name": "oid", - "type": 11 - }, - { - "fid": 4, - "name": "channelId", - "type": 11 - } - ], - "Room": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "createdTime", - "type": 10 - }, - { - "fid": 10, - "name": "contacts", - "list": "Contact" - }, - { - "fid": 31, - "name": "notificationDisabled", - "type": 2 - }, - { - "fid": 40, - "name": "memberMids", - "list": 11 - } - ], - "Rssi": [ - { - "fid": 1, - "name": "value", - "type": 8 - } - ], - "S70_b": [], - "S70_k": [], - "SCC": [ - { - "fid": 1, - "name": "businessName", - "type": 11 - }, - { - "fid": 2, - "name": "tel", - "type": 11 - }, - { - "fid": 3, - "name": "email", - "type": 11 - }, - { - "fid": 4, - "name": "url", - "type": 11 - }, - { - "fid": 5, - "name": "address", - "type": 11 - }, - { - "fid": 6, - "name": "personName", - "type": 11 - }, - { - "fid": 7, - "name": "memo", - "type": 11 - } - ], - "SIMInfo": [ - { - "fid": 1, - "name": "phoneNumber", - "type": 11 - }, - { - "fid": 2, - "name": "countryCode", - "type": 11 - } - ], - "SKAdNetwork": [ - { - "fid": 1, - "name": "identifiers", - "type": 11 - }, - { - "fid": 2, - "name": "version", - "type": 11 - } - ], - "I80_y0": [ - { - "fid": 1, - "name": "keyMaterial", - "type": 11 - } - ], - "SaveStudentInformationRequest": [ - { - "fid": 1, - "name": "studentInformation", - "struct": "StudentInformation" - } - ], - "Scenario": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "trigger", - "struct": "do0_I" - }, - { - "fid": 3, - "name": "actions", - "list": "do0_C23141D" - } - ], - "ScenarioSet": [ - { - "fid": 1, - "name": "scenarios", - "list": "Scenario" - }, - { - "fid": 2, - "name": "autoClose", - "type": 2 - }, - { - "fid": 3, - "name": "suppressionInterval", - "type": 10 - }, - { - "fid": 4, - "name": "revision", - "type": 10 - }, - { - "fid": 5, - "name": "modifiedTime", - "type": 10 - } - ], - "ScoreInfo": [ - { - "fid": 1, - "name": "assetServiceInfo", - "struct": "AssetServiceInfo" - } - ], - "ScryptParams": [ - { - "fid": 1, - "name": "salt", - "type": 11 - }, - { - "fid": 2, - "name": "nrp", - "type": 11 - }, - { - "fid": 3, - "name": "dkLen", - "type": 10 - } - ], - "SearchSquareChatMembersRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "searchOption", - "struct": "SquareChatMemberSearchOption" - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - } - ], - "SearchSquareChatMembersResponse": [ - { - "fid": 1, - "name": "members", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 3, - "name": "totalCount", - "type": 8 - } - ], - "SearchSquareChatMentionablesRequest": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "searchOption", - "struct": "SquareChatMentionableSearchOption" - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - } - ], - "SearchSquareChatMentionablesResponse": [ - { - "fid": 1, - "name": "mentionables", - "list": "Mentionable" - }, - { - "fid": 2, - "name": "continuationToken", - "type": 11 - } - ], - "SearchSquareMembersRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "searchOption", - "struct": "SquareMemberSearchOption" - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 5, - "name": "limit", - "type": 8 - } - ], - "SearchSquareMembersResponse": [ - { - "fid": 1, - "name": "members", - "list": "SquareMember" - }, - { - "fid": 2, - "name": "revision", - "type": 10 - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 4, - "name": "totalCount", - "type": 8 - } - ], - "SearchSquaresRequest": [ - { - "fid": 2, - "name": "query", - "type": 11 - }, - { - "fid": 3, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - } - ], - "SearchSquaresResponse": [ - { - "fid": 1, - "name": "squares", - "list": "Square" - }, - { - "fid": 2, - "name": "squareStatuses", - "map": "SquareStatus", - "key": 11 - }, - { - "fid": 3, - "name": "myMemberships", - "map": "SquareMember", - "key": 11 - }, - { - "fid": 4, - "name": "continuationToken", - "type": 11 - }, - { - "fid": 5, - "name": "noteStatuses", - "map": "NoteStatus", - "key": 11 - } - ], - "SecurityCenterResult": [ - { - "fid": 1, - "name": "uri", - "type": 11 - }, - { - "fid": 2, - "name": "token", - "type": 11 - }, - { - "fid": 3, - "name": "cookiePath", - "type": 11 - }, - { - "fid": 4, - "name": "skip", - "type": 2 - } - ], - "SendEncryptedE2EEKeyRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "encryptedSecureChannelPayload", - "struct": "h80_Z70_a" - } - ], - "SendMessageRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareMessage", - "struct": "SquareMessage" - } - ], - "SendMessageResponse": [ - { - "fid": 1, - "name": "createdSquareMessage", - "struct": "SquareMessage" - } - ], - "SendPostbackRequest": [ - { - "fid": 1, - "name": "messageId", - "type": 11 - }, - { - "fid": 2, - "name": "url", - "type": 11 - }, - { - "fid": 3, - "name": "chatMID", - "type": 11 - }, - { - "fid": 4, - "name": "originMID", - "type": 11 - } - ], - "SendSquareThreadMessageRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "threadMid", - "type": 11 - }, - { - "fid": 4, - "name": "threadMessage", - "struct": "SquareMessage" - } - ], - "SendSquareThreadMessageResponse": [ - { - "fid": 1, - "name": "createdThreadMessage", - "struct": "SquareMessage" - } - ], - "ServiceDisclaimerInfo": [ - { - "fid": 1, - "name": "disclaimerText", - "type": 11 - }, - { - "fid": 2, - "name": "popupTitle", - "type": 11 - }, - { - "fid": 3, - "name": "popupText", - "type": 11 - } - ], - "ServiceShortcut": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "serviceEntryUrl", - "type": 11 - }, - { - "fid": 4, - "name": "pictogramIconUrl", - "type": 11 - }, - { - "fid": 5, - "name": "storeUrl", - "type": 11 - }, - { - "fid": 6, - "name": "badgeActiveUntilTimestamp", - "type": 11 - }, - { - "fid": 7, - "name": "recommendedModelId", - "type": 11 - }, - { - "fid": 8, - "name": "eventIcon", - "struct": "Icon" - }, - { - "fid": 9, - "name": "coloredPictogramIcon", - "struct": "Icon" - }, - { - "fid": 10, - "name": "customBadgeLabel", - "struct": "CustomBadgeLabel" - } - ], - "SetChatHiddenStatusRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "lastMessageId", - "type": 10 - }, - { - "fid": 4, - "name": "hidden", - "type": 2 - } - ], - "I80_z0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "password", - "type": 11 - } - ], - "SetHashedPasswordRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "password", - "type": 11 - } - ], - "SetPasswordRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "hashedPassword", - "type": 11 - } - ], - "SetRequest": [ - { - "fid": 1, - "name": "keyName", - "type": 11 - }, - { - "fid": 2, - "name": "value", - "struct": "t80_p" - }, - { - "fid": 3, - "name": "clientTimestampMillis", - "type": 10 - }, - { - "fid": 4, - "name": "ns", - "struct": "t80_h" - }, - { - "fid": 5, - "name": "transactionId", - "type": 11 - }, - { - "fid": 6, - "name": "updateReason", - "struct": "UpdateReason" - } - ], - "SetResponse": [ - { - "fid": 1, - "name": "value", - "struct": "SettingValue" - }, - { - "fid": 2, - "name": "updateTransactionId", - "type": 11 - } - ], - "SettingValue": [ - { - "fid": 1, - "name": "value", - "struct": "t80_p" - }, - { - "fid": 2, - "name": "updateTimeMillis", - "type": 10 - }, - { - "fid": 3, - "name": "scope", - "struct": "t80_i" - }, - { - "fid": 4, - "name": "scopeKey", - "type": 11 - } - ], - "Settings": [ - { - "fid": 10, - "name": "notificationEnable", - "type": 2 - }, - { - "fid": 11, - "name": "notificationMuteExpiration", - "type": 10 - }, - { - "fid": 12, - "name": "notificationNewMessage", - "type": 2 - }, - { - "fid": 13, - "name": "notificationGroupInvitation", - "type": 2 - }, - { - "fid": 14, - "name": "notificationShowMessage", - "type": 2 - }, - { - "fid": 15, - "name": "notificationIncomingCall", - "type": 2 - }, - { - "fid": 16, - "name": "notificationSoundMessage", - "type": 11 - }, - { - "fid": 17, - "name": "notificationSoundGroup", - "type": 11 - }, - { - "fid": 18, - "name": "notificationDisabledWithSub", - "type": 2 - }, - { - "fid": 19, - "name": "notificationPayment", - "type": 2 - }, - { - "fid": 20, - "name": "privacySyncContacts", - "type": 2 - }, - { - "fid": 21, - "name": "privacySearchByPhoneNumber", - "type": 2 - }, - { - "fid": 22, - "name": "privacySearchByUserid", - "type": 2 - }, - { - "fid": 23, - "name": "privacySearchByEmail", - "type": 2 - }, - { - "fid": 24, - "name": "privacyAllowSecondaryDeviceLogin", - "type": 2 - }, - { - "fid": 25, - "name": "privacyProfileImagePostToMyhome", - "type": 2 - }, - { - "fid": 26, - "name": "privacyReceiveMessagesFromNotFriend", - "type": 2 - }, - { - "fid": 27, - "name": "privacyAgreeUseLineCoinToPaidCall", - "type": 2 - }, - { - "fid": 28, - "name": "privacyAgreeUsePaidCall", - "type": 2 - }, - { - "fid": 29, - "name": "privacyAllowFriendRequest", - "type": 2 - }, - { - "fid": 30, - "name": "contactMyTicket", - "type": 11 - }, - { - "fid": 40, - "name": "identityProvider", - "struct": "IdentityProvider" - }, - { - "fid": 41, - "name": "identityIdentifier", - "type": 11 - }, - { - "fid": 42, - "name": "snsAccounts", - "map": 11, - "key": 8 - }, - { - "fid": 43, - "name": "phoneRegistration", - "type": 2 - }, - { - "fid": 44, - "name": "emailConfirmationStatus", - "struct": "EmailConfirmationStatus" - }, - { - "fid": 45, - "name": "accountMigrationPincodeType", - "struct": "AccountMigrationPincodeType" - }, - { - "fid": 46, - "name": "enforcedInputAccountMigrationPincode", - "type": 2 - }, - { - "fid": 47, - "name": "securityCenterSettingsType", - "struct": "AccountMigrationPincodeType" - }, - { - "fid": 48, - "name": "allowUnregistrationSecondaryDevice", - "type": 2 - }, - { - "fid": 49, - "name": "pwlessPrimaryCredentialRegistration", - "type": 2 - }, - { - "fid": 50, - "name": "preferenceLocale", - "type": 11 - }, - { - "fid": 60, - "name": "customModes", - "map": 11, - "key": 8 - }, - { - "fid": 61, - "name": "e2eeEnable", - "type": 2 - }, - { - "fid": 62, - "name": "hitokotoBackupRequested", - "type": 2 - }, - { - "fid": 63, - "name": "privacyProfileMusicPostToMyhome", - "type": 2 - }, - { - "fid": 65, - "name": "privacyAllowNearby", - "type": 2 - }, - { - "fid": 66, - "name": "agreementNearbyTime", - "type": 10 - }, - { - "fid": 67, - "name": "agreementSquareTime", - "type": 10 - }, - { - "fid": 68, - "name": "notificationMention", - "type": 2 - }, - { - "fid": 69, - "name": "botUseAgreementAcceptedAt", - "type": 10 - }, - { - "fid": 70, - "name": "agreementShakeFunction", - "type": 10 - }, - { - "fid": 71, - "name": "agreementMobileContactName", - "type": 10 - }, - { - "fid": 72, - "name": "notificationThumbnail", - "type": 2 - }, - { - "fid": 73, - "name": "agreementSoundToText", - "type": 10 - }, - { - "fid": 74, - "name": "privacyPolicyVersion", - "type": 11 - }, - { - "fid": 75, - "name": "agreementAdByWebAccess", - "type": 10 - }, - { - "fid": 76, - "name": "agreementPhoneNumberMatching", - "type": 10 - }, - { - "fid": 77, - "name": "agreementCommunicationInfo", - "type": 10 - }, - { - "fid": 78, - "name": "privacySharePersonalInfoToFriends", - "struct": "Pb1_I6" - }, - { - "fid": 79, - "name": "agreementThingsWirelessCommunication", - "type": 10 - }, - { - "fid": 80, - "name": "agreementGdpr", - "type": 10 - }, - { - "fid": 81, - "name": "privacyStatusMessageHistory", - "struct": "Pb1_S7" - }, - { - "fid": 82, - "name": "agreementProvideLocation", - "type": 10 - }, - { - "fid": 83, - "name": "agreementBeacon", - "type": 10 - }, - { - "fid": 85, - "name": "privacyAllowProfileHistory", - "struct": "Pb1_M6" - }, - { - "fid": 86, - "name": "agreementContentsSuggest", - "type": 10 - }, - { - "fid": 87, - "name": "agreementContentsSuggestDataCollection", - "type": 10 - }, - { - "fid": 88, - "name": "privacyAgeResult", - "struct": "Pb1_gd" - }, - { - "fid": 89, - "name": "privacyAgeResultReceived", - "type": 2 - }, - { - "fid": 90, - "name": "agreementOcrImageCollection", - "type": 10 - }, - { - "fid": 91, - "name": "privacyAllowFollow", - "type": 2 - }, - { - "fid": 92, - "name": "privacyShowFollowList", - "type": 2 - }, - { - "fid": 93, - "name": "notificationBadgeTalkOnly", - "type": 2 - }, - { - "fid": 94, - "name": "agreementIcna", - "type": 10 - }, - { - "fid": 95, - "name": "notificationReaction", - "type": 2 - }, - { - "fid": 96, - "name": "agreementMid", - "type": 10 - }, - { - "fid": 97, - "name": "homeNotificationNewFriend", - "type": 2 - }, - { - "fid": 98, - "name": "homeNotificationFavoriteFriendUpdate", - "type": 2 - }, - { - "fid": 99, - "name": "homeNotificationGroupMemberUpdate", - "type": 2 - }, - { - "fid": 100, - "name": "homeNotificationBirthday", - "type": 2 - }, - { - "fid": 101, - "name": "eapAllowedToConnect", - "map": 2, - "key": 8 - }, - { - "fid": 102, - "name": "agreementLineOutUse", - "type": 10 - }, - { - "fid": 103, - "name": "agreementLineOutProvideInfo", - "type": 10 - }, - { - "fid": 104, - "name": "notificationShowProfileImage", - "type": 2 - }, - { - "fid": 105, - "name": "agreementPdpa", - "type": 10 - }, - { - "fid": 106, - "name": "agreementLocationVersion", - "type": 11 - }, - { - "fid": 107, - "name": "zhdPageAllowedToShow", - "type": 2 - }, - { - "fid": 108, - "name": "agreementSnowAiAvatar", - "type": 10 - }, - { - "fid": 109, - "name": "eapOnlyAccountTargetCountry", - "type": 2 - }, - { - "fid": 110, - "name": "agreementLypPremiumAlbum", - "type": 10 - }, - { - "fid": 112, - "name": "agreementLypPremiumAlbumVersion", - "type": 10 - }, - { - "fid": 113, - "name": "agreementAlbumUsageData", - "type": 10 - }, - { - "fid": 114, - "name": "agreementAlbumUsageDataVersion", - "type": 10 - }, - { - "fid": 115, - "name": "agreementLypPremiumBackup", - "type": 10 - }, - { - "fid": 116, - "name": "agreementLypPremiumBackupVersion", - "type": 10 - }, - { - "fid": 117, - "name": "agreementOaAiAssistant", - "type": 10 - }, - { - "fid": 118, - "name": "agreementOaAiAssistantVersion", - "type": 10 - }, - { - "fid": 119, - "name": "agreementLypPremiumMultiProfile", - "type": 10 - }, - { - "fid": 120, - "name": "agreementLypPremiumMultiProfileVersion", - "type": 10 - } - ], - "ShareTargetPickerResultRequest": [ - { - "fid": 1, - "name": "ott", - "type": 11 - }, - { - "fid": 2, - "name": "liffId", - "type": 11 - }, - { - "fid": 3, - "name": "resultCode", - "struct": "Qj_e0" - }, - { - "fid": 4, - "name": "resultDescription", - "type": 11 - } - ], - "ShopFilter": [ - { - "fid": 1, - "name": "productAvailabilities", - "set": 8 - }, - { - "fid": 2, - "name": "stickerSizes", - "set": 8 - }, - { - "fid": 3, - "name": "popupLayers", - "set": 8 - } - ], - "ShortcutUserGuidePopupInfo": [ - { - "fid": 1, - "name": "popupTitle", - "type": 11 - }, - { - "fid": 2, - "name": "popupText", - "type": 11 - }, - { - "fid": 3, - "name": "revisionTimeMillis", - "type": 10 - } - ], - "ShouldShowWelcomeStickerBannerResponse": [ - { - "fid": 1, - "name": "shouldShowBanner", - "type": 2 - } - ], - "I80_B0": [ - { - "fid": 1, - "name": "countryCode", - "type": 11 - }, - { - "fid": 2, - "name": "hni", - "type": 11 - }, - { - "fid": 3, - "name": "carrierName", - "type": 11 - } - ], - "SimCard": [ - { - "fid": 1, - "name": "countryCode", - "type": 11 - }, - { - "fid": 2, - "name": "hni", - "type": 11 - }, - { - "fid": 3, - "name": "carrierName", - "type": 11 - } - ], - "SingleValueMetadata": [ - { - "fid": 1, - "name": "type", - "struct": "Pb1_K7" - } - ], - "SleepAction": [ - { - "fid": 1, - "name": "sleepMillis", - "type": 10 - } - ], - "SmartChannelRecommendation": [ - { - "fid": 1, - "name": "minDisplayDuration", - "type": 8 - }, - { - "fid": 2, - "name": "title", - "type": 11 - }, - { - "fid": 3, - "name": "descriptionText", - "type": 11 - }, - { - "fid": 4, - "name": "labelText", - "type": 11 - }, - { - "fid": 5, - "name": "imageUrl", - "type": 11 - }, - { - "fid": 6, - "name": "bgColorCode", - "type": 11 - }, - { - "fid": 7, - "name": "linkUrl", - "type": 11 - }, - { - "fid": 8, - "name": "impEventUrl", - "type": 11 - }, - { - "fid": 9, - "name": "clickEventUrl", - "type": 11 - }, - { - "fid": 10, - "name": "muteEventUrl", - "type": 11 - }, - { - "fid": 11, - "name": "upvoteEventUrl", - "type": 11 - }, - { - "fid": 12, - "name": "downvoteEventUrl", - "type": 11 - }, - { - "fid": 13, - "name": "template", - "struct": "SmartChannelRecommendationTemplate" - } - ], - "SmartChannelRecommendationTemplate": [ - { - "fid": 1, - "name": "type", - "type": 11 - }, - { - "fid": 2, - "name": "bgColorName", - "type": 11 - } - ], - "SocialLogin": [ - { - "fid": 1, - "name": "type", - "struct": "T70_j1" - }, - { - "fid": 2, - "name": "accessToken", - "type": 11 - }, - { - "fid": 3, - "name": "countryCode", - "type": 11 - } - ], - "SpotItem": [ - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "phone", - "type": 11 - }, - { - "fid": 4, - "name": "category", - "struct": "SpotCategory" - }, - { - "fid": 5, - "name": "mid", - "type": 11 - }, - { - "fid": 6, - "name": "countryAreaCode", - "type": 11 - }, - { - "fid": 10, - "name": "freePhoneCallable", - "type": 2 - } - ], - "Square": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "welcomeMessage", - "type": 11 - }, - { - "fid": 4, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 5, - "name": "desc", - "type": 11 - }, - { - "fid": 6, - "name": "searchable", - "type": 2 - }, - { - "fid": 7, - "name": "type", - "struct": "SquareType" - }, - { - "fid": 8, - "name": "categoryId", - "type": 8 - }, - { - "fid": 9, - "name": "invitationURL", - "type": 11 - }, - { - "fid": 10, - "name": "revision", - "type": 10 - }, - { - "fid": 11, - "name": "ableToUseInvitationTicket", - "type": 2 - }, - { - "fid": 12, - "name": "state", - "struct": "SquareState" - }, - { - "fid": 13, - "name": "emblems", - "list": "SquareEmblem" - }, - { - "fid": 14, - "name": "joinMethod", - "struct": "SquareJoinMethod" - }, - { - "fid": 15, - "name": "adultOnly", - "struct": "BooleanState" - }, - { - "fid": 16, - "name": "svcTags", - "list": 11 - }, - { - "fid": 17, - "name": "createdAt", - "type": 10 - } - ], - "SquareAuthority": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "updateSquareProfile", - "struct": "SquareMemberRole" - }, - { - "fid": 3, - "name": "inviteNewMember", - "struct": "SquareMemberRole" - }, - { - "fid": 4, - "name": "approveJoinRequest", - "struct": "SquareMemberRole" - }, - { - "fid": 5, - "name": "createPost", - "struct": "SquareMemberRole" - }, - { - "fid": 6, - "name": "createOpenSquareChat", - "struct": "SquareMemberRole" - }, - { - "fid": 7, - "name": "deleteSquareChatOrPost", - "struct": "SquareMemberRole" - }, - { - "fid": 8, - "name": "removeSquareMember", - "struct": "SquareMemberRole" - }, - { - "fid": 9, - "name": "grantRole", - "struct": "SquareMemberRole" - }, - { - "fid": 10, - "name": "enableInvitationTicket", - "struct": "SquareMemberRole" - }, - { - "fid": 11, - "name": "revision", - "type": 10 - }, - { - "fid": 12, - "name": "createSquareChatAnnouncement", - "struct": "SquareMemberRole" - }, - { - "fid": 13, - "name": "updateMaxChatMemberCount", - "struct": "SquareMemberRole" - }, - { - "fid": 14, - "name": "useReadonlyDefaultChat", - "struct": "SquareMemberRole" - }, - { - "fid": 15, - "name": "sendAllMention", - "struct": "SquareMemberRole" - } - ], - "SquareBot": [ - { - "fid": 1, - "name": "botMid", - "type": 11 - }, - { - "fid": 2, - "name": "active", - "type": 2 - }, - { - "fid": 3, - "name": "displayName", - "type": 11 - }, - { - "fid": 4, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 5, - "name": "iconType", - "type": 8 - }, - { - "fid": 6, - "name": "lastModifiedAt", - "type": 10 - }, - { - "fid": 7, - "name": "expiredIn", - "type": 10 - } - ], - "SquareChat": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "SquareChatType" - }, - { - "fid": 4, - "name": "name", - "type": 11 - }, - { - "fid": 5, - "name": "chatImageObsHash", - "type": 11 - }, - { - "fid": 6, - "name": "squareChatRevision", - "type": 10 - }, - { - "fid": 7, - "name": "maxMemberCount", - "type": 8 - }, - { - "fid": 8, - "name": "state", - "struct": "SquareChatState" - }, - { - "fid": 9, - "name": "invitationUrl", - "type": 11 - }, - { - "fid": 10, - "name": "messageVisibility", - "struct": "MessageVisibility" - }, - { - "fid": 11, - "name": "ableToSearchMessage", - "struct": "BooleanState" - } - ], - "SquareChatAnnouncement": [ - { - "fid": 1, - "name": "announcementSeq", - "type": 10 - }, - { - "fid": 2, - "name": "type", - "type": 8 - }, - { - "fid": 3, - "name": "contents", - "struct": "SquareChatAnnouncementContents" - }, - { - "fid": 4, - "name": "createdAt", - "type": 10 - }, - { - "fid": 5, - "name": "creator", - "type": 11 - } - ], - "SquareChatFeature": [ - { - "fid": 1, - "name": "controlState", - "struct": "SquareChatFeatureControlState" - }, - { - "fid": 2, - "name": "booleanValue", - "struct": "BooleanState" - } - ], - "SquareChatFeatureSet": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "revision", - "type": 10 - }, - { - "fid": 11, - "name": "disableUpdateMaxChatMemberCount", - "struct": "SquareChatFeature" - }, - { - "fid": 12, - "name": "disableMarkAsReadEvent", - "struct": "SquareChatFeature" - } - ], - "SquareChatMember": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "revision", - "type": 10 - }, - { - "fid": 4, - "name": "membershipState", - "struct": "SquareChatMembershipState" - }, - { - "fid": 5, - "name": "notificationForMessage", - "type": 2 - }, - { - "fid": 6, - "name": "notificationForNewMember", - "type": 2 - } - ], - "SquareChatMemberSearchOption": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - }, - { - "fid": 2, - "name": "includingMe", - "type": 2 - } - ], - "SquareChatMentionableSearchOption": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - } - ], - "SquareChatStatus": [ - { - "fid": 3, - "name": "lastMessage", - "struct": "SquareMessage" - }, - { - "fid": 4, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 5, - "name": "otherStatus", - "struct": "SquareChatStatusWithoutMessage" - } - ], - "SquareChatStatusWithoutMessage": [ - { - "fid": 1, - "name": "memberCount", - "type": 8 - }, - { - "fid": 2, - "name": "unreadMessageCount", - "type": 8 - }, - { - "fid": 3, - "name": "markedAsReadMessageId", - "type": 11 - }, - { - "fid": 4, - "name": "mentionedMessageId", - "type": 11 - }, - { - "fid": 5, - "name": "notifiedMessageType", - "struct": "NotifiedMessageType" - }, - { - "fid": 6, - "name": "badges", - "list": 8 - } - ], - "SquareCleanScore": [ - { - "fid": 1, - "name": "score", - "type": 4 - } - ], - "SquareEvent": [ - { - "fid": 2, - "name": "createdTime", - "type": 10 - }, - { - "fid": 3, - "name": "type", - "struct": "SquareEventType" - }, - { - "fid": 4, - "name": "payload", - "struct": "SquareEventPayload" - }, - { - "fid": 5, - "name": "syncToken", - "type": 11 - }, - { - "fid": 6, - "name": "eventStatus", - "struct": "SquareEventStatus" - } - ], - "SquareEventChatPopup": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "popupId", - "type": 10 - }, - { - "fid": 3, - "name": "flexJson", - "type": 11 - }, - { - "fid": 4, - "name": "button", - "struct": "ButtonContent" - } - ], - "SquareEventMutateMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMessage", - "struct": "SquareMessage" - }, - { - "fid": 3, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 4, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 5, - "name": "threadMid", - "type": 11 - } - ], - "SquareEventNotificationJoinRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareName", - "type": 11 - }, - { - "fid": 3, - "name": "requestMemberName", - "type": 11 - }, - { - "fid": 4, - "name": "profileImageObsHash", - "type": 11 - } - ], - "SquareEventNotificationLiveTalk": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "liveTalkInvitationTicket", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatName", - "type": 11 - }, - { - "fid": 4, - "name": "chatImageObsHash", - "type": 11 - } - ], - "SquareEventNotificationMemberUpdate": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - } - ], - "SquareEventNotificationMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMessage", - "struct": "SquareMessage" - }, - { - "fid": 3, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 4, - "name": "unreadCount", - "type": 8 - }, - { - "fid": 5, - "name": "requiredToFetchChatEvents", - "type": 2 - }, - { - "fid": 6, - "name": "mentionedMessageId", - "type": 11 - }, - { - "fid": 7, - "name": "notifiedMessageType", - "struct": "NotifiedMessageType" - }, - { - "fid": 8, - "name": "reqSeq", - "type": 8 - } - ], - "SquareEventNotificationMessageReaction": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatName", - "type": 11 - }, - { - "fid": 4, - "name": "reactorName", - "type": 11 - }, - { - "fid": 5, - "name": "thumbnailObsHash", - "type": 11 - }, - { - "fid": 6, - "name": "messageText", - "type": 11 - }, - { - "fid": 7, - "name": "type", - "struct": "MessageReactionType" - } - ], - "SquareEventNotificationNewChatMember": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareChatName", - "type": 11 - } - ], - "SquareEventNotificationPost": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "notificationPostType", - "struct": "NotificationPostType" - }, - { - "fid": 3, - "name": "thumbnailObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "text", - "type": 11 - }, - { - "fid": 5, - "name": "actionUri", - "type": 11 - } - ], - "SquareEventNotificationPostAnnouncement": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareName", - "type": 11 - }, - { - "fid": 3, - "name": "squareProfileImageObsHash", - "type": 11 - }, - { - "fid": 4, - "name": "actionUri", - "type": 11 - } - ], - "SquareEventNotificationSquareChatDelete": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareChatName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - } - ], - "SquareEventNotificationSquareDelete": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareName", - "type": 11 - }, - { - "fid": 3, - "name": "profileImageObsHash", - "type": 11 - } - ], - "SquareEventNotificationThreadMessage": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareMessage", - "struct": "SquareMessage" - }, - { - "fid": 4, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 5, - "name": "unreadCount", - "type": 10 - }, - { - "fid": 6, - "name": "totalMessageCount", - "type": 10 - }, - { - "fid": 7, - "name": "threadRootMessageId", - "type": 11 - } - ], - "SquareEventNotificationThreadMessageReaction": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "messageId", - "type": 11 - }, - { - "fid": 4, - "name": "squareChatName", - "type": 11 - }, - { - "fid": 5, - "name": "reactorName", - "type": 11 - }, - { - "fid": 6, - "name": "thumbnailObsHash", - "type": 11 - } - ], - "SquareEventNotifiedAddBot": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "botMid", - "type": 11 - }, - { - "fid": 4, - "name": "botDisplayName", - "type": 11 - } - ], - "SquareEventNotifiedCreateSquareChatMember": [ - { - "fid": 1, - "name": "chat", - "struct": "SquareChat" - }, - { - "fid": 2, - "name": "chatStatus", - "struct": "SquareChatStatus" - }, - { - "fid": 3, - "name": "chatMember", - "struct": "SquareChatMember" - }, - { - "fid": 4, - "name": "joinedAt", - "type": 10 - }, - { - "fid": 5, - "name": "peerSquareMember", - "struct": "SquareMember" - }, - { - "fid": 6, - "name": "squareChatFeatureSet", - "struct": "SquareChatFeatureSet" - } - ], - "SquareEventNotifiedCreateSquareMember": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "squareAuthority", - "struct": "SquareAuthority" - }, - { - "fid": 3, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 4, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 5, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - }, - { - "fid": 6, - "name": "noteStatus", - "struct": "NoteStatus" - } - ], - "SquareEventNotifiedDeleteSquareChat": [ - { - "fid": 1, - "name": "squareChat", - "struct": "SquareChat" - } - ], - "SquareEventNotifiedDestroyMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "messageId", - "type": 11 - }, - { - "fid": 4, - "name": "threadMid", - "type": 11 - } - ], - "SquareEventNotifiedInviteIntoSquareChat": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "invitees", - "list": "SquareMember" - }, - { - "fid": 3, - "name": "invitor", - "struct": "SquareMember" - }, - { - "fid": 4, - "name": "invitorRelation", - "struct": "SquareMemberRelation" - } - ], - "SquareEventNotifiedJoinSquareChat": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "joinedMember", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedKickoutFromSquare": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "kickees", - "list": "SquareMember" - }, - { - "fid": 3, - "name": "kicker", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedLeaveSquareChat": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "sayGoodbye", - "type": 2 - }, - { - "fid": 4, - "name": "squareMember", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedMarkAsRead": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sMemberMid", - "type": 11 - }, - { - "fid": 4, - "name": "messageId", - "type": 11 - } - ], - "SquareEventNotifiedRemoveBot": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "botMid", - "type": 11 - }, - { - "fid": 4, - "name": "botDisplayName", - "type": 11 - } - ], - "SquareEventNotifiedShutdownSquare": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "square", - "struct": "Square" - } - ], - "SquareEventNotifiedSystemMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "text", - "type": 11 - }, - { - "fid": 3, - "name": "messageKey", - "type": 11 - } - ], - "SquareEventNotifiedUpdateLiveTalk": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "liveTalkOnAir", - "type": 2 - } - ], - "SquareEventNotifiedUpdateLiveTalkInfo": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "liveTalk", - "struct": "LiveTalk" - }, - { - "fid": 3, - "name": "liveTalkOnAir", - "type": 2 - } - ], - "SquareEventNotifiedUpdateMessageStatus": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - }, - { - "fid": 3, - "name": "messageStatus", - "struct": "SquareMessageStatus" - }, - { - "fid": 4, - "name": "threadMid", - "type": 11 - } - ], - "SquareEventNotifiedUpdateReadonlyChat": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "readonly", - "type": 2 - } - ], - "SquareEventNotifiedUpdateSquare": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "square", - "struct": "Square" - } - ], - "SquareEventNotifiedUpdateSquareAuthority": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareAuthority", - "struct": "SquareAuthority" - } - ], - "SquareEventNotifiedUpdateSquareChat": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChat", - "struct": "SquareChat" - } - ], - "SquareEventNotifiedUpdateSquareChatAnnouncement": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "announcementSeq", - "type": 10 - } - ], - "SquareEventNotifiedUpdateSquareChatFeatureSet": [ - { - "fid": 1, - "name": "squareChatFeatureSet", - "struct": "SquareChatFeatureSet" - } - ], - "SquareEventNotifiedUpdateSquareChatMaxMemberCount": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "maxMemberCount", - "type": 8 - }, - { - "fid": 3, - "name": "editor", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedUpdateSquareChatMember": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareChatMember", - "struct": "SquareChatMember" - } - ], - "SquareEventNotifiedUpdateSquareChatProfileImage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "editor", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedUpdateSquareChatProfileName": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "editor", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "updatedChatName", - "type": 11 - } - ], - "SquareEventNotifiedUpdateSquareChatStatus": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "statusWithoutMessage", - "struct": "SquareChatStatusWithoutMessage" - } - ], - "SquareEventNotifiedUpdateSquareFeatureSet": [ - { - "fid": 1, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - } - ], - "SquareEventNotifiedUpdateSquareMember": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareMember", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedUpdateSquareMemberProfile": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMember", - "struct": "SquareMember" - } - ], - "SquareEventNotifiedUpdateSquareMemberRelation": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "myMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetSquareMemberMid", - "type": 11 - }, - { - "fid": 4, - "name": "squareMemberRelation", - "struct": "SquareMemberRelation" - } - ], - "SquareEventNotifiedUpdateSquareNoteStatus": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "noteStatus", - "struct": "NoteStatus" - } - ], - "SquareEventNotifiedUpdateSquareStatus": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareStatus", - "struct": "SquareStatus" - } - ], - "SquareEventNotifiedUpdateThread": [ - { - "fid": 1, - "name": "squareThread", - "struct": "SquareThread" - } - ], - "SquareEventNotifiedUpdateThreadMember": [ - { - "fid": 1, - "name": "threadMember", - "struct": "SquareThreadMember" - }, - { - "fid": 2, - "name": "squareThread", - "struct": "SquareThread" - }, - { - "fid": 3, - "name": "threadRootMessage", - "struct": "SquareMessage" - }, - { - "fid": 4, - "name": "totalMessageCount", - "type": 10 - }, - { - "fid": 5, - "name": "lastMessage", - "struct": "SquareMessage" - }, - { - "fid": 6, - "name": "lastMessageSenderDisplayName", - "type": 11 - } - ], - "SquareEventNotifiedUpdateThreadRootMessage": [ - { - "fid": 1, - "name": "squareThread", - "struct": "SquareThread" - } - ], - "SquareEventNotifiedUpdateThreadRootMessageStatus": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "threadMid", - "type": 11 - }, - { - "fid": 3, - "name": "threadRootMessageId", - "type": 11 - }, - { - "fid": 4, - "name": "totalMessageCount", - "type": 10 - }, - { - "fid": 5, - "name": "lastMessageAt", - "type": 10 - } - ], - "SquareEventNotifiedUpdateThreadStatus": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "unreadCount", - "type": 10 - }, - { - "fid": 4, - "name": "markAsReadMessageId", - "type": 11 - } - ], - "SquareEventReceiveMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMessage", - "struct": "SquareMessage" - }, - { - "fid": 3, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 4, - "name": "messageReactionStatus", - "struct": "SquareMessageReactionStatus" - }, - { - "fid": 5, - "name": "senderRevision", - "type": 10 - }, - { - "fid": 6, - "name": "squareMid", - "type": 11 - }, - { - "fid": 7, - "name": "threadMid", - "type": 11 - }, - { - "fid": 8, - "name": "threadTotalMessageCount", - "type": 10 - }, - { - "fid": 9, - "name": "threadLastMessageAt", - "type": 10 - }, - { - "fid": 10, - "name": "contentsAttribute", - "struct": "ContentsAttribute" - } - ], - "SquareEventSendMessage": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMessage", - "struct": "SquareMessage" - }, - { - "fid": 3, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 4, - "name": "senderDisplayName", - "type": 11 - }, - { - "fid": 5, - "name": "messageReactionStatus", - "struct": "SquareMessageReactionStatus" - }, - { - "fid": 6, - "name": "threadMid", - "type": 11 - }, - { - "fid": 7, - "name": "threadTotalMessageCount", - "type": 10 - }, - { - "fid": 8, - "name": "threadLastMessageAt", - "type": 10 - } - ], - "SquareExtraInfo": [ - { - "fid": 1, - "name": "country", - "type": 11 - } - ], - "SquareFeature": [ - { - "fid": 1, - "name": "controlState", - "struct": "SquareFeatureControlState" - }, - { - "fid": 2, - "name": "booleanValue", - "struct": "BooleanState" - } - ], - "SquareFeatureSet": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "revision", - "type": 10 - }, - { - "fid": 11, - "name": "creatingSecretSquareChat", - "struct": "SquareFeature" - }, - { - "fid": 12, - "name": "invitingIntoOpenSquareChat", - "struct": "SquareFeature" - }, - { - "fid": 13, - "name": "creatingSquareChat", - "struct": "SquareFeature" - }, - { - "fid": 14, - "name": "readonlyDefaultChat", - "struct": "SquareFeature" - }, - { - "fid": 15, - "name": "showingAdvertisement", - "struct": "SquareFeature" - }, - { - "fid": 16, - "name": "delegateJoinToPlug", - "struct": "SquareFeature" - }, - { - "fid": 17, - "name": "delegateKickOutToPlug", - "struct": "SquareFeature" - }, - { - "fid": 18, - "name": "disableUpdateJoinMethod", - "struct": "SquareFeature" - }, - { - "fid": 19, - "name": "disableTransferAdmin", - "struct": "SquareFeature" - }, - { - "fid": 20, - "name": "creatingLiveTalk", - "struct": "SquareFeature" - }, - { - "fid": 21, - "name": "disableUpdateSearchable", - "struct": "SquareFeature" - }, - { - "fid": 22, - "name": "summarizingMessages", - "struct": "SquareFeature" - }, - { - "fid": 23, - "name": "creatingSquareThread", - "struct": "SquareFeature" - }, - { - "fid": 24, - "name": "enableSquareThread", - "struct": "SquareFeature" - }, - { - "fid": 25, - "name": "disableChangeRoleCoAdmin", - "struct": "SquareFeature" - } - ], - "SquareInfo": [ - { - "fid": 1, - "name": "square", - "struct": "Square" - }, - { - "fid": 2, - "name": "squareStatus", - "struct": "SquareStatus" - }, - { - "fid": 3, - "name": "squareNoteStatus", - "struct": "NoteStatus" - } - ], - "SquareJoinMethod": [ - { - "fid": 1, - "name": "type", - "struct": "SquareJoinMethodType" - }, - { - "fid": 2, - "name": "value", - "struct": "SquareJoinMethodValue" - } - ], - "SquareJoinMethodValue": [ - { - "fid": 1, - "name": "approvalValue", - "struct": "ApprovalValue" - }, - { - "fid": 2, - "name": "codeValue", - "struct": "CodeValue" - } - ], - "SquareMember": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "displayName", - "type": 11 - }, - { - "fid": 4, - "name": "profileImageObsHash", - "type": 11 - }, - { - "fid": 5, - "name": "ableToReceiveMessage", - "type": 2 - }, - { - "fid": 7, - "name": "membershipState", - "struct": "SquareMembershipState" - }, - { - "fid": 8, - "name": "role", - "struct": "SquareMemberRole" - }, - { - "fid": 9, - "name": "revision", - "type": 10 - }, - { - "fid": 10, - "name": "preference", - "struct": "SquarePreference" - }, - { - "fid": 11, - "name": "joinMessage", - "type": 11 - }, - { - "fid": 12, - "name": "createdAt", - "type": 10 - } - ], - "SquareMemberRelation": [ - { - "fid": 1, - "name": "state", - "struct": "SquareMemberRelationState" - }, - { - "fid": 2, - "name": "revision", - "type": 10 - } - ], - "SquareMemberSearchOption": [ - { - "fid": 1, - "name": "membershipState", - "struct": "SquareMembershipState" - }, - { - "fid": 2, - "name": "memberRoles", - "set": "SquareMemberRole" - }, - { - "fid": 3, - "name": "displayName", - "type": 11 - }, - { - "fid": 4, - "name": "ableToReceiveMessage", - "struct": "BooleanState" - }, - { - "fid": 5, - "name": "ableToReceiveFriendRequest", - "struct": "BooleanState" - }, - { - "fid": 6, - "name": "chatMidToExcludeMembers", - "type": 11 - }, - { - "fid": 7, - "name": "includingMe", - "type": 2 - }, - { - "fid": 8, - "name": "excludeBlockedMembers", - "type": 2 - }, - { - "fid": 9, - "name": "includingMeOnlyMatch", - "type": 2 - } - ], - "SquareMessage": [ - { - "fid": 1, - "name": "message", - "struct": "Message" - }, - { - "fid": 3, - "name": "fromType", - "struct": "MIDType" - }, - { - "fid": 4, - "name": "squareMessageRevision", - "type": 10 - }, - { - "fid": 5, - "name": "state", - "struct": "SquareMessageState" - }, - { - "fid": 6, - "name": "threadInfo", - "struct": "SquareMessageThreadInfo" - } - ], - "SquareMessageInfo": [ - { - "fid": 1, - "name": "message", - "struct": "SquareMessage" - }, - { - "fid": 2, - "name": "square", - "struct": "Square" - }, - { - "fid": 3, - "name": "chat", - "struct": "SquareChat" - }, - { - "fid": 4, - "name": "sender", - "struct": "SquareMember" - } - ], - "SquareMessageReaction": [ - { - "fid": 1, - "name": "type", - "struct": "MessageReactionType" - }, - { - "fid": 2, - "name": "reactor", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "createdAt", - "type": 10 - }, - { - "fid": 4, - "name": "updatedAt", - "type": 10 - } - ], - "SquareMessageReactionStatus": [ - { - "fid": 1, - "name": "totalCount", - "type": 8 - }, - { - "fid": 2, - "name": "countByReactionType", - "map": 8, - "key": 8 - }, - { - "fid": 3, - "name": "myReaction", - "struct": "SquareMessageReaction" - } - ], - "SquareMessageStatus": [ - { - "fid": 1, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 2, - "name": "globalMessageId", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "MessageStatusType" - }, - { - "fid": 4, - "name": "contents", - "struct": "MessageStatusContents" - }, - { - "fid": 5, - "name": "publishedAt", - "type": 10 - }, - { - "fid": 6, - "name": "squareChatThreadMid", - "type": 11 - } - ], - "SquareMessageThreadInfo": [ - { - "fid": 1, - "name": "chatThreadMid", - "type": 11 - }, - { - "fid": 2, - "name": "threadRoot", - "type": 2 - } - ], - "SquareMetadata": [ - { - "fid": 1, - "name": "mid", - "type": 11 - }, - { - "fid": 2, - "name": "excluded", - "set": 8 - }, - { - "fid": 3, - "name": "revision", - "type": 10 - }, - { - "fid": 4, - "name": "noAd", - "type": 2 - }, - { - "fid": 5, - "name": "updatedAt", - "type": 10 - } - ], - "SquarePreference": [ - { - "fid": 1, - "name": "favoriteTimestamp", - "type": 10 - }, - { - "fid": 2, - "name": "notiForNewJoinRequest", - "type": 2 - } - ], - "SquareStatus": [ - { - "fid": 1, - "name": "memberCount", - "type": 8 - }, - { - "fid": 2, - "name": "joinRequestCount", - "type": 8 - }, - { - "fid": 3, - "name": "lastJoinRequestAt", - "type": 10 - }, - { - "fid": 4, - "name": "openChatCount", - "type": 8 - } - ], - "SquareThread": [ - { - "fid": 1, - "name": "threadMid", - "type": 11 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "squareMid", - "type": 11 - }, - { - "fid": 4, - "name": "messageId", - "type": 11 - }, - { - "fid": 5, - "name": "state", - "struct": "SquareThreadState" - }, - { - "fid": 6, - "name": "expiresAt", - "type": 10 - }, - { - "fid": 7, - "name": "readOnlyAt", - "type": 10 - }, - { - "fid": 8, - "name": "revision", - "type": 10 - } - ], - "SquareThreadMember": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - }, - { - "fid": 2, - "name": "threadMid", - "type": 11 - }, - { - "fid": 3, - "name": "chatMid", - "type": 11 - }, - { - "fid": 4, - "name": "revision", - "type": 10 - }, - { - "fid": 5, - "name": "membershipState", - "struct": "SquareThreadMembershipState" - } - ], - "SquareUserSettings": [ - { - "fid": 1, - "name": "liveTalkNotification", - "struct": "BooleanState" - } - ], - "SquareVisibility": [ - { - "fid": 1, - "name": "common", - "type": 2 - }, - { - "fid": 2, - "name": "search", - "type": 2 - } - ], - "StartPhotoboothRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - } - ], - "StartPhotoboothResponse": [ - { - "fid": 1, - "name": "photoboothSessionId", - "type": 11 - } - ], - "I80_C0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "modelName", - "type": 11 - }, - { - "fid": 3, - "name": "deviceUid", - "type": 11 - } - ], - "I80_D0": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - }, - { - "fid": 2, - "name": "availableAuthFactors", - "list": 8 - } - ], - "Sticker": [ - { - "fid": 1, - "name": "stickerId", - "type": 11 - }, - { - "fid": 2, - "name": "resourceType", - "struct": "StickerResourceType" - }, - { - "fid": 3, - "name": "popupLayer", - "struct": "zR0_EnumC40578c" - } - ], - "StickerDisplayData": [ - { - "fid": 1, - "name": "stickerHash", - "type": 11 - }, - { - "fid": 2, - "name": "stickerResourceType", - "struct": "StickerResourceType" - }, - { - "fid": 3, - "name": "nameTextProperty", - "struct": "ImageTextProperty" - }, - { - "fid": 4, - "name": "popupLayer", - "struct": "Ob1_B0" - }, - { - "fid": 5, - "name": "stickerSize", - "struct": "Ob1_C1" - }, - { - "fid": 6, - "name": "productAvailability", - "struct": "Ob1_D0" - }, - { - "fid": 7, - "name": "height", - "type": 8 - }, - { - "fid": 8, - "name": "width", - "type": 8 - }, - { - "fid": 9, - "name": "version", - "type": 10 - }, - { - "fid": 10, - "name": "availableForCombinationSticker", - "type": 2 - } - ], - "StickerIdRange": [ - { - "fid": 1, - "name": "start", - "type": 10 - }, - { - "fid": 2, - "name": "size", - "type": 8 - } - ], - "StickerLayout": [ - { - "fid": 1, - "name": "layoutInfo", - "struct": "StickerLayoutInfo" - }, - { - "fid": 2, - "name": "stickerInfo", - "struct": "StickerLayoutStickerInfo" - } - ], - "StickerLayoutInfo": [ - { - "fid": 1, - "name": "width", - "type": 4 - }, - { - "fid": 2, - "name": "height", - "type": 4 - }, - { - "fid": 3, - "name": "rotation", - "type": 4 - }, - { - "fid": 4, - "name": "x", - "type": 4 - }, - { - "fid": 5, - "name": "y", - "type": 4 - } - ], - "StickerLayoutStickerInfo": [ - { - "fid": 1, - "name": "stickerId", - "type": 10 - }, - { - "fid": 2, - "name": "productId", - "type": 10 - }, - { - "fid": 3, - "name": "stickerHash", - "type": 11 - }, - { - "fid": 4, - "name": "stickerOptions", - "type": 11 - }, - { - "fid": 5, - "name": "stickerVersion", - "type": 10 - } - ], - "StickerProperty": [ - { - "fid": 1, - "name": "hasAnimation", - "type": 2 - }, - { - "fid": 2, - "name": "hasSound", - "type": 2 - }, - { - "fid": 3, - "name": "hasPopup", - "type": 2 - }, - { - "fid": 4, - "name": "stickerResourceType", - "struct": "StickerResourceType" - }, - { - "fid": 5, - "name": "stickerOptions", - "type": 11 - }, - { - "fid": 6, - "name": "compactStickerOptions", - "type": 8 - }, - { - "fid": 7, - "name": "stickerHash", - "type": 11 - }, - { - "fid": 9, - "name": "stickerIds", - "list": 11 - }, - { - "fid": 10, - "name": "nameTextProperty", - "struct": "ImageTextProperty" - }, - { - "fid": 11, - "name": "availableForPhotoEdit", - "type": 2 - }, - { - "fid": 12, - "name": "stickerDefaultTexts", - "map": 11, - "key": 11 - }, - { - "fid": 13, - "name": "stickerSize", - "struct": "Ob1_C1" - }, - { - "fid": 14, - "name": "popupLayer", - "struct": "Ob1_B0" - }, - { - "fid": 15, - "name": "cpdProduct", - "type": 2 - }, - { - "fid": 16, - "name": "availableForCombinationSticker", - "type": 2 - } - ], - "StickerSummary": [ - { - "fid": 1, - "name": "stickerIdRanges", - "list": "StickerIdRange" - }, - { - "fid": 2, - "name": "suggestVersion", - "type": 10 - }, - { - "fid": 3, - "name": "stickerHash", - "type": 11 - }, - { - "fid": 4, - "name": "defaultDisplayOnKeyboard", - "type": 2 - }, - { - "fid": 5, - "name": "stickerResourceType", - "struct": "StickerResourceType" - }, - { - "fid": 6, - "name": "nameTextProperty", - "struct": "ImageTextProperty" - }, - { - "fid": 7, - "name": "availableForPhotoEdit", - "type": 2 - }, - { - "fid": 8, - "name": "popupLayer", - "struct": "Ob1_B0" - }, - { - "fid": 9, - "name": "stickerSize", - "struct": "Ob1_C1" - }, - { - "fid": 10, - "name": "availableForCombinationSticker", - "type": 2 - } - ], - "SticonProperty": [ - { - "fid": 2, - "name": "sticonIds", - "list": 11 - }, - { - "fid": 3, - "name": "availableForPhotoEdit", - "type": 2 - }, - { - "fid": 4, - "name": "sticonResourceType", - "struct": "Ob1_F1" - }, - { - "fid": 5, - "name": "endPageMainImages" - } - ], - "SticonSummary": [ - { - "fid": 1, - "name": "suggestVersion", - "type": 10 - }, - { - "fid": 2, - "name": "availableForPhotoEdit", - "type": 2 - }, - { - "fid": 3, - "name": "sticonResourceType", - "struct": "Ob1_F1" - } - ], - "StopBundleSubscriptionRequest": [ - { - "fid": 1, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 2, - "name": "storeCode", - "struct": "Ob1_K1" - } - ], - "StopBundleSubscriptionResponse": [ - { - "fid": 1, - "name": "result", - "struct": "Ob1_J1" - } - ], - "StopNotificationAction": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "characteristicUuid", - "type": 11 - } - ], - "StudentInformation": [ - { - "fid": 1, - "name": "schoolName", - "type": 11 - }, - { - "fid": 2, - "name": "graduationDate", - "type": 11 - } - ], - "SubLiffView": [ - { - "fid": 1, - "name": "presentationType", - "struct": "Qj_i0" - }, - { - "fid": 2, - "name": "url", - "type": 11 - }, - { - "fid": 3, - "name": "maxBrightness", - "type": 2 - }, - { - "fid": 4, - "name": "menuColorSetting", - "struct": "LIFFMenuColorSetting" - }, - { - "fid": 5, - "name": "closeButtonPosition", - "struct": "Qj_h0" - }, - { - "fid": 6, - "name": "closeButtonLabel", - "type": 11 - }, - { - "fid": 7, - "name": "skipWebRTCPermissionPopupAllowed", - "type": 2 - } - ], - "SubTab": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "badgeInfo", - "struct": "BadgeInfo" - }, - { - "fid": 4, - "name": "tooltipInfo", - "struct": "TooltipInfo" - }, - { - "fid": 5, - "name": "modulesOrder", - "list": 11 - }, - { - "fid": 6, - "name": "wrsSubTabModelId", - "type": 11 - } - ], - "SubWindowResultRequest": [ - { - "fid": 1, - "name": "msit", - "type": 11 - }, - { - "fid": 2, - "name": "mstVerifier", - "type": 11 - } - ], - "SubscriptionNotification": [ - { - "fid": 1, - "name": "subscriptionId", - "type": 10 - } - ], - "SubscriptionPlan": [ - { - "fid": 1, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 2, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 3, - "name": "target", - "struct": "Ob1_P1" - }, - { - "fid": 4, - "name": "type", - "struct": "Ob1_R1" - }, - { - "fid": 5, - "name": "period", - "type": 11 - }, - { - "fid": 6, - "name": "freeTrial", - "type": 11 - }, - { - "fid": 7, - "name": "localizedName", - "type": 11 - }, - { - "fid": 8, - "name": "price", - "struct": "Price" - }, - { - "fid": 9, - "name": "availability", - "struct": "Ob1_O1" - }, - { - "fid": 10, - "name": "cpId", - "type": 11 - }, - { - "fid": 11, - "name": "nameKey", - "type": 11 - }, - { - "fid": 12, - "name": "tier", - "struct": "Ob1_Q1" - } - ], - "SubscriptionSlotHistory": [ - { - "fid": 1, - "name": "product", - "struct": "ProductSearchSummary" - }, - { - "fid": 2, - "name": "addedTime", - "type": 10 - }, - { - "fid": 3, - "name": "removedTime", - "type": 10 - } - ], - "SubscriptionState": [ - { - "fid": 1, - "name": "subscriptionId", - "type": 10 - }, - { - "fid": 2, - "name": "ttlMillis", - "type": 10 - } - ], - "SubscriptionStatus": [ - { - "fid": 1, - "name": "billingItemId", - "type": 11 - }, - { - "fid": 2, - "name": "subscriptionService", - "struct": "Ob1_S1" - }, - { - "fid": 3, - "name": "period", - "type": 11 - }, - { - "fid": 4, - "name": "localizedName", - "type": 11 - }, - { - "fid": 5, - "name": "freeTrial", - "type": 2 - }, - { - "fid": 6, - "name": "expired", - "type": 2 - }, - { - "fid": 7, - "name": "validUntil", - "type": 10 - }, - { - "fid": 8, - "name": "maxSlotCount", - "type": 8 - }, - { - "fid": 9, - "name": "target", - "struct": "Ob1_P1" - }, - { - "fid": 10, - "name": "type", - "struct": "Ob1_R1" - }, - { - "fid": 11, - "name": "storeCode", - "struct": "Ob1_K1" - }, - { - "fid": 12, - "name": "nameKey", - "type": 11 - }, - { - "fid": 13, - "name": "tier", - "struct": "Ob1_Q1" - }, - { - "fid": 14, - "name": "accountHold", - "type": 2 - }, - { - "fid": 15, - "name": "maxSlotCountsByProductType", - "map": 8, - "key": 8 - }, - { - "fid": 16, - "name": "agreementAccepted", - "type": 2 - }, - { - "fid": 17, - "name": "originalValidUntil", - "type": 10 - } - ], - "SuggestDictionarySetting": [ - { - "fid": 1, - "name": "language", - "type": 11 - }, - { - "fid": 2, - "name": "name", - "type": 11 - }, - { - "fid": 3, - "name": "preload", - "type": 2 - }, - { - "fid": 4, - "name": "suggestResource", - "struct": "SuggestResource" - }, - { - "fid": 5, - "name": "patch", - "map": 11, - "key": 10 - }, - { - "fid": 6, - "name": "suggestTagResource", - "struct": "SuggestResource" - }, - { - "fid": 7, - "name": "tagPatch", - "map": 11, - "key": 10 - }, - { - "fid": 8, - "name": "corpusResource", - "struct": "SuggestResource" - } - ], - "SuggestResource": [ - { - "fid": 1, - "name": "dataUrl", - "type": 11 - }, - { - "fid": 2, - "name": "version", - "type": 10 - }, - { - "fid": 3, - "name": "updatedTime", - "type": 10 - } - ], - "SuggestTag": [ - { - "fid": 1, - "name": "tagId", - "type": 11 - }, - { - "fid": 2, - "name": "weight", - "type": 4 - } - ], - "SuggestTrialRecommendation": [ - { - "fid": 1, - "name": "productId", - "type": 11 - }, - { - "fid": 2, - "name": "productVersion", - "type": 10 - }, - { - "fid": 3, - "name": "productName", - "type": 11 - }, - { - "fid": 4, - "name": "resource", - "struct": "zR0_C40580e" - }, - { - "fid": 5, - "name": "tags", - "list": "SuggestTag" - } - ], - "SyncRequest": [ - { - "fid": 1, - "name": "lastRevision", - "type": 10 - }, - { - "fid": 2, - "name": "count", - "type": 8 - }, - { - "fid": 3, - "name": "lastGlobalRevision", - "type": 10 - }, - { - "fid": 4, - "name": "lastIndividualRevision", - "type": 10 - }, - { - "fid": 5, - "name": "fullSyncRequestReason", - "struct": "Pb1_J4" - }, - { - "fid": 6, - "name": "lastPartialFullSyncs", - "map": 10, - "key": 8 - } - ], - "SyncSquareMembersRequest": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "squareMembers", - "map": 10, - "key": 11 - } - ], - "SyncSquareMembersResponse": [ - { - "fid": 1, - "name": "updatedSquareMembers", - "list": "SquareMember" - } - ], - "T70_C14398f": [], - "T70_g1": [], - "T70_o1": [], - "T70_s1": [], - "TGlobalEvents": [ - { - "fid": 1, - "name": "events", - "map": "GlobalEvent", - "key": 8 - }, - { - "fid": 2, - "name": "lastRevision", - "type": 10 - } - ], - "TIndividualEvents": [ - { - "fid": 1, - "name": "events", - "set": 8 - }, - { - "fid": 2, - "name": "lastRevision", - "type": 10 - } - ], - "TMessageReadRange": [ - { - "fid": 1, - "name": "chatId", - "type": 11 - }, - { - "fid": 2, - "name": "ranges", - "key": 11 - } - ], - "TMessageReadRangeEntry": [ - { - "fid": 1, - "name": "startMessageId", - "type": 10 - }, - { - "fid": 2, - "name": "endMessageId", - "type": 10 - }, - { - "fid": 3, - "name": "startTime", - "type": 10 - }, - { - "fid": 4, - "name": "endTime", - "type": 10 - } - ], - "Tag": [ - { - "fid": 1, - "name": "tagId", - "type": 11 - }, - { - "fid": 2, - "name": "candidates", - "list": "Candidate" - } - ], - "TaiwanBankAgreementRequiredPopupInfo": [ - { - "fid": 1, - "name": "popupTitle", - "type": 11 - }, - { - "fid": 2, - "name": "popupContent", - "type": 11 - } - ], - "TaiwanBankBalanceInfo": [ - { - "fid": 1, - "name": "bankUser", - "type": 2 - }, - { - "fid": 2, - "name": "balance", - "type": 10 - }, - { - "fid": 3, - "name": "accessToken", - "type": 11 - }, - { - "fid": 4, - "name": "accessTokenExpiresInSecond", - "type": 8 - }, - { - "fid": 5, - "name": "balanceLinkUrl", - "type": 11 - }, - { - "fid": 6, - "name": "balanceDisplay", - "type": 2 - }, - { - "fid": 7, - "name": "agreedToShowBalance", - "type": 2 - }, - { - "fid": 8, - "name": "agreementRequiredPopupInfo", - "struct": "TaiwanBankAgreementRequiredPopupInfo" - } - ], - "TaiwanBankLoginParameters": [ - { - "fid": 1, - "name": "loginScheme", - "type": 11 - }, - { - "fid": 2, - "name": "type", - "type": 11 - }, - { - "fid": 3, - "name": "action", - "type": 11 - }, - { - "fid": 4, - "name": "scope", - "type": 11 - }, - { - "fid": 5, - "name": "responseType", - "type": 11 - }, - { - "fid": 6, - "name": "codeChallengeMethod", - "type": 11 - }, - { - "fid": 7, - "name": "clientId", - "type": 11 - } - ], - "TalkroomEnterReferer": [ - { - "fid": 1, - "name": "urlScheme", - "type": 11 - }, - { - "fid": 2, - "name": "type", - "struct": "kf_x" - }, - { - "fid": 3, - "name": "content", - "struct": "kf_w" - } - ], - "TalkroomEvent": [ - { - "fid": 1, - "name": "type", - "struct": "kf_z" - }, - { - "fid": 2, - "name": "referer", - "struct": "TalkroomEnterReferer" - } - ], - "TargetProfileDetail": [ - { - "fid": 1, - "name": "snapshotTimeMillis", - "type": 10 - }, - { - "fid": 2, - "name": "profileName", - "type": 11 - }, - { - "fid": 3, - "name": "picturePath", - "type": 11 - }, - { - "fid": 4, - "name": "statusMessage", - "struct": "RichString" - }, - { - "fid": 5, - "name": "musicProfile", - "type": 11 - }, - { - "fid": 6, - "name": "videoProfile", - "type": 11 - }, - { - "fid": 7, - "name": "avatarProfile", - "struct": "AvatarProfile" - }, - { - "fid": 8, - "name": "pictureSource", - "struct": "Pb1_N6" - }, - { - "fid": 9, - "name": "pictureStatus", - "type": 11 - }, - { - "fid": 10, - "name": "profileId", - "type": 11 - } - ], - "TermsAgreementExtraInfo": [ - { - "fid": 1, - "name": "termsType", - "struct": "TermsType" - }, - { - "fid": 2, - "name": "termsVersion", - "type": 8 - }, - { - "fid": 3, - "name": "lanUrl", - "type": 11 - } - ], - "TextButton": [ - { - "fid": 1, - "name": "text", - "type": 11 - } - ], - "TextMessageAnnouncementContents": [ - { - "fid": 1, - "name": "messageId", - "type": 11 - }, - { - "fid": 2, - "name": "text", - "type": 11 - }, - { - "fid": 3, - "name": "senderSquareMemberMid", - "type": 11 - }, - { - "fid": 4, - "name": "createdAt", - "type": 10 - } - ], - "ThaiBankBalanceInfo": [ - { - "fid": 1, - "name": "bankUser", - "type": 2 - }, - { - "fid": 2, - "name": "balanceDisplay", - "type": 2 - }, - { - "fid": 3, - "name": "balance", - "type": 4 - }, - { - "fid": 4, - "name": "balanceLinkUrl", - "type": 11 - } - ], - "ThemeProperty": [ - { - "fid": 1, - "name": "thumbnailUrl", - "type": 11 - }, - { - "fid": 2, - "name": "themeResourceType", - "struct": "Ob1_c2" - } - ], - "ThemeSummary": [ - { - "fid": 1, - "name": "imagePath", - "type": 11 - }, - { - "fid": 2, - "name": "version", - "type": 10 - }, - { - "fid": 3, - "name": "versionString", - "type": 11 - } - ], - "ThingsDevice": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - }, - { - "fid": 2, - "name": "actionUri", - "type": 11 - }, - { - "fid": 3, - "name": "botMid", - "type": 11 - }, - { - "fid": 4, - "name": "productType", - "struct": "do0_EnumC23139B" - }, - { - "fid": 5, - "name": "providerName", - "type": 11 - }, - { - "fid": 6, - "name": "profileImageLocation", - "type": 11 - }, - { - "fid": 7, - "name": "channelIdList", - "list": 11 - }, - { - "fid": 8, - "name": "targetABCEngineVersion", - "type": 6 - }, - { - "fid": 9, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 10, - "name": "bondingRequired", - "type": 2 - } - ], - "ThingsOperation": [ - { - "fid": 1, - "name": "deviceId", - "type": 11 - }, - { - "fid": 2, - "name": "offset", - "type": 10 - }, - { - "fid": 3, - "name": "action", - "struct": "do0_C23138A" - } - ], - "ThumbnailLayer": [ - { - "fid": 1, - "name": "frontThumbnailImage", - "struct": "RichImage" - }, - { - "fid": 2, - "name": "backgroundThumbnailImage", - "struct": "RichImage" - } - ], - "Ticket": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 10, - "name": "expirationTime", - "type": 10 - }, - { - "fid": 21, - "name": "maxUseCount", - "type": 8 - } - ], - "TokenV1IssueResult": [ - { - "fid": 1, - "name": "tokenSecret", - "type": 11 - } - ], - "TokenV3IssueResult": [ - { - "fid": 1, - "name": "accessToken", - "type": 11 - }, - { - "fid": 2, - "name": "refreshToken", - "type": 11 - }, - { - "fid": 3, - "name": "durationUntilRefreshInSec", - "type": 10 - }, - { - "fid": 4, - "name": "refreshApiRetryPolicy", - "struct": "RefreshApiRetryPolicy" - }, - { - "fid": 5, - "name": "loginSessionId", - "type": 11 - }, - { - "fid": 6, - "name": "tokenIssueTimeEpochSec", - "type": 10 - } - ], - "Tooltip": [ - { - "fid": 1, - "name": "text", - "type": 11 - }, - { - "fid": 2, - "name": "revisionTimeMillis", - "type": 10 - } - ], - "TooltipInfo": [ - { - "fid": 1, - "name": "text", - "type": 11 - }, - { - "fid": 2, - "name": "tooltipRevision", - "type": 10 - } - ], - "TopTab": [ - { - "fid": 1, - "name": "id", - "type": 11 - }, - { - "fid": 2, - "name": "modulesOrder", - "list": 11 - } - ], - "TryAgainLaterExtraInfo": [ - { - "fid": 1, - "name": "blockSecs", - "type": 8 - } - ], - "U70_a": [], - "U70_t": [], - "U70_v": [], - "UEN": [ - { - "fid": 1, - "name": "revision", - "type": 10 - } - ], - "Uf_C14856C": [ - { - "fid": 1, - "name": "uen", - "struct": "UEN" - }, - { - "fid": 2, - "name": "beacon", - "struct": "Beacon" - } - ], - "Uf_C14864f": [ - { - "fid": 1, - "name": "regularBadge", - "struct": "RegularBadge" - }, - { - "fid": 2, - "name": "urgentBadge", - "struct": "UrgentBadge" - } - ], - "Uf_p": [ - { - "fid": 1, - "name": "ad", - "struct": "AD" - }, - { - "fid": 2, - "name": "content", - "struct": "Content" - }, - { - "fid": 3, - "name": "richContent", - "struct": "RichContent" - } - ], - "Uf_t": [ - { - "fid": 1, - "name": "typeA", - "struct": "RichItem" - }, - { - "fid": 2, - "name": "typeB", - "struct": "RichItem" - } - ], - "UnfollowRequest": [ - { - "fid": 1, - "name": "followMid", - "struct": "Pb1_A4" - } - ], - "UnhideSquareMemberContentsRequest": [ - { - "fid": 1, - "name": "squareMemberMid", - "type": 11 - } - ], - "UnregisterAvailabilityInfo": [ - { - "fid": 1, - "name": "result", - "struct": "r80_m0" - }, - { - "fid": 2, - "name": "message", - "type": 11 - } - ], - "UnsendMessageRequest": [ - { - "fid": 2, - "name": "squareChatMid", - "type": 11 - }, - { - "fid": 3, - "name": "messageId", - "type": 11 - }, - { - "fid": 4, - "name": "threadMid", - "type": 11 - } - ], - "UnsendMessageResponse": [ - { - "fid": 1, - "name": "unsentMessage", - "struct": "SquareMessage" - } - ], - "UpdateChatRequest": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chat", - "struct": "Chat" - }, - { - "fid": 3, - "name": "updatedAttribute", - "struct": "Pb1_O2" - } - ], - "UpdateGroupCallUrlRequest": [ - { - "fid": 1, - "name": "urlId", - "type": 11 - }, - { - "fid": 2, - "name": "targetAttribute", - "struct": "Pb1_ad" - } - ], - "UpdateLiveTalkAttrsRequest": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": "LiveTalkAttribute" - }, - { - "fid": 2, - "name": "liveTalk", - "struct": "LiveTalk" - } - ], - "UpdatePasswordRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "hashedPassword", - "type": 11 - } - ], - "UpdateProfileAttributesRequest": [ - { - "fid": 1, - "name": "profileAttributes", - "map": "ProfileContent", - "key": 8 - } - ], - "UpdateReason": [ - { - "fid": 1, - "name": "type", - "struct": "t80_r" - }, - { - "fid": 2, - "name": "detail", - "type": 11 - } - ], - "UpdateSafetyStatusRequest": [ - { - "fid": 1, - "name": "disasterId", - "type": 11 - }, - { - "fid": 2, - "name": "safetyStatus", - "struct": "vh_m" - }, - { - "fid": 3, - "name": "message", - "type": 11 - } - ], - "UpdateSquareAuthorityRequest": [ - { - "fid": 2, - "name": "updateAttributes", - "set": "SquareAuthorityAttribute" - }, - { - "fid": 3, - "name": "authority", - "struct": "SquareAuthority" - } - ], - "UpdateSquareAuthorityResponse": [ - { - "fid": 1, - "name": "updatdAttributes", - "set": 8 - }, - { - "fid": 2, - "name": "authority", - "struct": "SquareAuthority" - } - ], - "UpdateSquareChatMemberRequest": [ - { - "fid": 2, - "name": "updatedAttrs", - "set": "SquareChatMemberAttribute" - }, - { - "fid": 3, - "name": "chatMember", - "struct": "SquareChatMember" - } - ], - "UpdateSquareChatMemberResponse": [ - { - "fid": 1, - "name": "updatedChatMember", - "struct": "SquareChatMember" - } - ], - "UpdateSquareChatRequest": [ - { - "fid": 2, - "name": "updatedAttrs", - "set": "SquareChatAttribute" - }, - { - "fid": 3, - "name": "squareChat", - "struct": "SquareChat" - } - ], - "UpdateSquareChatResponse": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 2, - "name": "squareChat", - "struct": "SquareChat" - } - ], - "UpdateSquareFeatureSetRequest": [ - { - "fid": 2, - "name": "updateAttributes", - "set": "SquareFeatureSetAttribute" - }, - { - "fid": 3, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - } - ], - "UpdateSquareFeatureSetResponse": [ - { - "fid": 1, - "name": "updateAttributes", - "set": 8 - }, - { - "fid": 2, - "name": "squareFeatureSet", - "struct": "SquareFeatureSet" - } - ], - "UpdateSquareMemberRelationRequest": [ - { - "fid": 2, - "name": "squareMid", - "type": 11 - }, - { - "fid": 3, - "name": "targetSquareMemberMid", - "type": 11 - }, - { - "fid": 4, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 5, - "name": "relation", - "struct": "SquareMemberRelation" - } - ], - "UpdateSquareMemberRelationResponse": [ - { - "fid": 1, - "name": "squareMid", - "type": 11 - }, - { - "fid": 2, - "name": "targetSquareMemberMid", - "type": 11 - }, - { - "fid": 3, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 4, - "name": "relation", - "struct": "SquareMemberRelation" - } - ], - "UpdateSquareMemberRequest": [ - { - "fid": 2, - "name": "updatedAttrs", - "set": "SquareMemberAttribute" - }, - { - "fid": 3, - "name": "updatedPreferenceAttrs", - "set": "SquarePreferenceAttribute" - }, - { - "fid": 4, - "name": "squareMember", - "struct": "SquareMember" - } - ], - "UpdateSquareMemberResponse": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 2, - "name": "squareMember", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "updatedPreferenceAttrs", - "set": 8 - } - ], - "UpdateSquareMembersRequest": [ - { - "fid": 2, - "name": "updatedAttrs", - "set": "SquareMemberAttribute" - }, - { - "fid": 3, - "name": "members", - "list": "SquareMember" - } - ], - "UpdateSquareMembersResponse": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 2, - "name": "editor", - "struct": "SquareMember" - }, - { - "fid": 3, - "name": "members", - "map": "SquareMember", - "key": 11 - } - ], - "UpdateSquareRequest": [ - { - "fid": 2, - "name": "updatedAttrs", - "set": "SquareAttribute" - }, - { - "fid": 3, - "name": "square", - "struct": "Square" - } - ], - "UpdateSquareResponse": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": 8 - }, - { - "fid": 2, - "name": "square", - "struct": "Square" - } - ], - "UpdateUserSettingsRequest": [ - { - "fid": 1, - "name": "updatedAttrs", - "set": "SquareUserSettingsAttribute" - }, - { - "fid": 2, - "name": "userSettings", - "struct": "SquareUserSettings" - } - ], - "UrgentBadge": [ - { - "fid": 1, - "name": "bgColor", - "type": 11 - }, - { - "fid": 2, - "name": "label", - "type": 11 - }, - { - "fid": 3, - "name": "color", - "type": 11 - } - ], - "UrlButton": [ - { - "fid": 1, - "name": "text", - "type": 11 - }, - { - "fid": 2, - "name": "url", - "type": 11 - } - ], - "UsePhotoboothTicketRequest": [ - { - "fid": 1, - "name": "chatMid", - "type": 11 - }, - { - "fid": 2, - "name": "photoboothSessionId", - "type": 11 - } - ], - "UsePhotoboothTicketResponse": [ - { - "fid": 1, - "name": "signedTicketJwt", - "type": 11 - } - ], - "UserBlockDetail": [ - { - "fid": 3, - "name": "deletedFromBlockList", - "type": 2 - } - ], - "UserDevice": [ - { - "fid": 1, - "name": "device", - "struct": "ThingsDevice" - }, - { - "fid": 2, - "name": "deviceDisplayName", - "type": 11 - } - ], - "UserFriendDetail": [ - { - "fid": 1, - "name": "createdTime", - "type": 10 - }, - { - "fid": 3, - "name": "overriddenName", - "type": 11 - }, - { - "fid": 4, - "name": "favoriteTime", - "type": 10 - }, - { - "fid": 6, - "name": "hidden", - "type": 2 - }, - { - "fid": 7, - "name": "ringtone", - "type": 11 - }, - { - "fid": 8, - "name": "ringbackTone", - "type": 11 - } - ], - "UserPhoneNumber": [ - { - "fid": 1, - "name": "phoneNumber", - "type": 11 - }, - { - "fid": 2, - "name": "countryCode", - "type": 11 - } - ], - "UserProfile": [ - { - "fid": 1, - "name": "displayName", - "type": 11 - }, - { - "fid": 2, - "name": "profileImageUrl", - "type": 11 - } - ], - "UserRestrictionExtraInfo": [ - { - "fid": 1, - "name": "linkUrl", - "type": 11 - } - ], - "V1PasswordHashingParameters": [ - { - "fid": 1, - "name": "aesKey", - "type": 11 - }, - { - "fid": 2, - "name": "salt", - "type": 11 - } - ], - "VerificationSessionData": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "method", - "struct": "VerificationMethod" - }, - { - "fid": 3, - "name": "callback", - "type": 11 - }, - { - "fid": 4, - "name": "normalizedPhone", - "type": 11 - }, - { - "fid": 5, - "name": "countryCode", - "type": 11 - }, - { - "fid": 6, - "name": "nationalSignificantNumber", - "type": 11 - }, - { - "fid": 7, - "name": "availableVerificationMethods", - "list": "VerificationMethod" - } - ], - "VerifyAccountUsingHashedPwdRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - }, - { - "fid": 3, - "name": "v1HashedPassword", - "type": 11 - }, - { - "fid": 4, - "name": "clientHashedPassword", - "type": 11 - } - ], - "I80_E0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "v1HashedPassword", - "type": 11 - }, - { - "fid": 3, - "name": "clientHashedPassword", - "type": 11 - } - ], - "VerifyAccountUsingHashedPwdResponse": [ - { - "fid": 1, - "name": "userProfile", - "struct": "UserProfile" - } - ], - "VerifyAssertionRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "credentialId", - "type": 11 - }, - { - "fid": 3, - "name": "assertionObject", - "type": 11 - }, - { - "fid": 4, - "name": "clientDataJSON", - "type": 11 - } - ], - "VerifyAttestationRequest": [ - { - "fid": 1, - "name": "sessionId", - "type": 11 - }, - { - "fid": 2, - "name": "attestationObject", - "type": 11 - }, - { - "fid": 3, - "name": "clientDataJSON", - "type": 11 - } - ], - "VerifyEapLoginRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "eapLogin", - "struct": "EapLogin" - } - ], - "I80_G0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "eapLogin", - "struct": "EapLogin" - } - ], - "VerifyEapLoginResponse": [ - { - "fid": 1, - "name": "accountExists", - "type": 2 - } - ], - "I80_H0": [ - { - "fid": 1, - "name": "userProfile", - "struct": "I80_V70_a" - } - ], - "VerifyPhonePinCodeRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - }, - { - "fid": 3, - "name": "pinCode", - "type": 11 - } - ], - "I80_I0": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "userPhoneNumber", - "struct": "UserPhoneNumber" - }, - { - "fid": 3, - "name": "pinCode", - "type": 11 - } - ], - "VerifyPhonePinCodeResponse": [ - { - "fid": 1, - "name": "accountExist", - "type": 2 - }, - { - "fid": 2, - "name": "sameUdidFromAccount", - "type": 2 - }, - { - "fid": 3, - "name": "allowedToRegister", - "type": 2 - }, - { - "fid": 11, - "name": "userProfile", - "struct": "UserProfile" - } - ], - "I80_J0": [ - { - "fid": 1, - "name": "userProfile", - "struct": "I80_V70_a" - } - ], - "VerifyPinCodeRequest": [ - { - "fid": 1, - "name": "pinCode", - "type": 11 - } - ], - "VerifyQrCodeRequest": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "metaData", - "map": 11, - "key": 11 - } - ], - "VerifySocialLoginResponse": [ - { - "fid": 2, - "name": "accountExist", - "type": 2 - }, - { - "fid": 11, - "name": "userProfile", - "struct": "UserProfile" - }, - { - "fid": 12, - "name": "sameUdidFromAccount", - "type": 2 - } - ], - "I80_K0": [ - { - "fid": 1, - "name": "baseUrl", - "type": 11 - }, - { - "fid": 2, - "name": "token", - "type": 11 - } - ], - "WebAuthDetails": [ - { - "fid": 1, - "name": "baseUrl", - "type": 11 - }, - { - "fid": 2, - "name": "token", - "type": 11 - } - ], - "WebLoginRequest": [ - { - "fid": 1, - "name": "hookedFullUrl", - "type": 11 - }, - { - "fid": 2, - "name": "sessionString", - "type": 11 - }, - { - "fid": 3, - "name": "fromIAB", - "type": 2 - }, - { - "fid": 4, - "name": "sourceApplication", - "type": 11 - } - ], - "WebLoginResponse": [ - { - "fid": 1, - "name": "returnUrl", - "type": 11 - }, - { - "fid": 2, - "name": "optionalReturnUrl", - "type": 11 - }, - { - "fid": 3, - "name": "redirectConfirmationPageUrl", - "type": 11 - } - ], - "WifiSignal": [ - { - "fid": 2, - "name": "ssid", - "type": 11 - }, - { - "fid": 3, - "name": "bssid", - "type": 11 - }, - { - "fid": 4, - "name": "wifiStandard", - "type": 11 - }, - { - "fid": 5, - "name": "frequency", - "type": 4 - }, - { - "fid": 10, - "name": "lastSeenTimestamp", - "type": 10 - }, - { - "fid": 11, - "name": "rssi", - "type": 8 - } - ], - "Z70_a": [ - { - "fid": 1, - "name": "recoveryKey", - "type": 11 - }, - { - "fid": 2, - "name": "backupBlobPayload", - "type": 11 - } - ], - "ZQ0_b": [], - "acceptChatInvitationByTicket_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptChatInvitationByTicketRequest" - } - ], - "acceptChatInvitationByTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C12980f" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "acceptChatInvitation_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptChatInvitationRequest" - } - ], - "acceptChatInvitation_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C13008h" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "SquareService_acceptSpeakers_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcceptSpeakersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_acceptToChangeRole_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcceptToChangeRoleResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_acceptToListen_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcceptToListenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_acceptToSpeak_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcceptToSpeakResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_acquireLiveTalk_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcquireLiveTalkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_cancelToSpeak_result": [ - { - "fid": 0, - "name": "success", - "struct": "CancelToSpeakResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_fetchLiveTalkEvents_result": [ - { - "fid": 0, - "name": "success", - "struct": "FetchLiveTalkEventsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_findLiveTalkByInvitationTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "FindLiveTalkByInvitationTicketResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_forceEndLiveTalk_result": [ - { - "fid": 0, - "name": "success", - "struct": "ForceEndLiveTalkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getLiveTalkInfoForNonMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetLiveTalkInfoForNonMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getLiveTalkInvitationUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetLiveTalkInvitationUrlResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getLiveTalkSpeakersForNonMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetLiveTalkSpeakersForNonMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareInfoByChatMid_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareInfoByChatMidResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteToChangeRole_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteToChangeRoleResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteToListen_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteToListenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteToLiveTalk_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteToLiveTalkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteToSpeak_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteToSpeakResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_joinLiveTalk_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinLiveTalkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_kickOutLiveTalkParticipants_result": [ - { - "fid": 0, - "name": "success", - "struct": "KickOutLiveTalkParticipantsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_rejectSpeakers_result": [ - { - "fid": 0, - "name": "success", - "struct": "RejectSpeakersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_rejectToSpeak_result": [ - { - "fid": 0, - "name": "success", - "struct": "RejectToSpeakResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_removeLiveTalkSubscription_result": [ - { - "fid": 0, - "name": "success", - "struct": "RemoveLiveTalkSubscriptionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportLiveTalk_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportLiveTalkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportLiveTalkSpeaker_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportLiveTalkSpeakerResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_requestToListen_result": [ - { - "fid": 0, - "name": "success", - "struct": "RequestToListenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_requestToSpeak_result": [ - { - "fid": 0, - "name": "success", - "struct": "RequestToSpeakResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateLiveTalkAttrs_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateLiveTalkAttrsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_acceptSpeakers_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptSpeakersRequest" - } - ], - "SquareService_acceptToChangeRole_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptToChangeRoleRequest" - } - ], - "SquareService_acceptToListen_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptToListenRequest" - } - ], - "SquareService_acceptToSpeak_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcceptToSpeakRequest" - } - ], - "SquareService_acquireLiveTalk_args": [ - { - "fid": 1, - "name": "request", - "struct": "AcquireLiveTalkRequest" - } - ], - "SquareService_cancelToSpeak_args": [ - { - "fid": 1, - "name": "request", - "struct": "CancelToSpeakRequest" - } - ], - "SquareService_fetchLiveTalkEvents_args": [ - { - "fid": 1, - "name": "request", - "struct": "FetchLiveTalkEventsRequest" - } - ], - "SquareService_findLiveTalkByInvitationTicket_args": [ - { - "fid": 1, - "name": "request", - "struct": "FindLiveTalkByInvitationTicketRequest" - } - ], - "SquareService_forceEndLiveTalk_args": [ - { - "fid": 1, - "name": "request", - "struct": "ForceEndLiveTalkRequest" - } - ], - "SquareService_getLiveTalkInfoForNonMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetLiveTalkInfoForNonMemberRequest" - } - ], - "SquareService_getLiveTalkInvitationUrl_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetLiveTalkInvitationUrlRequest" - } - ], - "SquareService_getLiveTalkSpeakersForNonMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetLiveTalkSpeakersForNonMemberRequest" - } - ], - "SquareService_getSquareInfoByChatMid_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareInfoByChatMidRequest" - } - ], - "SquareService_inviteToChangeRole_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteToChangeRoleRequest" - } - ], - "SquareService_inviteToListen_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteToListenRequest" - } - ], - "SquareService_inviteToLiveTalk_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteToLiveTalkRequest" - } - ], - "SquareService_inviteToSpeak_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteToSpeakRequest" - } - ], - "SquareService_joinLiveTalk_args": [ - { - "fid": 1, - "name": "request", - "struct": "JoinLiveTalkRequest" - } - ], - "SquareService_kickOutLiveTalkParticipants_args": [ - { - "fid": 1, - "name": "request", - "struct": "KickOutLiveTalkParticipantsRequest" - } - ], - "SquareService_rejectSpeakers_args": [ - { - "fid": 1, - "name": "request", - "struct": "RejectSpeakersRequest" - } - ], - "SquareService_rejectToSpeak_args": [ - { - "fid": 1, - "name": "request", - "struct": "RejectToSpeakRequest" - } - ], - "SquareService_removeLiveTalkSubscription_args": [ - { - "fid": 1, - "name": "request", - "struct": "RemoveLiveTalkSubscriptionRequest" - } - ], - "SquareService_reportLiveTalk_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportLiveTalkRequest" - } - ], - "SquareService_reportLiveTalkSpeaker_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportLiveTalkSpeakerRequest" - } - ], - "SquareService_requestToListen_args": [ - { - "fid": 1, - "name": "request", - "struct": "RequestToListenRequest" - } - ], - "SquareService_requestToSpeak_args": [ - { - "fid": 1, - "name": "request", - "struct": "RequestToSpeakRequest" - } - ], - "SquareService_updateLiveTalkAttrs_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateLiveTalkAttrsRequest" - } - ], - "acquireCallRoute_args": [ - { - "fid": 2, - "name": "to", - "type": 11 - }, - { - "fid": 3, - "name": "callType", - "struct": "Pb1_D4" - }, - { - "fid": 4, - "name": "fromEnvInfo", - "map": 11, - "key": 11 - } - ], - "acquireCallRoute_result": [ - { - "fid": 0, - "name": "success", - "struct": "CallRoute" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "acquireEncryptedAccessToken_args": [ - { - "fid": 2, - "name": "featureType", - "struct": "Pb1_EnumC13222w4" - } - ], - "acquireEncryptedAccessToken_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "acquireGroupCallRoute_args": [ - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "mediaType", - "struct": "Pb1_EnumC13237x5" - }, - { - "fid": 4, - "name": "isInitialHost", - "type": 2 - }, - { - "fid": 5, - "name": "capabilities", - "list": 11 - } - ], - "acquireGroupCallRoute_result": [ - { - "fid": 0, - "name": "success", - "struct": "GroupCallRoute" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "acquireOACallRoute_args": [ - { - "fid": 2, - "name": "request", - "struct": "AcquireOACallRouteRequest" - } - ], - "acquireOACallRoute_result": [ - { - "fid": 0, - "name": "success", - "struct": "AcquireOACallRouteResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "acquirePaidCallRoute_args": [ - { - "fid": 2, - "name": "paidCallType", - "struct": "PaidCallType" - }, - { - "fid": 3, - "name": "dialedNumber", - "type": 11 - }, - { - "fid": 4, - "name": "language", - "type": 11 - }, - { - "fid": 5, - "name": "networkCode", - "type": 11 - }, - { - "fid": 6, - "name": "disableCallerId", - "type": 2 - }, - { - "fid": 7, - "name": "referer", - "type": 11 - }, - { - "fid": 8, - "name": "adSessionId", - "type": 11 - } - ], - "acquirePaidCallRoute_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaidCallResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "activateSubscription_args": [ - { - "fid": 1, - "name": "request", - "struct": "ActivateSubscriptionRequest" - } - ], - "activateSubscription_result": [ - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "adTypeOptOutClickEvent_args": [ - { - "fid": 1, - "name": "request", - "struct": "AdTypeOptOutClickEventRequest" - } - ], - "adTypeOptOutClickEvent_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_C12152b" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "addFriendByMid_args": [ - { - "fid": 1, - "name": "request", - "struct": "AddFriendByMidRequest" - } - ], - "addFriendByMid_result": [ - { - "fid": 0, - "name": "success", - "struct": "LN0_C11270b" - }, - { - "fid": 1, - "name": "be", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "ce", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - } - ], - "addItemToCollection_args": [ - { - "fid": 1, - "name": "request", - "struct": "AddItemToCollectionRequest" - } - ], - "addItemToCollection_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ob1_C12608b" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "addOaFriend_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_C12155c" - } - ], - "addOaFriend_result": [ - { - "fid": 0, - "name": "success", - "struct": "AddOaFriendResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "addProductToSubscriptionSlot_args": [ - { - "fid": 2, - "name": "req", - "struct": "AddProductToSubscriptionSlotRequest" - } - ], - "addProductToSubscriptionSlot_result": [ - { - "fid": 0, - "name": "success", - "struct": "AddProductToSubscriptionSlotResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "addThemeToSubscriptionSlot_args": [ - { - "fid": 2, - "name": "req", - "struct": "AddThemeToSubscriptionSlotRequest" - } - ], - "addThemeToSubscriptionSlot_result": [ - { - "fid": 0, - "name": "success", - "struct": "AddThemeToSubscriptionSlotResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "addToFollowBlacklist_args": [ - { - "fid": 2, - "name": "addToFollowBlacklistRequest", - "struct": "AddToFollowBlacklistRequest" - } - ], - "addToFollowBlacklist_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "SquareService_agreeToTerms_result": [ - { - "fid": 0, - "name": "success", - "struct": "AgreeToTermsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_approveSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "ApproveSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_checkJoinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckJoinCodeResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_createSquareChatAnnouncement_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateSquareChatAnnouncementResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_createSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_createSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_deleteSquareChatAnnouncement_result": [ - { - "fid": 0, - "name": "success", - "struct": "DeleteSquareChatAnnouncementResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_deleteSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "DeleteSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_deleteSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "DeleteSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_destroyMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "DestroyMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_destroyMessages_result": [ - { - "fid": 0, - "name": "success", - "struct": "DestroyMessagesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_fetchMyEvents_result": [ - { - "fid": 0, - "name": "success", - "struct": "FetchMyEventsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_fetchSquareChatEvents_result": [ - { - "fid": 0, - "name": "success", - "struct": "FetchSquareChatEventsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_findSquareByEmid_result": [ - { - "fid": 0, - "name": "success", - "struct": "FindSquareByEmidResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_findSquareByInvitationTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "FindSquareByInvitationTicketResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_findSquareByInvitationTicketV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "FindSquareByInvitationTicketV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getGoogleAdOptions_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetGoogleAdOptionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getInvitationTicketUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetInvitationTicketUrlResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getJoinableSquareChats_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetJoinableSquareChatsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getJoinedSquareChats_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetJoinedSquareChatsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getJoinedSquares_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetJoinedSquaresResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getMessageReactions_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMessageReactionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getNoteStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetNoteStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getPopularKeywords_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPopularKeywordsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareAuthorities_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareAuthoritiesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareAuthority_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareAuthorityResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getCategories_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareCategoriesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatAnnouncements_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatAnnouncementsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatEmid_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatEmidResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatFeatureSet_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatFeatureSetResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareChatStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareChatStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareEmid_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareEmidResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareFeatureSet_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareFeatureSetResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareMemberRelation_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareMemberRelationResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareMemberRelations_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareMemberRelationsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareMembersBySquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareMembersBySquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareThreadMid_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareThreadMidResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getSquareThread_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareThreadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_getUserSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetUserSettingsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_hideSquareMemberContents_result": [ - { - "fid": 0, - "name": "success", - "struct": "HideSquareMemberContentsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteIntoSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteIntoSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_inviteToSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteToSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_joinSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_joinSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_joinSquareThread_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinSquareThreadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_leaveSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "LeaveSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_leaveSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "LeaveSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_leaveSquareThread_result": [ - { - "fid": 0, - "name": "success", - "struct": "LeaveSquareThreadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_manualRepair_result": [ - { - "fid": 0, - "name": "success", - "struct": "ManualRepairResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_markAsRead_result": [ - { - "fid": 0, - "name": "success", - "struct": "MarkAsReadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_markChatsAsRead_result": [ - { - "fid": 0, - "name": "success", - "struct": "MarkChatsAsReadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_markThreadsAsRead_result": [ - { - "fid": 0, - "name": "success", - "struct": "MarkThreadsAsReadResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reactToMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReactToMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_refreshSubscriptions_result": [ - { - "fid": 0, - "name": "success", - "struct": "RefreshSubscriptionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_rejectSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "RejectSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_removeSubscriptions_result": [ - { - "fid": 0, - "name": "success", - "struct": "RemoveSubscriptionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportMessageSummary_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportMessageSummaryResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportSquareMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportSquareMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportSquareMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportSquareMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_reportSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReportSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_searchSquareChatMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "SearchSquareChatMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_searchSquareChatMentionables_result": [ - { - "fid": 0, - "name": "success", - "struct": "SearchSquareChatMentionablesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_searchSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "SearchSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_searchSquares_result": [ - { - "fid": 0, - "name": "success", - "struct": "SearchSquaresResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_sendMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "SendMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_sendSquareThreadMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "SendSquareThreadMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_syncSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "SyncSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_unhideSquareMemberContents_result": [ - { - "fid": 0, - "name": "success", - "struct": "UnhideSquareMemberContentsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_unsendMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "UnsendMessageResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareAuthority_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareAuthorityResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareChatMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareChatMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareFeatureSet_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareFeatureSetResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareMemberRelation_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareMemberRelationResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareMember_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareMemberResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquareMembers_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareMembersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateSquare_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateSquareResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_updateUserSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "UpdateUserSettingsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SquareException" - } - ], - "SquareService_agreeToTerms_args": [ - { - "fid": 1, - "name": "request", - "struct": "AgreeToTermsRequest" - } - ], - "SquareService_approveSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "ApproveSquareMembersRequest" - } - ], - "SquareService_checkJoinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "CheckJoinCodeRequest" - } - ], - "SquareService_createSquareChatAnnouncement_args": [ - { - "fid": 1, - "name": "createSquareChatAnnouncementRequest", - "struct": "CreateSquareChatAnnouncementRequest" - } - ], - "SquareService_createSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "CreateSquareChatRequest" - } - ], - "SquareService_createSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "CreateSquareRequest" - } - ], - "SquareService_deleteSquareChatAnnouncement_args": [ - { - "fid": 1, - "name": "deleteSquareChatAnnouncementRequest", - "struct": "DeleteSquareChatAnnouncementRequest" - } - ], - "SquareService_deleteSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeleteSquareChatRequest" - } - ], - "SquareService_deleteSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeleteSquareRequest" - } - ], - "SquareService_destroyMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "DestroyMessageRequest" - } - ], - "SquareService_destroyMessages_args": [ - { - "fid": 1, - "name": "request", - "struct": "DestroyMessagesRequest" - } - ], - "SquareService_fetchMyEvents_args": [ - { - "fid": 1, - "name": "request", - "struct": "FetchMyEventsRequest" - } - ], - "SquareService_fetchSquareChatEvents_args": [ - { - "fid": 1, - "name": "request", - "struct": "FetchSquareChatEventsRequest" - } - ], - "SquareService_findSquareByEmid_args": [ - { - "fid": 1, - "name": "findSquareByEmidRequest", - "struct": "FindSquareByEmidRequest" - } - ], - "SquareService_findSquareByInvitationTicket_args": [ - { - "fid": 1, - "name": "request", - "struct": "FindSquareByInvitationTicketRequest" - } - ], - "SquareService_findSquareByInvitationTicketV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "FindSquareByInvitationTicketV2Request" - } - ], - "SquareService_getGoogleAdOptions_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetGoogleAdOptionsRequest" - } - ], - "SquareService_getInvitationTicketUrl_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetInvitationTicketUrlRequest" - } - ], - "SquareService_getJoinableSquareChats_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetJoinableSquareChatsRequest" - } - ], - "SquareService_getJoinedSquareChats_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetJoinedSquareChatsRequest" - } - ], - "SquareService_getJoinedSquares_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetJoinedSquaresRequest" - } - ], - "SquareService_getMessageReactions_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetMessageReactionsRequest" - } - ], - "SquareService_getNoteStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetNoteStatusRequest" - } - ], - "SquareService_getPopularKeywords_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPopularKeywordsRequest" - } - ], - "SquareService_getSquareAuthorities_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareAuthoritiesRequest" - } - ], - "SquareService_getSquareAuthority_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareAuthorityRequest" - } - ], - "SquareService_getCategories_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareCategoriesRequest" - } - ], - "SquareService_getSquareChatAnnouncements_args": [ - { - "fid": 1, - "name": "getSquareChatAnnouncementsRequest", - "struct": "GetSquareChatAnnouncementsRequest" - } - ], - "SquareService_getSquareChatEmid_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatEmidRequest" - } - ], - "SquareService_getSquareChatFeatureSet_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatFeatureSetRequest" - } - ], - "SquareService_getSquareChatMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatMemberRequest" - } - ], - "SquareService_getSquareChatMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatMembersRequest" - } - ], - "SquareService_getSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatRequest" - } - ], - "SquareService_getSquareChatStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareChatStatusRequest" - } - ], - "SquareService_getSquareEmid_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareEmidRequest" - } - ], - "SquareService_getSquareFeatureSet_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareFeatureSetRequest" - } - ], - "SquareService_getSquareMemberRelation_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareMemberRelationRequest" - } - ], - "SquareService_getSquareMemberRelations_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareMemberRelationsRequest" - } - ], - "SquareService_getSquareMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareMemberRequest" - } - ], - "SquareService_getSquareMembersBySquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareMembersBySquareRequest" - } - ], - "SquareService_getSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareMembersRequest" - } - ], - "SquareService_getSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareRequest" - } - ], - "SquareService_getSquareStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareStatusRequest" - } - ], - "SquareService_getSquareThreadMid_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareThreadMidRequest" - } - ], - "SquareService_getSquareThread_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSquareThreadRequest" - } - ], - "SquareService_getUserSettings_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetUserSettingsRequest" - } - ], - "SquareService_hideSquareMemberContents_args": [ - { - "fid": 1, - "name": "request", - "struct": "HideSquareMemberContentsRequest" - } - ], - "SquareService_inviteIntoSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteIntoSquareChatRequest" - } - ], - "SquareService_inviteToSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteToSquareRequest" - } - ], - "SquareService_joinSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "JoinSquareChatRequest" - } - ], - "SquareService_joinSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "JoinSquareRequest" - } - ], - "SquareService_joinSquareThread_args": [ - { - "fid": 1, - "name": "request", - "struct": "JoinSquareThreadRequest" - } - ], - "SquareService_leaveSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "LeaveSquareChatRequest" - } - ], - "SquareService_leaveSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "LeaveSquareRequest" - } - ], - "SquareService_leaveSquareThread_args": [ - { - "fid": 1, - "name": "request", - "struct": "LeaveSquareThreadRequest" - } - ], - "SquareService_manualRepair_args": [ - { - "fid": 1, - "name": "request", - "struct": "ManualRepairRequest" - } - ], - "SquareService_markAsRead_args": [ - { - "fid": 1, - "name": "request", - "struct": "MarkAsReadRequest" - } - ], - "SquareService_markChatsAsRead_args": [ - { - "fid": 1, - "name": "request", - "struct": "MarkChatsAsReadRequest" - } - ], - "SquareService_markThreadsAsRead_args": [ - { - "fid": 1, - "name": "request", - "struct": "MarkThreadsAsReadRequest" - } - ], - "SquareService_reactToMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReactToMessageRequest" - } - ], - "SquareService_refreshSubscriptions_args": [ - { - "fid": 1, - "name": "request", - "struct": "RefreshSubscriptionsRequest" - } - ], - "SquareService_rejectSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "RejectSquareMembersRequest" - } - ], - "SquareService_removeSubscriptions_args": [ - { - "fid": 1, - "name": "request", - "struct": "RemoveSubscriptionsRequest" - } - ], - "SquareService_reportMessageSummary_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportMessageSummaryRequest" - } - ], - "SquareService_reportSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportSquareChatRequest" - } - ], - "SquareService_reportSquareMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportSquareMemberRequest" - } - ], - "SquareService_reportSquareMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportSquareMessageRequest" - } - ], - "SquareService_reportSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportSquareRequest" - } - ], - "SquareService_searchSquareChatMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "SearchSquareChatMembersRequest" - } - ], - "SquareService_searchSquareChatMentionables_args": [ - { - "fid": 1, - "name": "request", - "struct": "SearchSquareChatMentionablesRequest" - } - ], - "SquareService_searchSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "SearchSquareMembersRequest" - } - ], - "SquareService_searchSquares_args": [ - { - "fid": 1, - "name": "request", - "struct": "SearchSquaresRequest" - } - ], - "SquareService_sendMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "SendMessageRequest" - } - ], - "SquareService_sendSquareThreadMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "SendSquareThreadMessageRequest" - } - ], - "SquareService_syncSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "SyncSquareMembersRequest" - } - ], - "SquareService_unhideSquareMemberContents_args": [ - { - "fid": 1, - "name": "request", - "struct": "UnhideSquareMemberContentsRequest" - } - ], - "SquareService_unsendMessage_args": [ - { - "fid": 1, - "name": "request", - "struct": "UnsendMessageRequest" - } - ], - "SquareService_updateSquareAuthority_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareAuthorityRequest" - } - ], - "SquareService_updateSquareChatMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareChatMemberRequest" - } - ], - "SquareService_updateSquareChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareChatRequest" - } - ], - "SquareService_updateSquareFeatureSet_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareFeatureSetRequest" - } - ], - "SquareService_updateSquareMemberRelation_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareMemberRelationRequest" - } - ], - "SquareService_updateSquareMember_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareMemberRequest" - } - ], - "SquareService_updateSquareMembers_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareMembersRequest" - } - ], - "SquareService_updateSquare_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateSquareRequest" - } - ], - "SquareService_updateUserSettings_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateUserSettingsRequest" - } - ], - "approveChannelAndIssueChannelToken_args": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - } - ], - "approveChannelAndIssueChannelToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChannelToken" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "authenticateUsingBankAccountEx_args": [ - { - "fid": 1, - "name": "type", - "struct": "r80_EnumC34362b" - }, - { - "fid": 2, - "name": "bankId", - "type": 11 - }, - { - "fid": 3, - "name": "bankBranchId", - "type": 11 - }, - { - "fid": 4, - "name": "realAccountNo", - "type": 11 - }, - { - "fid": 5, - "name": "accountProductCode", - "struct": "r80_EnumC34361a" - }, - { - "fid": 6, - "name": "authToken", - "type": 11 - } - ], - "authenticateUsingBankAccountEx_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaymentAuthenticationInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "authenticateWithPaak_args": [ - { - "fid": 1, - "name": "request", - "struct": "AuthenticateWithPaakRequest" - } - ], - "authenticateWithPaak_result": [ - { - "fid": 0, - "name": "success", - "struct": "o80_C32273b" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryPwlessLoginException" - } - ], - "blockContact_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "id", - "type": 11 - } - ], - "blockContact_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "blockRecommendation_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "targetMid", - "type": 11 - } - ], - "blockRecommendation_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "bulkFollow_args": [ - { - "fid": 2, - "name": "bulkFollowRequest", - "struct": "BulkFollowRequest" - } - ], - "bulkFollow_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C12996g1" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "bulkGetSetting_args": [ - { - "fid": 2, - "name": "request", - "struct": "BulkGetRequest" - } - ], - "bulkGetSetting_result": [ - { - "fid": 0, - "name": "success", - "struct": "s80_t80_b" - }, - { - "fid": 1, - "name": "e", - "struct": "SettingsException" - } - ], - "bulkSetSetting_args": [ - { - "fid": 2, - "name": "request", - "struct": "s80_t80_c" - } - ], - "bulkSetSetting_result": [ - { - "fid": 0, - "name": "success", - "struct": "s80_t80_d" - }, - { - "fid": 1, - "name": "e", - "struct": "SettingsException" - } - ], - "buyMustbuyProduct_args": [ - { - "fid": 2, - "name": "request", - "struct": "BuyMustbuyRequest" - } - ], - "buyMustbuyProduct_result": [ - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "canCreateCombinationSticker_args": [ - { - "fid": 2, - "name": "request", - "struct": "CanCreateCombinationStickerRequest" - } - ], - "canCreateCombinationSticker_result": [ - { - "fid": 0, - "name": "success", - "struct": "CanCreateCombinationStickerResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "canReceivePresent_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "locale", - "struct": "Locale" - }, - { - "fid": 5, - "name": "recipientMid", - "type": 11 - } - ], - "canReceivePresent_result": [ - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "cancelChatInvitation_args": [ - { - "fid": 1, - "name": "request", - "struct": "CancelChatInvitationRequest" - } - ], - "cancelChatInvitation_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_U1" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "cancelPaakAuth_args": [ - { - "fid": 1, - "name": "request", - "struct": "CancelPaakAuthRequest" - } - ], - "cancelPaakAuth_result": [ - { - "fid": 0, - "name": "success", - "struct": "o80_d" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryPwlessLoginException" - } - ], - "cancelPaakAuthentication_args": [ - { - "fid": 1, - "name": "request", - "struct": "CancelPaakAuthenticationRequest" - } - ], - "cancelPaakAuthentication_result": [ - { - "fid": 0, - "name": "success", - "struct": "n80_d" - }, - { - "fid": 1, - "name": "cpae", - "struct": "ChannelPaakAuthnException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "cancelPinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "CancelPinCodeRequest" - } - ], - "cancelPinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "q80_C33650b" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryQrCodeException" - } - ], - "cancelReaction_args": [ - { - "fid": 1, - "name": "cancelReactionRequest", - "struct": "CancelReactionRequest" - } - ], - "cancelReaction_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "changeSubscription_args": [ - { - "fid": 2, - "name": "req", - "struct": "YN0_Ob1_r" - } - ], - "changeSubscription_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChangeSubscriptionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "changeVerificationMethod_args": [ - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "method", - "struct": "VerificationMethod" - } - ], - "changeVerificationMethod_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerificationSessionData" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "checkCanUnregisterEx_args": [ - { - "fid": 1, - "name": "type", - "struct": "r80_n0" - } - ], - "checkCanUnregisterEx_result": [ - { - "fid": 0, - "name": "success", - "struct": "UnregisterAvailabilityInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "I80_C26370F": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26396d" - } - ], - "checkEmailAssigned_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "checkEmailAssigned_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckEmailAssignedResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26371G": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26398e" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "checkIfEncryptedE2EEKeyReceived_args": [ - { - "fid": 1, - "name": "request", - "struct": "CheckIfEncryptedE2EEKeyReceivedRequest" - } - ], - "checkIfEncryptedE2EEKeyReceived_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckIfEncryptedE2EEKeyReceivedResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PrimaryQrCodeMigrationException" - } - ], - "I80_C26372H": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26400f" - } - ], - "checkIfPasswordSetVerificationEmailVerified_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "checkIfPasswordSetVerificationEmailVerified_result": [ - { - "fid": 0, - "name": "success", - "struct": "T70_C14398f" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26373I": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26402g" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "checkIfPhonePinCodeMsgVerified_args": [ - { - "fid": 1, - "name": "request", - "struct": "CheckIfPhonePinCodeMsgVerifiedRequest" - } - ], - "checkIfPhonePinCodeMsgVerified_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckIfPhonePinCodeMsgVerifiedResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "checkOperationTimeEx_args": [ - { - "fid": 1, - "name": "type", - "struct": "r80_EnumC34368h" - }, - { - "fid": 2, - "name": "lpAccountNo", - "type": 11 - }, - { - "fid": 3, - "name": "channelType", - "struct": "r80_EnumC34371k" - } - ], - "checkOperationTimeEx_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckOperationResult" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "checkUserAgeAfterApprovalWithDocomoV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "CheckUserAgeAfterApprovalWithDocomoV2Request" - } - ], - "checkUserAgeAfterApprovalWithDocomoV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckUserAgeAfterApprovalWithDocomoV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "checkUserAgeWithDocomoV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "CheckUserAgeWithDocomoV2Request" - } - ], - "checkUserAgeWithDocomoV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "CheckUserAgeWithDocomoV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "checkUserAge_args": [ - { - "fid": 2, - "name": "carrier", - "struct": "CarrierCode" - }, - { - "fid": 3, - "name": "sessionId", - "type": 11 - }, - { - "fid": 4, - "name": "verifier", - "type": 11 - }, - { - "fid": 5, - "name": "standardAge", - "type": 8 - } - ], - "checkUserAge_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_gd" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "clearRingbackTone_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "clearRingtone_args": [ - { - "fid": 1, - "name": "oid", - "type": 11 - } - ], - "clearRingtone_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "AcceptSpeakersResponse": [], - "AcceptToChangeRoleResponse": [], - "AcceptToListenResponse": [], - "AcceptToSpeakResponse": [], - "AgreeToTermsResponse": [], - "AllNonMemberLiveTalkParticipants": [], - "CancelToSpeakResponse": [], - "DeleteSquareChatAnnouncementResponse": [], - "DeleteSquareChatResponse": [], - "DeleteSquareResponse": [], - "DestroyMessageResponse": [], - "DestroyMessagesResponse": [], - "ForceEndLiveTalkResponse": [], - "GetPopularKeywordsRequest": [], - "GetSquareCategoriesRequest": [], - "HideSquareMemberContentsResponse": [], - "InviteToChangeRoleResponse": [], - "InviteToListenResponse": [], - "InviteToLiveTalkResponse": [], - "InviteToSquareResponse": [], - "KickOutLiveTalkParticipantsResponse": [], - "LeaveSquareChatResponse": [], - "LeaveSquareResponse": [], - "LiveTalkEventPayload": [ - { - "fid": 1, - "name": "notifiedUpdateLiveTalkTitle", - "struct": "LiveTalkEventNotifiedUpdateLiveTalkTitle" - }, - { - "fid": 2, - "name": "notifiedUpdateLiveTalkAnnouncement", - "struct": "LiveTalkEventNotifiedUpdateLiveTalkAnnouncement" - }, - { - "fid": 3, - "name": "notifiedUpdateSquareMemberRole", - "struct": "LiveTalkEventNotifiedUpdateSquareMemberRole" - }, - { - "fid": 4, - "name": "notifiedUpdateLiveTalkAllowRequestToSpeak", - "struct": "LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak" - }, - { - "fid": 5, - "name": "notifiedUpdateSquareMember", - "struct": "LiveTalkEventNotifiedUpdateSquareMember" - } - ], - "LiveTalkKickOutTarget": [ - { - "fid": 1, - "name": "liveTalkParticipant", - "struct": "LiveTalkParticipant" - }, - { - "fid": 2, - "name": "allNonMemberLiveTalkParticipants", - "struct": "AllNonMemberLiveTalkParticipants" - } - ], - "MarkAsReadResponse": [], - "MarkChatsAsReadResponse": [], - "MarkThreadsAsReadResponse": [], - "RejectSpeakersResponse": [], - "RejectToSpeakResponse": [], - "RemoveLiveTalkSubscriptionResponse": [], - "RemoveSubscriptionsResponse": [], - "ReportLiveTalkResponse": [], - "ReportLiveTalkSpeakerResponse": [], - "ReportMessageSummaryResponse": [], - "ReportSquareChatResponse": [], - "ReportSquareMemberResponse": [], - "ReportSquareMessageResponse": [], - "ReportSquareResponse": [], - "RequestToListenResponse": [], - "RequestToSpeakResponse": [], - "SquareEventPayload": [ - { - "fid": 1, - "name": "receiveMessage", - "struct": "SquareEventReceiveMessage" - }, - { - "fid": 2, - "name": "sendMessage", - "struct": "SquareEventSendMessage" - }, - { - "fid": 3, - "name": "notifiedJoinSquareChat", - "struct": "SquareEventNotifiedJoinSquareChat" - }, - { - "fid": 4, - "name": "notifiedInviteIntoSquareChat", - "struct": "SquareEventNotifiedInviteIntoSquareChat" - }, - { - "fid": 5, - "name": "notifiedLeaveSquareChat", - "struct": "SquareEventNotifiedLeaveSquareChat" - }, - { - "fid": 6, - "name": "notifiedDestroyMessage", - "struct": "SquareEventNotifiedDestroyMessage" - }, - { - "fid": 7, - "name": "notifiedMarkAsRead", - "struct": "SquareEventNotifiedMarkAsRead" - }, - { - "fid": 8, - "name": "notifiedUpdateSquareMemberProfile", - "struct": "SquareEventNotifiedUpdateSquareMemberProfile" - }, - { - "fid": 9, - "name": "notifiedUpdateSquare", - "struct": "SquareEventNotifiedUpdateSquare" - }, - { - "fid": 10, - "name": "notifiedUpdateSquareMember", - "struct": "SquareEventNotifiedUpdateSquareMember" - }, - { - "fid": 11, - "name": "notifiedUpdateSquareChat", - "struct": "SquareEventNotifiedUpdateSquareChat" - }, - { - "fid": 12, - "name": "notifiedUpdateSquareChatMember", - "struct": "SquareEventNotifiedUpdateSquareChatMember" - }, - { - "fid": 13, - "name": "notifiedUpdateSquareAuthority", - "struct": "SquareEventNotifiedUpdateSquareAuthority" - }, - { - "fid": 14, - "name": "notifiedUpdateSquareStatus", - "struct": "SquareEventNotifiedUpdateSquareStatus" - }, - { - "fid": 15, - "name": "notifiedUpdateSquareChatStatus", - "struct": "SquareEventNotifiedUpdateSquareChatStatus" - }, - { - "fid": 16, - "name": "notifiedCreateSquareMember", - "struct": "SquareEventNotifiedCreateSquareMember" - }, - { - "fid": 17, - "name": "notifiedCreateSquareChatMember", - "struct": "SquareEventNotifiedCreateSquareChatMember" - }, - { - "fid": 18, - "name": "notifiedUpdateSquareMemberRelation", - "struct": "SquareEventNotifiedUpdateSquareMemberRelation" - }, - { - "fid": 19, - "name": "notifiedShutdownSquare", - "struct": "SquareEventNotifiedShutdownSquare" - }, - { - "fid": 20, - "name": "notifiedKickoutFromSquare", - "struct": "SquareEventNotifiedKickoutFromSquare" - }, - { - "fid": 21, - "name": "notifiedDeleteSquareChat", - "struct": "SquareEventNotifiedDeleteSquareChat" - }, - { - "fid": 22, - "name": "notificationJoinRequest", - "struct": "SquareEventNotificationJoinRequest" - }, - { - "fid": 23, - "name": "notificationJoined", - "struct": "SquareEventNotificationMemberUpdate" - }, - { - "fid": 24, - "name": "notificationPromoteCoadmin", - "struct": "SquareEventNotificationMemberUpdate" - }, - { - "fid": 25, - "name": "notificationPromoteAdmin", - "struct": "SquareEventNotificationMemberUpdate" - }, - { - "fid": 26, - "name": "notificationDemoteMember", - "struct": "SquareEventNotificationMemberUpdate" - }, - { - "fid": 27, - "name": "notificationKickedOut", - "struct": "SquareEventNotificationMemberUpdate" - }, - { - "fid": 28, - "name": "notificationSquareDelete", - "struct": "SquareEventNotificationSquareDelete" - }, - { - "fid": 29, - "name": "notificationSquareChatDelete", - "struct": "SquareEventNotificationSquareChatDelete" - }, - { - "fid": 30, - "name": "notificationMessage", - "struct": "SquareEventNotificationMessage" - }, - { - "fid": 31, - "name": "notifiedUpdateSquareChatProfileName", - "struct": "SquareEventNotifiedUpdateSquareChatProfileName" - }, - { - "fid": 32, - "name": "notifiedUpdateSquareChatProfileImage", - "struct": "SquareEventNotifiedUpdateSquareChatProfileImage" - }, - { - "fid": 33, - "name": "notifiedUpdateSquareFeatureSet", - "struct": "SquareEventNotifiedUpdateSquareFeatureSet" - }, - { - "fid": 34, - "name": "notifiedAddBot", - "struct": "SquareEventNotifiedAddBot" - }, - { - "fid": 35, - "name": "notifiedRemoveBot", - "struct": "SquareEventNotifiedRemoveBot" - }, - { - "fid": 36, - "name": "notifiedUpdateSquareNoteStatus", - "struct": "SquareEventNotifiedUpdateSquareNoteStatus" - }, - { - "fid": 37, - "name": "notifiedUpdateSquareChatAnnouncement", - "struct": "SquareEventNotifiedUpdateSquareChatAnnouncement" - }, - { - "fid": 38, - "name": "notifiedUpdateSquareChatMaxMemberCount", - "struct": "SquareEventNotifiedUpdateSquareChatMaxMemberCount" - }, - { - "fid": 39, - "name": "notificationPostAnnouncement", - "struct": "SquareEventNotificationPostAnnouncement" - }, - { - "fid": 40, - "name": "notificationPost", - "struct": "SquareEventNotificationPost" - }, - { - "fid": 41, - "name": "mutateMessage", - "struct": "SquareEventMutateMessage" - }, - { - "fid": 42, - "name": "notificationNewChatMember", - "struct": "SquareEventNotificationNewChatMember" - }, - { - "fid": 43, - "name": "notifiedUpdateReadonlyChat", - "struct": "SquareEventNotifiedUpdateReadonlyChat" - }, - { - "fid": 44, - "name": "notifiedUpdateMessageStatus", - "struct": "SquareEventNotifiedUpdateMessageStatus" - }, - { - "fid": 45, - "name": "notificationMessageReaction", - "struct": "SquareEventNotificationMessageReaction" - }, - { - "fid": 46, - "name": "chatPopup", - "struct": "SquareEventChatPopup" - }, - { - "fid": 47, - "name": "notifiedSystemMessage", - "struct": "SquareEventNotifiedSystemMessage" - }, - { - "fid": 48, - "name": "notifiedUpdateSquareChatFeatureSet", - "struct": "SquareEventNotifiedUpdateSquareChatFeatureSet" - }, - { - "fid": 49, - "name": "notifiedUpdateLiveTalkInfo", - "struct": "SquareEventNotifiedUpdateLiveTalkInfo" - }, - { - "fid": 50, - "name": "notifiedUpdateLiveTalk", - "struct": "SquareEventNotifiedUpdateLiveTalk" - }, - { - "fid": 51, - "name": "notificationLiveTalk", - "struct": "SquareEventNotificationLiveTalk" - }, - { - "fid": 52, - "name": "notificationThreadMessage", - "struct": "SquareEventNotificationThreadMessage" - }, - { - "fid": 53, - "name": "notificationThreadMessageReaction", - "struct": "SquareEventNotificationThreadMessageReaction" - }, - { - "fid": 54, - "name": "notifiedUpdateThread", - "struct": "SquareEventNotifiedUpdateThread" - }, - { - "fid": 55, - "name": "notifiedUpdateThreadStatus", - "struct": "SquareEventNotifiedUpdateThreadStatus" - }, - { - "fid": 56, - "name": "notifiedUpdateThreadMember", - "struct": "SquareEventNotifiedUpdateThreadMember" - }, - { - "fid": 57, - "name": "notifiedUpdateThreadRootMessage", - "struct": "SquareEventNotifiedUpdateThreadRootMessage" - }, - { - "fid": 58, - "name": "notifiedUpdateThreadRootMessageStatus", - "struct": "SquareEventNotifiedUpdateThreadRootMessageStatus" - } - ], - "UnhideSquareMemberContentsResponse": [], - "UpdateLiveTalkAttrsResponse": [], - "UpdateUserSettingsResponse": [], - "ButtonBGColor": [ - { - "fid": 1, - "name": "custom", - "struct": "CustomColor" - }, - { - "fid": 2, - "name": "defaultGradient", - "struct": "DefaultGradientColor" - } - ], - "ButtonContent": [ - { - "fid": 1, - "name": "urlButton", - "struct": "UrlButton" - }, - { - "fid": 2, - "name": "textButton", - "struct": "TextButton" - }, - { - "fid": 3, - "name": "okButton", - "struct": "OkButton" - } - ], - "DefaultGradientColor": [], - "ErrorExtraInfo": [ - { - "fid": 1, - "name": "preconditionFailedExtraInfo", - "type": 8 - }, - { - "fid": 2, - "name": "userRestrictionInfo", - "struct": "UserRestrictionExtraInfo" - }, - { - "fid": 3, - "name": "tryAgainLaterExtraInfo", - "struct": "TryAgainLaterExtraInfo" - }, - { - "fid": 4, - "name": "liveTalkExtraInfo", - "struct": "LiveTalkExtraInfo" - }, - { - "fid": 5, - "name": "termsAgreementExtraInfo", - "struct": "TermsAgreementExtraInfo" - } - ], - "Mentionable": [ - { - "fid": 1, - "name": "squareMember", - "struct": "MentionableSquareMember" - }, - { - "fid": 2, - "name": "bot", - "struct": "MentionableBot" - } - ], - "MessageStatusContents": [ - { - "fid": 1, - "name": "messageReactionStatus", - "struct": "_any" - } - ], - "SquareActivityScore": [ - { - "fid": 1, - "name": "cleanScore", - "struct": "_any" - } - ], - "SquareChatAnnouncementContents": [ - { - "fid": 1, - "name": "textMessageAnnouncementContents", - "struct": "TextMessageAnnouncementContents" - } - ], - "TargetChats": [ - { - "fid": 1, - "name": "mids", - "set": 11 - }, - { - "fid": 2, - "name": "categories", - "set": 11 - }, - { - "fid": 3, - "name": "channelId", - "type": 8 - } - ], - "TargetUsers": [ - { - "fid": 1, - "name": "mids", - "set": 11 - } - ], - "TermsAgreement": [ - { - "fid": 1, - "name": "aiQnABot", - "struct": "_any" - } - ], - "confirmIdentifier_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "request", - "struct": "IdentityCredentialRequest" - } - ], - "confirmIdentifier_result": [ - { - "fid": 0, - "name": "success", - "struct": "IdentityCredentialResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "connectEapAccount_args": [ - { - "fid": 1, - "name": "request", - "struct": "ConnectEapAccountRequest" - } - ], - "connectEapAccount_result": [ - { - "fid": 0, - "name": "success", - "struct": "Q70_l" - }, - { - "fid": 1, - "name": "e", - "struct": "AccountEapConnectException" - } - ], - "createChatRoomAnnouncement_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatRoomMid", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "Pb1_X2" - }, - { - "fid": 4, - "name": "contents", - "struct": "ChatRoomAnnouncementContents" - } - ], - "createChatRoomAnnouncement_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChatRoomAnnouncement" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "createChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "CreateChatRequest" - } - ], - "createChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateChatResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "createCollectionForUser_args": [ - { - "fid": 1, - "name": "request", - "struct": "YN0_Ob1_A" - } - ], - "createCollectionForUser_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_B" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "createCombinationSticker_args": [ - { - "fid": 2, - "name": "request", - "struct": "YN0_Ob1_C" - } - ], - "createCombinationSticker_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_D" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "createE2EEKeyBackupEnforced_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_C13263z3" - } - ], - "createE2EEKeyBackupEnforced_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_B3" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "createGroupCallUrl_args": [ - { - "fid": 2, - "name": "request", - "struct": "CreateGroupCallUrlRequest" - } - ], - "createGroupCallUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateGroupCallUrlResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "createLifetimeKeyBackup_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_E3" - } - ], - "createLifetimeKeyBackup_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_F3" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "createMultiProfile_args": [ - { - "fid": 1, - "name": "request", - "struct": "CreateMultiProfileRequest" - } - ], - "createMultiProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateMultiProfileResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "createRoomV2_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "contactIds", - "list": 11 - } - ], - "createRoomV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "Room" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "createSession_args": [ - { - "fid": 1, - "name": "request", - "struct": "h80_C25643c" - } - ], - "I80_C26365A": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26404h" - } - ], - "createSession_result": [ - { - "fid": 0, - "name": "success", - "struct": "CreateSessionResponse" - }, - { - "fid": 1, - "name": "pqme", - "struct": "PrimaryQrCodeMigrationException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "I80_C26366B": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26406i" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "decryptFollowEMid_args": [ - { - "fid": 2, - "name": "eMid", - "type": 11 - } - ], - "decryptFollowEMid_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "deleteE2EEKeyBackup_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_H3" - } - ], - "deleteE2EEKeyBackup_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_I3" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "deleteGroupCallUrl_args": [ - { - "fid": 2, - "name": "request", - "struct": "DeleteGroupCallUrlRequest" - } - ], - "deleteGroupCallUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_K3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "deleteMultiProfile_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeleteMultiProfileRequest" - } - ], - "deleteMultiProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "gN0_C25147d" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "deleteOtherFromChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeleteOtherFromChatRequest" - } - ], - "deleteOtherFromChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_M3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "deletePrimaryCredential_args": [ - { - "fid": 1, - "name": "request", - "struct": "R70_c" - } - ], - "deletePrimaryCredential_result": [ - { - "fid": 0, - "name": "success", - "struct": "R70_d" - }, - { - "fid": 1, - "name": "e", - "struct": "PwlessCredentialException" - } - ], - "deleteSafetyStatus_args": [ - { - "fid": 1, - "name": "req", - "struct": "DeleteSafetyStatusRequest" - } - ], - "deleteSafetyStatus_result": [ - { - "fid": 1, - "name": "e", - "struct": "vh_Fg_b" - } - ], - "deleteSelfFromChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeleteSelfFromChatRequest" - } - ], - "deleteSelfFromChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_O3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "determineMediaMessageFlow_args": [ - { - "fid": 1, - "name": "request", - "struct": "DetermineMediaMessageFlowRequest" - } - ], - "determineMediaMessageFlow_result": [ - { - "fid": 0, - "name": "success", - "struct": "DetermineMediaMessageFlowResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "disableNearby_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "disconnectEapAccount_args": [ - { - "fid": 1, - "name": "request", - "struct": "DisconnectEapAccountRequest" - } - ], - "disconnectEapAccount_result": [ - { - "fid": 0, - "name": "success", - "struct": "Q70_o" - }, - { - "fid": 1, - "name": "e", - "struct": "AccountEapConnectException" - } - ], - "do0_C23138A": [ - { - "fid": 1, - "name": "connectDevice", - "struct": "ConnectDeviceOperation" - }, - { - "fid": 2, - "name": "executeOnetimeScenario", - "struct": "ExecuteOnetimeScenarioOperation" - } - ], - "do0_C23141D": [ - { - "fid": 1, - "name": "gattRead", - "struct": "GattReadAction" - }, - { - "fid": 2, - "name": "gattWrite", - "struct": "do0_C23158p" - }, - { - "fid": 3, - "name": "sleep", - "struct": "SleepAction" - }, - { - "fid": 4, - "name": "disconnect", - "struct": "do0_C23153k" - }, - { - "fid": 5, - "name": "stopNotification", - "struct": "StopNotificationAction" - } - ], - "do0_C23142E": [ - { - "fid": 1, - "name": "voidResult", - "struct": "do0_m0" - }, - { - "fid": 2, - "name": "binaryResult", - "struct": "do0_C23143a" - } - ], - "do0_C23143a": [ - { - "fid": 1, - "name": "bytes", - "type": 11 - } - ], - "do0_C23152j": [], - "do0_C23153k": [], - "do0_C23158p": [ - { - "fid": 1, - "name": "serviceUuid", - "type": 11 - }, - { - "fid": 2, - "name": "characteristicUuid", - "type": 11 - }, - { - "fid": 3, - "name": "data", - "type": 11 - } - ], - "do0_C23161t": [], - "do0_C23165x": [], - "do0_C23167z": [], - "do0_F": [ - { - "fid": 1, - "name": "scenarioId", - "type": 11 - }, - { - "fid": 2, - "name": "deviceId", - "type": 11 - }, - { - "fid": 3, - "name": "revision", - "type": 10 - }, - { - "fid": 4, - "name": "startTime", - "type": 10 - }, - { - "fid": 5, - "name": "endTime", - "type": 10 - }, - { - "fid": 6, - "name": "code", - "struct": "do0_G" - }, - { - "fid": 7, - "name": "errorReason", - "type": 11 - }, - { - "fid": 8, - "name": "bleNotificationPayload", - "type": 11 - }, - { - "fid": 9, - "name": "actionResults", - "list": "do0_C23142E" - }, - { - "fid": 10, - "name": "connectionId", - "type": 11 - } - ], - "do0_I": [ - { - "fid": 1, - "name": "immediate", - "struct": "do0_C23161t" - }, - { - "fid": 2, - "name": "bleNotificationReceived", - "struct": "BleNotificationReceivedTrigger" - } - ], - "do0_V": [], - "do0_X": [], - "do0_m0": [], - "editItemsInCollection_args": [ - { - "fid": 1, - "name": "request", - "struct": "YN0_Ob1_F" - } - ], - "editItemsInCollection_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_G" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "enablePointForOneTimeKey_args": [ - { - "fid": 1, - "name": "usePoint", - "type": 2 - } - ], - "enablePointForOneTimeKey_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "establishE2EESession_args": [ - { - "fid": 1, - "name": "request", - "struct": "YN0_Ob1_J" - } - ], - "establishE2EESession_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_K" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "existPinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "S70_b" - } - ], - "existPinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "ExistPinCodeResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondAuthFactorPinCodeException" - } - ], - "fN0_C24471c": [], - "fN0_C24473e": [], - "fN0_C24475g": [], - "fN0_C24476h": [], - "fetchOperations_args": [ - { - "fid": 1, - "name": "request", - "struct": "FetchOperationsRequest" - } - ], - "fetchOperations_result": [ - { - "fid": 0, - "name": "success", - "struct": "FetchOperationsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "fetchPhonePinCodeMsg_args": [ - { - "fid": 1, - "name": "request", - "struct": "FetchPhonePinCodeMsgRequest" - } - ], - "fetchPhonePinCodeMsg_result": [ - { - "fid": 0, - "name": "success", - "struct": "FetchPhonePinCodeMsgResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "findAndAddContactByMetaTag_result": [ - { - "fid": 0, - "name": "success", - "struct": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findAndAddContactsByMid_result": [ - { - "fid": 0, - "name": "success", - "map": "Contact", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findAndAddContactsByPhone_result": [ - { - "fid": 0, - "name": "success", - "map": "Contact", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findAndAddContactsByUserid_result": [ - { - "fid": 0, - "name": "success", - "map": "Contact", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findBuddyContactsByQuery_args": [ - { - "fid": 2, - "name": "language", - "type": 11 - }, - { - "fid": 3, - "name": "country", - "type": 11 - }, - { - "fid": 4, - "name": "query", - "type": 11 - }, - { - "fid": 5, - "name": "fromIndex", - "type": 8 - }, - { - "fid": 6, - "name": "count", - "type": 8 - }, - { - "fid": 7, - "name": "requestSource", - "struct": "Pb1_F0" - } - ], - "findBuddyContactsByQuery_result": [ - { - "fid": 0, - "name": "success", - "list": "BuddySearchResult" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findChatByTicket_args": [ - { - "fid": 1, - "name": "request", - "struct": "FindChatByTicketRequest" - } - ], - "findChatByTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "FindChatByTicketResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findContactByUserTicket_args": [ - { - "fid": 2, - "name": "ticketIdWithTag", - "type": 11 - } - ], - "findContactByUserTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findContactByUserid_args": [ - { - "fid": 2, - "name": "searchId", - "type": 11 - } - ], - "findContactByUserid_result": [ - { - "fid": 0, - "name": "success", - "struct": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "findContactsByPhone_args": [ - { - "fid": 2, - "name": "phones", - "set": 11 - } - ], - "findContactsByPhone_result": [ - { - "fid": 0, - "name": "success", - "map": "Contact", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "finishUpdateVerification_args": [ - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "finishUpdateVerification_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "follow_args": [ - { - "fid": 2, - "name": "followRequest", - "struct": "FollowRequest" - } - ], - "follow_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "gN0_C25143G": [], - "gN0_C25147d": [], - "generateUserTicket_args": [ - { - "fid": 3, - "name": "expirationTime", - "type": 10 - }, - { - "fid": 4, - "name": "maxUseCount", - "type": 8 - } - ], - "generateUserTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ticket" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getAccessToken_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetAccessTokenRequest" - } - ], - "getAccessToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAccessTokenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getAccountBalanceAsync_args": [ - { - "fid": 1, - "name": "requestToken", - "type": 11 - }, - { - "fid": 2, - "name": "accountId", - "type": 11 - } - ], - "getAccountBalanceAsync_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "I80_C26374J": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26410k" - } - ], - "getAcctVerifMethod_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "getAcctVerifMethod_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAcctVerifMethodResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26375K": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26412l" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getAllChatMids_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetAllChatMidsRequest" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getAllChatMids_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAllChatMidsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getAllContactIds_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getAllContactIds_result": [ - { - "fid": 0, - "name": "success", - "list": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getAllowedRegistrationMethod_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "countryCode", - "type": 11 - } - ], - "getAllowedRegistrationMethod_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAllowedRegistrationMethodResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "getAnalyticsInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "AnalyticsInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getApprovedChannels_args": [ - { - "fid": 2, - "name": "lastSynced", - "type": 10 - }, - { - "fid": 3, - "name": "locale", - "type": 11 - } - ], - "getApprovedChannels_result": [ - { - "fid": 0, - "name": "success", - "struct": "ApprovedChannelInfos" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getAssertionChallenge_args": [ - { - "fid": 1, - "name": "request", - "struct": "m80_l" - } - ], - "getAssertionChallenge_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAssertionChallengeResponse" - }, - { - "fid": 1, - "name": "deviceAttestationException", - "struct": "m80_b" - }, - { - "fid": 2, - "name": "attestationRequiredException", - "struct": "m80_C30146a" - } - ], - "getAttestationChallenge_args": [ - { - "fid": 1, - "name": "request", - "struct": "m80_n" - } - ], - "getAttestationChallenge_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetAttestationChallengeResponse" - }, - { - "fid": 1, - "name": "deviceAttestationException", - "struct": "m80_b" - } - ], - "getAuthRSAKey_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "identityProvider", - "struct": "IdentityProvider" - } - ], - "getAuthRSAKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "RSAKey" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getAuthorsLatestProducts_args": [ - { - "fid": 2, - "name": "latestProductsByAuthorRequest", - "struct": "LatestProductsByAuthorRequest" - } - ], - "getAuthorsLatestProducts_result": [ - { - "fid": 0, - "name": "success", - "struct": "LatestProductsByAuthorResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getAutoSuggestionShowcase_args": [ - { - "fid": 2, - "name": "autoSuggestionShowcaseRequest", - "struct": "AutoSuggestionShowcaseRequest" - } - ], - "getAutoSuggestionShowcase_result": [ - { - "fid": 0, - "name": "success", - "struct": "AutoSuggestionShowcaseResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getBalanceSummaryV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_C12208u" - } - ], - "getBalanceSummaryV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetBalanceSummaryResponseV2" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getBalanceSummaryV4WithPayV3_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_C12214w" - } - ], - "getBalanceSummaryV4WithPayV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetBalanceSummaryV4WithPayV3Response" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getBalance_args": [ - { - "fid": 1, - "name": "request", - "struct": "ZQ0_b" - } - ], - "getBalance_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetBalanceResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PointException" - } - ], - "getBankBranches_args": [ - { - "fid": 1, - "name": "financialCorpId", - "type": 11 - }, - { - "fid": 2, - "name": "query", - "type": 11 - }, - { - "fid": 3, - "name": "startNum", - "type": 8 - }, - { - "fid": 4, - "name": "count", - "type": 8 - } - ], - "getBankBranches_result": [ - { - "fid": 0, - "name": "success", - "list": "BankBranchInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "getBanners_args": [ - { - "fid": 1, - "name": "request", - "struct": "BannerRequest" - } - ], - "getBanners_result": [ - { - "fid": 0, - "name": "success", - "struct": "BannerResponse" - } - ], - "getBirthdayEffect_args": [ - { - "fid": 1, - "name": "req", - "struct": "Eh_C8933a" - } - ], - "getBirthdayEffect_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetBirthdayEffectResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Eh_Fg_b" - } - ], - "getBleDevice_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetBleDeviceRequest" - } - ], - "getBleDevice_result": [ - { - "fid": 0, - "name": "success", - "struct": "ThingsDevice" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "getBleProducts_result": [ - { - "fid": 0, - "name": "success", - "list": "BleProduct" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "getBlockedContactIds_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getBlockedContactIds_result": [ - { - "fid": 0, - "name": "success", - "list": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBlockedRecommendationIds_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getBlockedRecommendationIds_result": [ - { - "fid": 0, - "name": "success", - "list": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBrowsingHistory_args": [ - { - "fid": 2, - "name": "getBrowsingHistoryRequest", - "struct": "YN0_Ob1_L" - } - ], - "getBrowsingHistory_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_M" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getBuddyChatBarV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetBuddyChatBarRequest" - } - ], - "getBuddyChatBarV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "BuddyChatBar" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBuddyDetailWithPersonal_args": [ - { - "fid": 1, - "name": "buddyMid", - "type": 11 - }, - { - "fid": 2, - "name": "attributeSet", - "set": "Pb1_D0" - } - ], - "getBuddyDetailWithPersonal_result": [ - { - "fid": 0, - "name": "success", - "struct": "BuddyDetailWithPersonal" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBuddyDetail_args": [ - { - "fid": 4, - "name": "buddyMid", - "type": 11 - } - ], - "getBuddyDetail_result": [ - { - "fid": 0, - "name": "success", - "struct": "BuddyDetail" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBuddyLive_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetBuddyLiveRequest" - } - ], - "getBuddyLive_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetBuddyLiveResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBuddyOnAir_args": [ - { - "fid": 4, - "name": "buddyMid", - "type": 11 - } - ], - "getBuddyOnAir_result": [ - { - "fid": 0, - "name": "success", - "struct": "BuddyOnAir" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getBuddyStatusBarV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetBuddyStatusBarV2Request" - } - ], - "getBuddyStatusBarV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "BuddyStatusBar" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getCallStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetCallStatusRequest" - } - ], - "getCallStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCallStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "OaChatException" - } - ], - "getCampaign_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetCampaignRequest" - } - ], - "getCampaign_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCampaignResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getChallengeForPaakAuth_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetChallengeForPaakAuthRequest" - } - ], - "getChallengeForPaakAuth_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetChallengeForPaakAuthResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryPwlessLoginException" - } - ], - "getChallengeForPrimaryReg_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetChallengeForPrimaryRegRequest" - } - ], - "getChallengeForPrimaryReg_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetChallengeForPrimaryRegResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PwlessCredentialException" - } - ], - "getChannelContext_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetChannelContextRequest" - } - ], - "getChannelContext_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetChannelContextResponse" - }, - { - "fid": 1, - "name": "cpae", - "struct": "ChannelPaakAuthnException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "getChannelInfo_args": [ - { - "fid": 2, - "name": "channelId", - "type": 11 - }, - { - "fid": 3, - "name": "locale", - "type": 11 - } - ], - "getChannelInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChannelInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getChannelNotificationSettings_args": [ - { - "fid": 1, - "name": "locale", - "type": 11 - } - ], - "getChannelNotificationSettings_result": [ - { - "fid": 0, - "name": "success", - "list": "ChannelNotificationSetting" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getChannelSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChannelSettings" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getChatEffectMetaList_args": [ - { - "fid": 1, - "name": "categories", - "set": "Pb1_Q2" - } - ], - "getChatEffectMetaList_result": [ - { - "fid": 0, - "name": "success", - "list": "ChatEffectMeta" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getChatRoomAnnouncementsBulk_args": [ - { - "fid": 2, - "name": "chatRoomMids", - "list": 11 - }, - { - "fid": 3, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getChatRoomAnnouncementsBulk_result": [ - { - "fid": 0, - "name": "success", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getChatRoomAnnouncements_args": [ - { - "fid": 2, - "name": "chatRoomMid", - "type": 11 - } - ], - "getChatRoomAnnouncements_result": [ - { - "fid": 0, - "name": "success", - "list": "ChatRoomAnnouncement" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getChatRoomBGMs_args": [ - { - "fid": 2, - "name": "chatRoomMids", - "set": 11 - }, - { - "fid": 3, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getChatRoomBGMs_result": [ - { - "fid": 0, - "name": "success", - "map": "ChatRoomBGM", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getChatapp_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetChatappRequest" - } - ], - "getChatapp_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetChatappResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ChatappException" - } - ], - "getChats_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetChatsRequest" - }, - { - "fid": 2, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getChats_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetChatsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getCoinProducts_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetCoinProductsRequest" - } - ], - "getCoinProducts_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCoinProductsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CoinException" - } - ], - "getCoinPurchaseHistory_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetCoinHistoryRequest" - } - ], - "getCoinPurchaseHistory_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCoinHistoryResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CoinException" - } - ], - "getCoinUseAndRefundHistory_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetCoinHistoryRequest" - } - ], - "getCoinUseAndRefundHistory_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCoinHistoryResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CoinException" - } - ], - "getCommonDomains_args": [ - { - "fid": 1, - "name": "lastSynced", - "type": 10 - } - ], - "getCommonDomains_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChannelDomains" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getConfigurations_args": [ - { - "fid": 2, - "name": "revision", - "type": 10 - }, - { - "fid": 3, - "name": "regionOfUsim", - "type": 11 - }, - { - "fid": 4, - "name": "regionOfTelephone", - "type": 11 - }, - { - "fid": 5, - "name": "regionOfLocale", - "type": 11 - }, - { - "fid": 6, - "name": "carrier", - "type": 11 - }, - { - "fid": 7, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getConfigurations_result": [ - { - "fid": 0, - "name": "success", - "struct": "Configurations" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getContactCalendarEvents_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetContactCalendarEventsRequest" - } - ], - "getContactCalendarEvents_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetContactCalendarEventsResponse" - }, - { - "fid": 1, - "name": "re", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "sfe", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - }, - { - "fid": 4, - "name": "ere", - "struct": "ExcessiveRequestItemException" - } - ], - "getContact_result": [ - { - "fid": 0, - "name": "success", - "struct": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getContactsV3_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetContactsV3Request" - } - ], - "getContactsV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetContactsV3Response" - }, - { - "fid": 1, - "name": "be", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "ce", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - }, - { - "fid": 4, - "name": "ere", - "struct": "ExcessiveRequestItemException" - } - ], - "getContacts_result": [ - { - "fid": 0, - "name": "success", - "list": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getCountries_args": [ - { - "fid": 2, - "name": "countryGroup", - "struct": "Pb1_EnumC13221w3" - } - ], - "getCountries_result": [ - { - "fid": 0, - "name": "success", - "set": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "I80_C26376L": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26413m" - } - ], - "getCountryInfo_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 11, - "name": "simCard", - "struct": "SimCard" - } - ], - "getCountryInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetCountryInfoResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26377M": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26414n" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getCountryWithRequestIp_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getDataRetention_args": [ - { - "fid": 1, - "name": "req", - "struct": "fN0_C24473e" - } - ], - "getDataRetention_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPremiumDataRetentionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "getDestinationUrl_args": [ - { - "fid": 1, - "name": "request", - "struct": "DestinationLIFFRequest" - } - ], - "getDestinationUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "DestinationLIFFResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - } - ], - "getDisasterCases_args": [ - { - "fid": 1, - "name": "req", - "struct": "vh_C37633d" - } - ], - "getDisasterCases_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetDisasterCasesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "vh_Fg_b" - } - ], - "getE2EEGroupSharedKey_args": [ - { - "fid": 2, - "name": "keyVersion", - "type": 8 - }, - { - "fid": 3, - "name": "chatMid", - "type": 11 - }, - { - "fid": 4, - "name": "groupKeyId", - "type": 8 - } - ], - "getE2EEGroupSharedKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_U3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getE2EEKeyBackupCertificates_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_W4" - } - ], - "getE2EEKeyBackupCertificates_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetE2EEKeyBackupCertificatesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "getE2EEKeyBackupInfo_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_Y4" - } - ], - "getE2EEKeyBackupInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetE2EEKeyBackupInfoResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "getE2EEPublicKey_args": [ - { - "fid": 2, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "keyVersion", - "type": 8 - }, - { - "fid": 4, - "name": "keyId", - "type": 8 - } - ], - "getE2EEPublicKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C13097n4" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getE2EEPublicKeys_result": [ - { - "fid": 0, - "name": "success", - "list": "Pb1_C13097n4" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getEncryptedIdentityV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C12916a5" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getExchangeKey_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetExchangeKeyRequest" - } - ], - "getExchangeKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetExchangeKeyResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryPwlessLoginException" - } - ], - "getExtendedProfile_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getExtendedProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "ExtendedProfile" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getFollowBlacklist_args": [ - { - "fid": 2, - "name": "getFollowBlacklistRequest", - "struct": "GetFollowBlacklistRequest" - } - ], - "getFollowBlacklist_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetFollowBlacklistResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getFollowers_args": [ - { - "fid": 2, - "name": "getFollowersRequest", - "struct": "GetFollowersRequest" - } - ], - "getFollowers_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetFollowersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getFollowings_args": [ - { - "fid": 2, - "name": "getFollowingsRequest", - "struct": "GetFollowingsRequest" - } - ], - "getFollowings_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetFollowingsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getFontMetas_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetFontMetasRequest" - } - ], - "getFontMetas_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetFontMetasResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getFriendDetails_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetFriendDetailsRequest" - } - ], - "getFriendDetails_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetFriendDetailsResponse" - }, - { - "fid": 1, - "name": "re", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "sfe", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - }, - { - "fid": 4, - "name": "ere", - "struct": "ExcessiveRequestItemException" - } - ], - "getFriendRequests_args": [ - { - "fid": 1, - "name": "direction", - "struct": "Pb1_F4" - }, - { - "fid": 2, - "name": "lastSeenSeqId", - "type": 10 - } - ], - "getFriendRequests_result": [ - { - "fid": 0, - "name": "success", - "list": "FriendRequest" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getGnbBadgeStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetGnbBadgeStatusRequest" - } - ], - "getGnbBadgeStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetGnbBadgeStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getGroupCallUrlInfo_args": [ - { - "fid": 2, - "name": "request", - "struct": "GetGroupCallUrlInfoRequest" - } - ], - "getGroupCallUrlInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetGroupCallUrlInfoResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getGroupCallUrls_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_C13042j5" - } - ], - "getGroupCallUrls_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetGroupCallUrlsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getGroupCall_args": [ - { - "fid": 2, - "name": "chatMid", - "type": 11 - } - ], - "getGroupCall_result": [ - { - "fid": 0, - "name": "success", - "struct": "GroupCall" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getHomeFlexContent_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetHomeFlexContentRequest" - } - ], - "getHomeFlexContent_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetHomeFlexContentResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Dg_Fg_b" - } - ], - "getHomeServiceList_args": [ - { - "fid": 1, - "name": "request", - "struct": "Eg_C8928b" - } - ], - "getHomeServiceList_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetHomeServiceListResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Eg_Fg_b" - } - ], - "getHomeServices_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetHomeServicesRequest" - } - ], - "getHomeServices_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetHomeServicesResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Eg_Fg_b" - } - ], - "getIncentiveStatus_args": [ - { - "fid": 1, - "name": "req", - "struct": "fN0_C24471c" - } - ], - "getIncentiveStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetIncentiveStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "getInstantNews_args": [ - { - "fid": 1, - "name": "region", - "type": 11 - }, - { - "fid": 2, - "name": "location", - "struct": "Location" - } - ], - "getInstantNews_result": [ - { - "fid": 0, - "name": "success", - "list": "InstantNews" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getJoinedMembershipByBotMid_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetJoinedMembershipByBotMidRequest" - } - ], - "getJoinedMembershipByBotMid_result": [ - { - "fid": 0, - "name": "success", - "struct": "MemberInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "getJoinedMembership_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetJoinedMembershipRequest" - } - ], - "getJoinedMembership_result": [ - { - "fid": 0, - "name": "success", - "struct": "MemberInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "getJoinedMemberships_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinedMemberships" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "getKeyBackupCertificatesV2_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_C13070l5" - } - ], - "getKeyBackupCertificatesV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetKeyBackupCertificatesV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "getLFLSuggestion_args": [ - { - "fid": 1, - "name": "request", - "struct": "AR0_b" - } - ], - "getLFLSuggestion_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetLFLSuggestionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "LFLPremiumException" - } - ], - "getLastE2EEGroupSharedKey_args": [ - { - "fid": 2, - "name": "keyVersion", - "type": 8 - }, - { - "fid": 3, - "name": "chatMid", - "type": 11 - } - ], - "getLastE2EEGroupSharedKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_U3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getLastE2EEPublicKeys_args": [ - { - "fid": 2, - "name": "chatMid", - "type": 11 - } - ], - "getLastE2EEPublicKeys_result": [ - { - "fid": 0, - "name": "success", - "map": "Pb1_C13097n4", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getLastOpRevision_result": [ - { - "fid": 0, - "name": "success", - "type": 10 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getLiffViewWithoutUserContext_args": [ - { - "fid": 1, - "name": "request", - "struct": "LiffViewWithoutUserContextRequest" - } - ], - "getLiffViewWithoutUserContext_result": [ - { - "fid": 0, - "name": "success", - "struct": "LiffViewResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "getLineCardIssueForm_args": [ - { - "fid": 1, - "name": "resolutionType", - "struct": "r80_EnumC34372l" - } - ], - "getLineCardIssueForm_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaymentLineCardIssueForm" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "getLinkedDevices_result": [ - { - "fid": 0, - "name": "success", - "list": "UserDevice" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "getLoginActorContext_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetLoginActorContextRequest" - } - ], - "getLoginActorContext_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetLoginActorContextResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryQrCodeException" - } - ], - "getMappedProfileIds_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetMappedProfileIdsRequest" - } - ], - "getMappedProfileIds_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMappedProfileIdsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "I80_C26378N": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26415o" - } - ], - "getMaskedEmail_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "getMaskedEmail_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMaskedEmailResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26379O": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26416p" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getMessageBoxes_args": [ - { - "fid": 2, - "name": "messageBoxListRequest", - "struct": "MessageBoxListRequest" - }, - { - "fid": 3, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getMessageBoxes_result": [ - { - "fid": 0, - "name": "success", - "struct": "MessageBoxList" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getMessageReadRange_args": [ - { - "fid": 2, - "name": "chatIds", - "list": 11 - }, - { - "fid": 3, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getMessageReadRange_result": [ - { - "fid": 0, - "name": "success", - "list": "TMessageReadRange" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getModuleLayoutV4_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetModuleLayoutV4Request" - } - ], - "getModuleLayoutV4_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_D" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getModuleWithStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_G" - } - ], - "getModuleWithStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_H" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getModule_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_E" - } - ], - "getModule_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_F" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getModulesV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetModulesRequestV2" - } - ], - "getModulesV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_K" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getModulesV3_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetModulesRequestV3" - } - ], - "getModulesV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_K" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getModulesV4WithStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetModulesV4WithStatusRequest" - } - ], - "getModulesV4WithStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "NZ0_M" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getMusicSubscriptionStatus_args": [ - { - "fid": 2, - "name": "request", - "struct": "YN0_Ob1_N" - } - ], - "getMusicSubscriptionStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_O" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getMyAssetInformationV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetMyAssetInformationV2Request" - } - ], - "getMyAssetInformationV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMyAssetInformationV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getMyChatapps_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetMyChatappsRequest" - } - ], - "getMyChatapps_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMyChatappsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ChatappException" - } - ], - "getMyDashboard_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetMyDashboardRequest" - } - ], - "getMyDashboard_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetMyDashboardResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getNewlyReleasedBuddyIds_args": [ - { - "fid": 3, - "name": "country", - "type": 11 - } - ], - "getNewlyReleasedBuddyIds_result": [ - { - "fid": 0, - "name": "success", - "map": 10, - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getNotificationSettings_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetNotificationSettingsRequest" - } - ], - "getNotificationSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetNotificationSettingsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getOwnedProductSummaries_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "locale", - "struct": "Locale" - } - ], - "getOwnedProductSummaries_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_N0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getPasswordHashingParameter_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPasswordHashingParametersRequest" - } - ], - "getPasswordHashingParameter_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPasswordHashingParametersResponse" - }, - { - "fid": 1, - "name": "pue", - "struct": "PasswordUpdateException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "getPasswordHashingParametersForPwdReg_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPasswordHashingParametersForPwdRegRequest" - } - ], - "I80_C26380P": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26417q" - } - ], - "getPasswordHashingParametersForPwdReg_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPasswordHashingParametersForPwdRegResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26381Q": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26418r" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getPasswordHashingParametersForPwdVerif_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPasswordHashingParametersForPwdVerifRequest" - } - ], - "I80_C26382S": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26419s" - } - ], - "getPasswordHashingParametersForPwdVerif_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPasswordHashingParametersForPwdVerifResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26383T": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26420t" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getPaymentUrlByKey_args": [ - { - "fid": 1, - "name": "key", - "type": 11 - } - ], - "getPaymentUrlByKey_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "getPendingAgreements_result": [ - { - "fid": 0, - "name": "success", - "struct": "PendingAgreementsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getPhoneVerifMethodForRegistration_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPhoneVerifMethodForRegistrationRequest" - } - ], - "getPhoneVerifMethodForRegistration_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPhoneVerifMethodForRegistrationResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "getPhoneVerifMethodV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPhoneVerifMethodV2Request" - } - ], - "I80_C26384U": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26421u" - } - ], - "getPhoneVerifMethodV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPhoneVerifMethodV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26385V": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26422v" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getPhotoboothBalance_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_C13126p5" - } - ], - "getPhotoboothBalance_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPhotoboothBalanceResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getPredefinedScenarioSets_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPredefinedScenarioSetsRequest" - } - ], - "getPredefinedScenarioSets_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPredefinedScenarioSetsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "getPrefetchableBanners_args": [ - { - "fid": 1, - "name": "request", - "struct": "BannerRequest" - } - ], - "getPrefetchableBanners_result": [ - { - "fid": 0, - "name": "success", - "struct": "BannerResponse" - } - ], - "getPremiumStatusForUpgrade_args": [ - { - "fid": 1, - "name": "req", - "struct": "fN0_C24475g" - } - ], - "getPremiumStatusForUpgrade_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPremiumStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "getPremiumStatus_args": [ - { - "fid": 1, - "name": "req", - "struct": "fN0_C24476h" - } - ], - "getPremiumStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetPremiumStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "getPreviousMessagesV2WithRequest_args": [ - { - "fid": 2, - "name": "request", - "struct": "GetPreviousMessagesV2Request" - }, - { - "fid": 3, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getPreviousMessagesV2WithRequest_result": [ - { - "fid": 0, - "name": "success", - "list": "Message" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getProductByVersion_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "productVersion", - "type": 10 - }, - { - "fid": 5, - "name": "locale", - "struct": "Locale" - } - ], - "getProductByVersion_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_E0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProductLatestVersionForUser_args": [ - { - "fid": 2, - "name": "request", - "struct": "YN0_Ob1_P" - } - ], - "getProductLatestVersionForUser_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_Q" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProductSummariesInSubscriptionSlots_args": [ - { - "fid": 2, - "name": "req", - "struct": "YN0_Ob1_U" - } - ], - "getProductSummariesInSubscriptionSlots_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_V" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProductV2_args": [ - { - "fid": 2, - "name": "request", - "struct": "YN0_Ob1_S" - } - ], - "getProductV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_T" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProductValidationScheme_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "productVersion", - "type": 10 - } - ], - "getProductValidationScheme_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_S0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProductsByAuthor_args": [ - { - "fid": 2, - "name": "productListByAuthorRequest", - "struct": "YN0_Ob1_G0" - } - ], - "getProductsByAuthor_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_F0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getProfile_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "Profile" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getPromotedBuddyContacts_args": [ - { - "fid": 2, - "name": "language", - "type": 11 - }, - { - "fid": 3, - "name": "country", - "type": 11 - } - ], - "getPromotedBuddyContacts_result": [ - { - "fid": 0, - "name": "success", - "list": "Contact" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getPublishedMemberships_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetPublishedMembershipsRequest" - } - ], - "getPublishedMemberships_result": [ - { - "fid": 0, - "name": "success", - "list": "Membership" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "getPurchaseEnabledStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "PurchaseEnabledRequest" - } - ], - "getPurchaseEnabledStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "og_I" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "getPurchasedProducts_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "locale", - "struct": "Locale" - } - ], - "getPurchasedProducts_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseRecordList" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getQuickMenu_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_S" - } - ], - "getQuickMenu_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetQuickMenuResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getRSAKeyInfo_result": [ - { - "fid": 0, - "name": "success", - "struct": "RSAKey" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getReceivedPresents_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "locale", - "struct": "Locale" - } - ], - "getReceivedPresents_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseRecordList" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getRecentFriendRequests_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getRecentFriendRequests_result": [ - { - "fid": 0, - "name": "success", - "struct": "FriendRequestsInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getRecommendationDetails_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetRecommendationDetailsRequest" - } - ], - "getRecommendationDetails_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetRecommendationDetailsResponse" - }, - { - "fid": 1, - "name": "re", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "sfe", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - }, - { - "fid": 4, - "name": "ere", - "struct": "ExcessiveRequestItemException" - } - ], - "getRecommendationIds_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getRecommendationIds_result": [ - { - "fid": 0, - "name": "success", - "list": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getRecommendationList_args": [ - { - "fid": 2, - "name": "getRecommendationRequest", - "struct": "YN0_Ob1_W" - } - ], - "getRecommendationList_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSuggestTrialRecommendationResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "SuggestTrialException" - } - ], - "getRepairElements_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetRepairElementsRequest" - } - ], - "getRepairElements_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetRepairElementsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getRequiredAgreements_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaymentRequiredAgreementsInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "getResourceFile_args": [ - { - "fid": 2, - "name": "req", - "struct": "YN0_Ob1_Z" - } - ], - "getResourceFile_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_Y" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getResponseStatus_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetResponseStatusRequest" - } - ], - "getResponseStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetResponseStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "OaChatException" - } - ], - "getReturnUrlWithRequestTokenForAutoLogin_args": [ - { - "fid": 2, - "name": "webLoginRequest", - "struct": "WebLoginRequest" - } - ], - "getReturnUrlWithRequestTokenForAutoLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "WebLoginResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getReturnUrlWithRequestTokenForMultiLiffLogin_args": [ - { - "fid": 1, - "name": "request", - "struct": "LiffWebLoginRequest" - } - ], - "getReturnUrlWithRequestTokenForMultiLiffLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "LiffWebLoginResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "channelException", - "struct": "LiffChannelException" - }, - { - "fid": 3, - "name": "talkException", - "struct": "TalkException" - } - ], - "getRingbackTone_result": [ - { - "fid": 0, - "name": "success", - "struct": "RingbackTone" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getRingtone_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ringtone" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getRoomsV2_args": [ - { - "fid": 2, - "name": "roomIds", - "list": 11 - } - ], - "getRoomsV2_result": [ - { - "fid": 0, - "name": "success", - "list": "Room" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getSCC_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSCCRequest" - } - ], - "getSCC_result": [ - { - "fid": 0, - "name": "success", - "struct": "SCC" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "I80_C26386W": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C26423w" - } - ], - "I80_C26387X": [ - { - "fid": 0, - "name": "success", - "struct": "I80_C26424x" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "getSeasonalEffects_args": [ - { - "fid": 1, - "name": "req", - "struct": "Eh_C8935c" - } - ], - "getSeasonalEffects_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSeasonalEffectsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Eh_Fg_b" - } - ], - "getSecondAuthMethod_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "getSecondAuthMethod_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSecondAuthMethodResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "getSentPresents_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "offset", - "type": 8 - }, - { - "fid": 4, - "name": "limit", - "type": 8 - }, - { - "fid": 5, - "name": "locale", - "struct": "Locale" - } - ], - "getSentPresents_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseRecordList" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getServerTime_result": [ - { - "fid": 0, - "name": "success", - "type": 10 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getServiceShortcutMenu_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_U" - } - ], - "getServiceShortcutMenu_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetServiceShortcutMenuResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getSessionContentBeforeMigCompletion_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "getSessionContentBeforeMigCompletion_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSessionContentBeforeMigCompletionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "getSettingsAttributes2_args": [ - { - "fid": 2, - "name": "attributesToRetrieve", - "set": "SettingsAttributeEx" - } - ], - "getSettingsAttributes2_result": [ - { - "fid": 0, - "name": "success", - "struct": "Settings" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getSettingsAttributes_result": [ - { - "fid": 0, - "name": "success", - "struct": "Settings" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getSettings_args": [ - { - "fid": 1, - "name": "syncReason", - "struct": "Pb1_V7" - } - ], - "getSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "Settings" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getSmartChannelRecommendations_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetSmartChannelRecommendationsRequest" - } - ], - "getSmartChannelRecommendations_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSmartChannelRecommendationsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getSquareBot_args": [ - { - "fid": 1, - "name": "req", - "struct": "GetSquareBotRequest" - } - ], - "getSquareBot_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSquareBotResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "BotException" - } - ], - "getStudentInformation_args": [ - { - "fid": 2, - "name": "req", - "struct": "Ob1_C12606a0" - } - ], - "getStudentInformation_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetStudentInformationResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getSubscriptionPlans_args": [ - { - "fid": 2, - "name": "req", - "struct": "GetSubscriptionPlansRequest" - } - ], - "getSubscriptionPlans_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSubscriptionPlansResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getSubscriptionSlotHistory_args": [ - { - "fid": 2, - "name": "req", - "struct": "Ob1_C12618e0" - } - ], - "getSubscriptionSlotHistory_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ob1_C12621f0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getSubscriptionStatus_args": [ - { - "fid": 2, - "name": "req", - "struct": "GetSubscriptionStatusRequest" - } - ], - "getSubscriptionStatus_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSubscriptionStatusResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getSuggestDictionarySetting_args": [ - { - "fid": 2, - "name": "req", - "struct": "Ob1_C12630i0" - } - ], - "getSuggestDictionarySetting_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSuggestDictionarySettingResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getSuggestResourcesV2_args": [ - { - "fid": 2, - "name": "req", - "struct": "GetSuggestResourcesV2Request" - } - ], - "getSuggestResourcesV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetSuggestResourcesV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "getTaiwanBankBalance_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetTaiwanBankBalanceRequest" - } - ], - "getTaiwanBankBalance_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetTaiwanBankBalanceResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getTargetProfiles_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetTargetProfilesRequest" - } - ], - "getTargetProfiles_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetTargetProfilesResponse" - }, - { - "fid": 1, - "name": "re", - "struct": "RejectedException" - }, - { - "fid": 2, - "name": "sfe", - "struct": "ServerFailureException" - }, - { - "fid": 3, - "name": "te", - "struct": "TalkException" - }, - { - "fid": 4, - "name": "ere", - "struct": "ExcessiveRequestItemException" - } - ], - "getTargetingPopup_args": [ - { - "fid": 1, - "name": "request", - "struct": "NZ0_C12150a0" - } - ], - "getTargetingPopup_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetTargetingPopupResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getThaiBankBalance_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetThaiBankBalanceRequest" - } - ], - "getThaiBankBalance_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetThaiBankBalanceResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "getTotalCoinBalance_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetTotalCoinBalanceRequest" - } - ], - "getTotalCoinBalance_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetTotalCoinBalanceResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CoinException" - } - ], - "getUpdatedChannelIds_args": [ - { - "fid": 1, - "name": "channelIds", - "list": "ChannelIdWithLastUpdated" - } - ], - "getUpdatedChannelIds_result": [ - { - "fid": 0, - "name": "success", - "list": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "getUserCollections_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetUserCollectionsRequest" - } - ], - "getUserCollections_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetUserCollectionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "getUserProfile_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "getUserProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetUserProfileResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "getUserVector_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetUserVectorRequest" - } - ], - "getUserVector_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetUserVectorResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "LFLPremiumException" - } - ], - "getUsersMappedByProfile_args": [ - { - "fid": 1, - "name": "request", - "struct": "GetUsersMappedByProfileRequest" - } - ], - "getUsersMappedByProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "GetUsersMappedByProfileResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "getWebLoginDisallowedUrlForMultiLiffLogin_args": [ - { - "fid": 1, - "name": "request", - "struct": "LiffWebLoginRequest" - } - ], - "getWebLoginDisallowedUrlForMultiLiffLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "LiffWebLoginResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "channelException", - "struct": "LiffChannelException" - }, - { - "fid": 3, - "name": "talkException", - "struct": "TalkException" - } - ], - "getWebLoginDisallowedUrl_args": [ - { - "fid": 2, - "name": "webLoginRequest", - "struct": "WebLoginRequest" - } - ], - "getWebLoginDisallowedUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "WebLoginResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "h80_C25643c": [], - "h80_t": [ - { - "fid": 1, - "name": "newDevicePublicKey", - "type": 11 - }, - { - "fid": 2, - "name": "encryptedQrIdentifier", - "type": 11 - } - ], - "h80_v": [], - "I80_A0": [], - "I80_C26398e": [], - "I80_C26404h": [], - "I80_F0": [], - "I80_r0": [], - "I80_v0": [], - "inviteFriends_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteFriendsRequest" - } - ], - "inviteFriends_result": [ - { - "fid": 0, - "name": "success", - "struct": "InviteFriendsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "inviteIntoChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "InviteIntoChatRequest" - } - ], - "inviteIntoChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_J5" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "inviteIntoGroupCall_args": [ - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "memberMids", - "list": 11 - }, - { - "fid": 4, - "name": "mediaType", - "struct": "Pb1_EnumC13237x5" - } - ], - "inviteIntoGroupCall_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "inviteIntoRoom_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "roomId", - "type": 11 - }, - { - "fid": 3, - "name": "contactIds", - "list": 11 - } - ], - "inviteIntoRoom_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "isProductForCollections_args": [ - { - "fid": 1, - "name": "request", - "struct": "IsProductForCollectionsRequest" - } - ], - "isProductForCollections_result": [ - { - "fid": 0, - "name": "success", - "struct": "IsProductForCollectionsResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "isStickerAvailableForCombinationSticker_args": [ - { - "fid": 2, - "name": "request", - "struct": "IsStickerAvailableForCombinationStickerRequest" - } - ], - "isStickerAvailableForCombinationSticker_result": [ - { - "fid": 0, - "name": "success", - "struct": "IsStickerAvailableForCombinationStickerResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "isUseridAvailable_args": [ - { - "fid": 2, - "name": "searchId", - "type": 11 - } - ], - "isUseridAvailable_result": [ - { - "fid": 0, - "name": "success", - "type": 2 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "issueChannelToken_args": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - } - ], - "issueChannelToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChannelToken" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "issueLiffView_args": [ - { - "fid": 1, - "name": "request", - "struct": "LiffViewRequest" - } - ], - "issueLiffView_result": [ - { - "fid": 0, - "name": "success", - "struct": "LiffViewResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "issueNonce_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "issueRequestTokenWithAuthScheme_args": [ - { - "fid": 1, - "name": "channelId", - "type": 11 - }, - { - "fid": 2, - "name": "otpId", - "type": 11 - }, - { - "fid": 3, - "name": "authScheme", - "list": 11 - }, - { - "fid": 4, - "name": "returnUrl", - "type": 11 - } - ], - "issueRequestTokenWithAuthScheme_result": [ - { - "fid": 0, - "name": "success", - "struct": "RequestTokenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "issueSubLiffView_args": [ - { - "fid": 1, - "name": "request", - "struct": "LiffViewRequest" - } - ], - "issueSubLiffView_result": [ - { - "fid": 0, - "name": "success", - "struct": "LiffViewResponse" - }, - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "issueTokenForAccountMigrationSettings_args": [ - { - "fid": 2, - "name": "enforce", - "type": 2 - } - ], - "issueTokenForAccountMigrationSettings_result": [ - { - "fid": 0, - "name": "success", - "struct": "SecurityCenterResult" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "issueToken_args": [ - { - "fid": 1, - "name": "request", - "struct": "IssueBirthdayGiftTokenRequest" - } - ], - "issueToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "IssueBirthdayGiftTokenResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "Cg_Fg_b" - } - ], - "issueV3TokenForPrimary_args": [ - { - "fid": 1, - "name": "request", - "struct": "IssueV3TokenForPrimaryRequest" - } - ], - "issueV3TokenForPrimary_result": [ - { - "fid": 0, - "name": "success", - "struct": "IssueV3TokenForPrimaryResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "issueWebAuthDetailsForSecondAuth_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "issueWebAuthDetailsForSecondAuth_result": [ - { - "fid": 0, - "name": "success", - "struct": "IssueWebAuthDetailsForSecondAuthResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "joinChatByCallUrl_args": [ - { - "fid": 2, - "name": "request", - "struct": "JoinChatByCallUrlRequest" - } - ], - "joinChatByCallUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "JoinChatByCallUrlResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "jp_naver_line_shop_protocol_thrift_ProductProperty": [], - "kf_i": [], - "kf_k": [], - "kf_m": [ - { - "fid": 1, - "name": "richmenu", - "struct": "RichmenuEvent" - }, - { - "fid": 2, - "name": "talkroom", - "struct": "TalkroomEvent" - } - ], - "kf_w": [ - { - "fid": 1, - "name": "profileRefererContent", - "struct": "_any" - } - ], - "kickoutFromGroupCall_args": [ - { - "fid": 2, - "name": "kickoutFromGroupCallRequest", - "struct": "KickoutFromGroupCallRequest" - } - ], - "kickoutFromGroupCall_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_S5" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "leaveRoom_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "roomId", - "type": 11 - } - ], - "leaveRoom_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "linkDevice_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeviceLinkRequest" - } - ], - "linkDevice_result": [ - { - "fid": 0, - "name": "success", - "struct": "DeviceLinkResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "logoutV2_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "lookupAvailableEap_args": [ - { - "fid": 1, - "name": "request", - "struct": "LookupAvailableEapRequest" - } - ], - "lookupAvailableEap_result": [ - { - "fid": 0, - "name": "success", - "struct": "LookupAvailableEapResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "lookupPaidCall_args": [ - { - "fid": 2, - "name": "dialedNumber", - "type": 11 - }, - { - "fid": 3, - "name": "language", - "type": 11 - }, - { - "fid": 4, - "name": "referer", - "type": 11 - } - ], - "lookupPaidCall_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaidCallResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "m80_l": [], - "m80_n": [], - "m80_q": [], - "m80_s": [], - "mapProfileToUsers_args": [ - { - "fid": 1, - "name": "request", - "struct": "MapProfileToUsersRequest" - } - ], - "mapProfileToUsers_result": [ - { - "fid": 0, - "name": "success", - "struct": "MapProfileToUsersResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "migratePrimaryUsingEapAccountWithTokenV3_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "migratePrimaryUsingEapAccountWithTokenV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "MigratePrimaryWithTokenV3Response" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "migratePrimaryUsingPhoneWithTokenV3_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "migratePrimaryUsingPhoneWithTokenV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "MigratePrimaryWithTokenV3Response" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "migratePrimaryUsingQrCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "MigratePrimaryUsingQrCodeRequest" - } - ], - "migratePrimaryUsingQrCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "MigratePrimaryUsingQrCodeResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PrimaryQrCodeMigrationException" - } - ], - "n80_C31222b": [], - "n80_d": [], - "negotiateE2EEPublicKey_args": [ - { - "fid": 2, - "name": "mid", - "type": 11 - } - ], - "negotiateE2EEPublicKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "E2EENegotiationResult" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "noop_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyBannerShowing_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyBannerTapped_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyBeaconDetected_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyChatAdEntry_args": [ - { - "fid": 1, - "name": "request", - "struct": "NotifyChatAdEntryRequest" - } - ], - "notifyChatAdEntry_result": [ - { - "fid": 0, - "name": "success", - "struct": "kf_i" - }, - { - "fid": 1, - "name": "e", - "struct": "BotExternalException" - } - ], - "notifyDeviceConnection_args": [ - { - "fid": 1, - "name": "request", - "struct": "NotifyDeviceConnectionRequest" - } - ], - "notifyDeviceConnection_result": [ - { - "fid": 0, - "name": "success", - "struct": "NotifyDeviceConnectionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "notifyDeviceDisconnection_args": [ - { - "fid": 1, - "name": "request", - "struct": "NotifyDeviceDisconnectionRequest" - } - ], - "notifyDeviceDisconnection_result": [ - { - "fid": 0, - "name": "success", - "struct": "do0_C23165x" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "notifyInstalled_args": [ - { - "fid": 2, - "name": "udidHash", - "type": 11 - }, - { - "fid": 3, - "name": "applicationTypeWithExtensions", - "type": 11 - } - ], - "notifyInstalled_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyOATalkroomEvents_args": [ - { - "fid": 1, - "name": "request", - "struct": "NotifyOATalkroomEventsRequest" - } - ], - "notifyOATalkroomEvents_result": [ - { - "fid": 0, - "name": "success", - "struct": "kf_k" - }, - { - "fid": 1, - "name": "e", - "struct": "BotExternalException" - } - ], - "notifyProductEvent_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "productVersion", - "type": 10 - }, - { - "fid": 5, - "name": "productEvent", - "type": 10 - } - ], - "notifyProductEvent_result": [ - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "notifyRegistrationComplete_args": [ - { - "fid": 2, - "name": "udidHash", - "type": 11 - }, - { - "fid": 3, - "name": "applicationTypeWithExtensions", - "type": 11 - } - ], - "notifyRegistrationComplete_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyScenarioExecuted_args": [ - { - "fid": 1, - "name": "request", - "struct": "NotifyScenarioExecutedRequest" - } - ], - "notifyScenarioExecuted_result": [ - { - "fid": 0, - "name": "success", - "struct": "do0_C23167z" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "notifySleep_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "notifyUpdated_args": [ - { - "fid": 2, - "name": "lastRev", - "type": 10 - }, - { - "fid": 3, - "name": "deviceInfo", - "struct": "DeviceInfo" - }, - { - "fid": 4, - "name": "udidHash", - "type": 11 - }, - { - "fid": 5, - "name": "oldUdidHash", - "type": 11 - } - ], - "notifyUpdated_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "o80_C32273b": [], - "o80_d": [], - "o80_m": [], - "og_u": [], - "openAuthSession_args": [ - { - "fid": 2, - "name": "request", - "struct": "AuthSessionRequest" - } - ], - "openAuthSession_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "openProximityMatch_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "openSession_args": [ - { - "fid": 1, - "name": "request", - "struct": "OpenSessionRequest" - } - ], - "openSession_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "permitLogin_args": [ - { - "fid": 1, - "name": "request", - "struct": "PermitLoginRequest" - } - ], - "permitLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "PermitLoginResponse" - }, - { - "fid": 1, - "name": "sle", - "struct": "SeamlessLoginException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "placePurchaseOrderForFreeProduct_args": [ - { - "fid": 2, - "name": "purchaseOrder", - "struct": "PurchaseOrder" - } - ], - "placePurchaseOrderForFreeProduct_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseOrderResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "placePurchaseOrderWithLineCoin_args": [ - { - "fid": 2, - "name": "purchaseOrder", - "struct": "PurchaseOrder" - } - ], - "placePurchaseOrderWithLineCoin_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseOrderResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "postPopupButtonEvents_args": [ - { - "fid": 1, - "name": "buttonId", - "type": 11 - }, - { - "fid": 2, - "name": "checkboxes", - "map": 2, - "key": 11 - } - ], - "postPopupButtonEvents_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "purchaseSubscription_args": [ - { - "fid": 2, - "name": "req", - "struct": "PurchaseSubscriptionRequest" - } - ], - "purchaseSubscription_result": [ - { - "fid": 0, - "name": "success", - "struct": "PurchaseSubscriptionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "putE2eeKey_args": [ - { - "fid": 1, - "name": "request", - "struct": "PutE2eeKeyRequest" - } - ], - "putE2eeKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "o80_m" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryPwlessLoginException" - } - ], - "q80_C33650b": [], - "q80_q": [], - "q80_s": [], - "qm_C34110c": [ - { - "fid": 1, - "name": "inFriends", - "type": 11 - }, - { - "fid": 2, - "name": "notInFriends", - "type": 11 - }, - { - "fid": 3, - "name": "termsAgreed", - "type": 2 - } - ], - "qm_C34115h": [ - { - "fid": 1, - "name": "hwid", - "type": 11 - }, - { - "fid": 2, - "name": "secureMessage", - "type": 11 - }, - { - "fid": 3, - "name": "applicationType", - "struct": "ApplicationType" - }, - { - "fid": 4, - "name": "applicationVersion", - "type": 11 - }, - { - "fid": 5, - "name": "userSessionId", - "type": 11 - }, - { - "fid": 6, - "name": "actionId", - "type": 10 - }, - { - "fid": 7, - "name": "screen", - "type": 11 - }, - { - "fid": 8, - "name": "bannerStartedAt", - "type": 10 - }, - { - "fid": 9, - "name": "bannerShownFor", - "type": 10 - } - ], - "qm_j": [ - { - "fid": 1, - "name": "hwid", - "type": 11 - }, - { - "fid": 2, - "name": "secureMessage", - "type": 11 - }, - { - "fid": 3, - "name": "applicationType", - "struct": "ApplicationType" - }, - { - "fid": 4, - "name": "applicationVersion", - "type": 11 - }, - { - "fid": 5, - "name": "userSessionId", - "type": 11 - }, - { - "fid": 6, - "name": "actionId", - "type": 10 - }, - { - "fid": 7, - "name": "screen", - "type": 11 - }, - { - "fid": 8, - "name": "bannerTappedAt", - "type": 10 - }, - { - "fid": 9, - "name": "beaconTermAgreed", - "type": 2 - } - ], - "qm_l": [ - { - "fid": 1, - "name": "hwid", - "type": 11 - }, - { - "fid": 2, - "name": "secureMessage", - "type": 11 - }, - { - "fid": 3, - "name": "applicationType", - "struct": "ApplicationType" - }, - { - "fid": 4, - "name": "applicationVersion", - "type": 11 - }, - { - "fid": 5, - "name": "lang", - "type": 11 - }, - { - "fid": 6, - "name": "region", - "type": 11 - }, - { - "fid": 7, - "name": "modelName", - "type": 11 - } - ], - "qm_o": [ - { - "fid": 1, - "name": "hwid", - "type": 11 - }, - { - "fid": 2, - "name": "secureMessage", - "type": 11 - }, - { - "fid": 3, - "name": "notificationType", - "struct": "qm_EnumC34112e" - }, - { - "fid": 4, - "name": "rssi", - "struct": "Rssi" - } - ], - "queryBeaconActions_result": [ - { - "fid": 0, - "name": "success", - "struct": "BeaconQueryResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "r80_C34358N": [], - "r80_C34360P": [], - "react_args": [ - { - "fid": 1, - "name": "reactRequest", - "struct": "ReactRequest" - } - ], - "react_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "refresh_args": [ - { - "fid": 1, - "name": "request", - "struct": "RefreshAccessTokenRequest" - } - ], - "refresh_result": [ - { - "fid": 0, - "name": "success", - "struct": "RefreshAccessTokenResponse" - }, - { - "fid": 1, - "name": "accessTokenRefreshException", - "struct": "AccessTokenRefreshException" - } - ], - "registerBarcodeAsync_args": [ - { - "fid": 1, - "name": "requestToken", - "type": 11 - }, - { - "fid": 2, - "name": "barcodeRequestId", - "type": 11 - }, - { - "fid": 3, - "name": "barcode", - "type": 11 - }, - { - "fid": 4, - "name": "password", - "struct": "RSAEncryptedPassword" - } - ], - "registerBarcodeAsync_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "registerCampaignReward_args": [ - { - "fid": 1, - "name": "request", - "struct": "RegisterCampaignRewardRequest" - } - ], - "registerCampaignReward_result": [ - { - "fid": 0, - "name": "success", - "struct": "RegisterCampaignRewardResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "WalletException" - } - ], - "registerE2EEGroupKey_args": [ - { - "fid": 2, - "name": "keyVersion", - "type": 8 - }, - { - "fid": 3, - "name": "chatMid", - "type": 11 - }, - { - "fid": 4, - "name": "members", - "list": 11 - }, - { - "fid": 5, - "name": "keyIds", - "list": 8 - }, - { - "fid": 6, - "name": "encryptedSharedKeys", - "list": 11 - } - ], - "registerE2EEGroupKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_U3" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "registerE2EEPublicKeyV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "Pb1_W6" - } - ], - "registerE2EEPublicKeyV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "RegisterE2EEPublicKeyV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "registerE2EEPublicKey_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "publicKey", - "struct": "Pb1_C13097n4" - } - ], - "registerE2EEPublicKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C13097n4" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "registerPrimaryCredential_args": [ - { - "fid": 1, - "name": "request", - "struct": "RegisterPrimaryCredentialRequest" - } - ], - "registerPrimaryCredential_result": [ - { - "fid": 0, - "name": "success", - "struct": "R70_t" - }, - { - "fid": 1, - "name": "e", - "struct": "PwlessCredentialException" - } - ], - "registerPrimaryUsingEapAccount_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - } - ], - "registerPrimaryUsingEapAccount_result": [ - { - "fid": 0, - "name": "success", - "struct": "RegisterPrimaryWithTokenV3Response" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "registerPrimaryUsingPhoneWithTokenV3_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - } - ], - "registerPrimaryUsingPhoneWithTokenV3_result": [ - { - "fid": 0, - "name": "success", - "struct": "RegisterPrimaryWithTokenV3Response" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26367C": [ - { - "fid": 1, - "name": "request", - "struct": "I80_q0" - } - ], - "I80_C26368D": [ - { - "fid": 0, - "name": "success", - "struct": "I80_r0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "registerUserid_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "searchId", - "type": 11 - } - ], - "registerUserid_result": [ - { - "fid": 0, - "name": "success", - "type": 2 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reissueChatTicket_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReissueChatTicketRequest" - } - ], - "reissueChatTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReissueChatTicketResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "rejectChatInvitation_args": [ - { - "fid": 1, - "name": "request", - "struct": "RejectChatInvitationRequest" - } - ], - "rejectChatInvitation_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C12946c7" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeAllMessages_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeChatRoomAnnouncement_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatRoomMid", - "type": 11 - }, - { - "fid": 3, - "name": "announcementSeq", - "type": 10 - } - ], - "removeChatRoomAnnouncement_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeFollower_args": [ - { - "fid": 2, - "name": "removeFollowerRequest", - "struct": "RemoveFollowerRequest" - } - ], - "removeFollower_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeFriendRequest_args": [ - { - "fid": 1, - "name": "direction", - "struct": "Pb1_F4" - }, - { - "fid": 2, - "name": "midOrEMid", - "type": 11 - } - ], - "removeFriendRequest_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeFromFollowBlacklist_args": [ - { - "fid": 2, - "name": "removeFromFollowBlacklistRequest", - "struct": "RemoveFromFollowBlacklistRequest" - } - ], - "removeFromFollowBlacklist_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeIdentifier_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "request", - "struct": "IdentityCredentialRequest" - } - ], - "removeIdentifier_result": [ - { - "fid": 0, - "name": "success", - "struct": "IdentityCredentialResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "removeItemFromCollection_args": [ - { - "fid": 1, - "name": "request", - "struct": "RemoveItemFromCollectionRequest" - } - ], - "removeItemFromCollection_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ob1_C12637k1" - }, - { - "fid": 1, - "name": "e", - "struct": "CollectionException" - } - ], - "removeLinePayAccount_args": [ - { - "fid": 1, - "name": "accountId", - "type": 11 - } - ], - "removeLinePayAccount_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "removeProductFromSubscriptionSlot_args": [ - { - "fid": 2, - "name": "req", - "struct": "RemoveProductFromSubscriptionSlotRequest" - } - ], - "removeProductFromSubscriptionSlot_result": [ - { - "fid": 0, - "name": "success", - "struct": "RemoveProductFromSubscriptionSlotResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "reportAbuseEx_args": [ - { - "fid": 2, - "name": "request", - "struct": "ReportAbuseExRequest" - } - ], - "reportAbuseEx_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C13114o7" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportDeviceState_args": [ - { - "fid": 2, - "name": "booleanState", - "map": 2, - "key": 8 - }, - { - "fid": 3, - "name": "stringState", - "map": 11, - "key": 8 - } - ], - "reportDeviceState_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportLocation_args": [ - { - "fid": 1, - "name": "location", - "struct": "Geolocation" - }, - { - "fid": 2, - "name": "trigger", - "struct": "Pb1_EnumC12917a6" - }, - { - "fid": 3, - "name": "networkStatus", - "struct": "ClientNetworkStatus" - }, - { - "fid": 4, - "name": "measuredAt", - "type": 10 - }, - { - "fid": 6, - "name": "clientCurrentTimestamp", - "type": 10 - }, - { - "fid": 7, - "name": "debugInfo", - "struct": "LocationDebugInfo" - } - ], - "reportLocation_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportNetworkStatus_args": [ - { - "fid": 1, - "name": "trigger", - "struct": "Pb1_EnumC12917a6" - }, - { - "fid": 2, - "name": "networkStatus", - "struct": "ClientNetworkStatus" - }, - { - "fid": 3, - "name": "measuredAt", - "type": 10 - }, - { - "fid": 4, - "name": "scanCompletionTimestamp", - "type": 10 - } - ], - "reportNetworkStatus_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportProfile_args": [ - { - "fid": 2, - "name": "syncOpRevision", - "type": 10 - }, - { - "fid": 3, - "name": "profile", - "struct": "Profile" - } - ], - "reportProfile_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportPushRecvReports_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "pushRecvReports", - "list": "PushRecvReport" - } - ], - "reportPushRecvReports_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reportRefreshedAccessToken_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReportRefreshedAccessTokenRequest" - } - ], - "reportRefreshedAccessToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "P70_k" - }, - { - "fid": 1, - "name": "accessTokenRefreshException", - "struct": "AccessTokenRefreshException" - } - ], - "reportSettings_args": [ - { - "fid": 2, - "name": "syncOpRevision", - "type": 10 - }, - { - "fid": 3, - "name": "settings", - "struct": "Settings" - } - ], - "reportSettings_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "requestCleanupUserProvidedData_args": [ - { - "fid": 1, - "name": "dataTypes", - "set": "Pb1_od" - } - ], - "requestCleanupUserProvidedData_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "I80_C26388Y": [ - { - "fid": 1, - "name": "request", - "struct": "I80_u0" - } - ], - "requestToSendPasswordSetVerificationEmail_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "email", - "type": 11 - }, - { - "fid": 3, - "name": "accountIdentifier", - "struct": "AccountIdentifier" - } - ], - "requestToSendPasswordSetVerificationEmail_result": [ - { - "fid": 0, - "name": "success", - "struct": "RequestToSendPasswordSetVerificationEmailResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26389Z": [ - { - "fid": 0, - "name": "success", - "struct": "I80_v0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "requestToSendPhonePinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReqToSendPhonePinCodeRequest" - } - ], - "I80_C26391a0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_s0" - } - ], - "requestToSendPhonePinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReqToSendPhonePinCodeResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26393b0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_t0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "requestTradeNumber_args": [ - { - "fid": 1, - "name": "requestToken", - "type": 11 - }, - { - "fid": 2, - "name": "requestType", - "struct": "r80_g0" - }, - { - "fid": 3, - "name": "amount", - "type": 11 - }, - { - "fid": 4, - "name": "name", - "type": 11 - } - ], - "requestTradeNumber_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaymentTradeInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "resendIdentifierConfirmation_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "request", - "struct": "IdentityCredentialRequest" - } - ], - "resendIdentifierConfirmation_result": [ - { - "fid": 0, - "name": "success", - "struct": "IdentityCredentialResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "resendPinCode_args": [ - { - "fid": 2, - "name": "sessionId", - "type": 11 - } - ], - "resendPinCode_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "reserveCoinPurchase_args": [ - { - "fid": 1, - "name": "request", - "struct": "CoinPurchaseReservation" - } - ], - "reserveCoinPurchase_result": [ - { - "fid": 0, - "name": "success", - "struct": "PaymentReservationResult" - }, - { - "fid": 1, - "name": "e", - "struct": "CoinException" - } - ], - "reserveSubscriptionPurchase_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReserveSubscriptionPurchaseRequest" - } - ], - "reserveSubscriptionPurchase_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReserveSubscriptionPurchaseResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "PremiumException" - } - ], - "reserve_args": [ - { - "fid": 1, - "name": "request", - "struct": "ReserveRequest" - } - ], - "reserve_result": [ - { - "fid": 0, - "name": "success", - "struct": "ReserveInfo" - }, - { - "fid": 1, - "name": "e", - "struct": "MembershipException" - } - ], - "respondE2EEKeyExchange_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "respondE2EELoginRequest_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "restoreE2EEKeyBackup_args": [ - { - "fid": 2, - "name": "request", - "struct": "Pb1_C13155r7" - } - ], - "restoreE2EEKeyBackup_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_C13169s7" - }, - { - "fid": 1, - "name": "e", - "struct": "E2EEKeyBackupException" - } - ], - "I80_C26395c0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_w0" - } - ], - "I80_C26397d0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_x0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "I80_C26399e0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_w0" - } - ], - "I80_C26401f0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_x0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "retrieveRequestTokenWithDocomoV2_args": [ - { - "fid": 1, - "name": "request", - "struct": "Pb1_C13183t7" - } - ], - "retrieveRequestTokenWithDocomoV2_result": [ - { - "fid": 0, - "name": "success", - "struct": "RetrieveRequestTokenWithDocomoV2Response" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "retrieveRequestToken_args": [ - { - "fid": 2, - "name": "carrier", - "struct": "CarrierCode" - } - ], - "retrieveRequestToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "AgeCheckRequestResult" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "revokeTokens_args": [ - { - "fid": 1, - "name": "request", - "struct": "RevokeTokensRequest" - } - ], - "revokeTokens_result": [ - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "saveStudentInformation_args": [ - { - "fid": 2, - "name": "req", - "struct": "SaveStudentInformationRequest" - } - ], - "saveStudentInformation_result": [ - { - "fid": 0, - "name": "success", - "struct": "Ob1_C12649o1" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "sendChatChecked_args": [ - { - "fid": 1, - "name": "seq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "lastMessageId", - "type": 11 - }, - { - "fid": 4, - "name": "sessionId", - "type": 3 - } - ], - "sendChatChecked_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "sendChatRemoved_args": [ - { - "fid": 1, - "name": "seq", - "type": 8 - }, - { - "fid": 2, - "name": "chatMid", - "type": 11 - }, - { - "fid": 3, - "name": "lastMessageId", - "type": 11 - }, - { - "fid": 4, - "name": "sessionId", - "type": 3 - } - ], - "sendChatRemoved_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "sendEncryptedE2EEKey_args": [ - { - "fid": 1, - "name": "request", - "struct": "SendEncryptedE2EEKeyRequest" - } - ], - "sendEncryptedE2EEKey_result": [ - { - "fid": 0, - "name": "success", - "struct": "h80_v" - }, - { - "fid": 1, - "name": "pqme", - "struct": "PrimaryQrCodeMigrationException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "sendMessage_args": [ - { - "fid": 1, - "name": "seq", - "type": 8 - }, - { - "fid": 2, - "name": "message", - "struct": "Message" - } - ], - "sendMessage_result": [ - { - "fid": 0, - "name": "success", - "struct": "Message" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "sendPostback_args": [ - { - "fid": 2, - "name": "request", - "struct": "SendPostbackRequest" - } - ], - "sendPostback_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "setChatHiddenStatus_args": [ - { - "fid": 1, - "name": "setChatHiddenStatusRequest", - "struct": "SetChatHiddenStatusRequest" - } - ], - "setChatHiddenStatus_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "setHashedPassword_args": [ - { - "fid": 1, - "name": "request", - "struct": "SetHashedPasswordRequest" - } - ], - "I80_C26403g0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_z0" - } - ], - "setHashedPassword_result": [ - { - "fid": 0, - "name": "success", - "struct": "T70_g1" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_C26405h0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_A0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "setIdentifier_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "request", - "struct": "IdentityCredentialRequest" - } - ], - "setIdentifier_result": [ - { - "fid": 0, - "name": "success", - "struct": "IdentityCredentialResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "setNotificationsEnabled_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "type", - "struct": "MIDType" - }, - { - "fid": 3, - "name": "target", - "type": 11 - }, - { - "fid": 4, - "name": "enablement", - "type": 2 - } - ], - "setNotificationsEnabled_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "setPassword_args": [ - { - "fid": 1, - "name": "request", - "struct": "SetPasswordRequest" - } - ], - "setPassword_result": [ - { - "fid": 0, - "name": "success", - "struct": "U70_t" - }, - { - "fid": 1, - "name": "pue", - "struct": "PasswordUpdateException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "shouldShowWelcomeStickerBanner_args": [ - { - "fid": 2, - "name": "request", - "struct": "Ob1_C12660s1" - } - ], - "shouldShowWelcomeStickerBanner_result": [ - { - "fid": 0, - "name": "success", - "struct": "ShouldShowWelcomeStickerBannerResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "startPhotobooth_args": [ - { - "fid": 2, - "name": "request", - "struct": "StartPhotoboothRequest" - } - ], - "startPhotobooth_result": [ - { - "fid": 0, - "name": "success", - "struct": "StartPhotoboothResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "I80_C26407i0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_C0" - } - ], - "I80_C26409j0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_D0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "startUpdateVerification_args": [ - { - "fid": 2, - "name": "region", - "type": 11 - }, - { - "fid": 3, - "name": "carrier", - "struct": "CarrierCode" - }, - { - "fid": 4, - "name": "phone", - "type": 11 - }, - { - "fid": 5, - "name": "udidHash", - "type": 11 - }, - { - "fid": 6, - "name": "deviceInfo", - "struct": "DeviceInfo" - }, - { - "fid": 7, - "name": "networkCode", - "type": 11 - }, - { - "fid": 8, - "name": "locale", - "type": 11 - }, - { - "fid": 9, - "name": "simInfo", - "struct": "SIMInfo" - } - ], - "startUpdateVerification_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerificationSessionData" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "stopBundleSubscription_args": [ - { - "fid": 2, - "name": "request", - "struct": "StopBundleSubscriptionRequest" - } - ], - "stopBundleSubscription_result": [ - { - "fid": 0, - "name": "success", - "struct": "StopBundleSubscriptionResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "storeShareTargetPickerResult_args": [ - { - "fid": 1, - "name": "request", - "struct": "ShareTargetPickerResultRequest" - } - ], - "storeShareTargetPickerResult_result": [ - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "storeSubWindowResult_args": [ - { - "fid": 1, - "name": "request", - "struct": "SubWindowResultRequest" - } - ], - "storeSubWindowResult_result": [ - { - "fid": 1, - "name": "liffException", - "struct": "LiffException" - }, - { - "fid": 2, - "name": "talkException", - "struct": "TalkException" - } - ], - "syncContacts_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "localContacts", - "list": "ContactModification" - } - ], - "syncContacts_result": [ - { - "fid": 0, - "name": "success", - "map": "ContactRegistration", - "key": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "sync_args": [ - { - "fid": 1, - "name": "request", - "struct": "SyncRequest" - } - ], - "sync_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_X7" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "t80_g": [ - { - "fid": 1, - "name": "response", - "struct": "GetResponse" - }, - { - "fid": 2, - "name": "error", - "struct": "SettingsException" - } - ], - "t80_l": [ - { - "fid": 1, - "name": "response", - "struct": "SetResponse" - }, - { - "fid": 2, - "name": "error", - "struct": "SettingsException" - } - ], - "t80_p": [ - { - "fid": 1, - "name": "booleanValue", - "type": 2 - }, - { - "fid": 2, - "name": "i64Value", - "type": 10 - }, - { - "fid": 3, - "name": "stringValue", - "type": 11 - }, - { - "fid": 4, - "name": "stringListValue", - "list": "_any" - }, - { - "fid": 5, - "name": "i64ListValue", - "list": "_any" - }, - { - "fid": 6, - "name": "rawJsonStringValue", - "type": 11 - }, - { - "fid": 7, - "name": "i8Value", - "type": 3 - }, - { - "fid": 8, - "name": "i16Value", - "type": 6 - }, - { - "fid": 9, - "name": "i32Value", - "type": 8 - }, - { - "fid": 10, - "name": "doubleValue", - "type": 4 - }, - { - "fid": 11, - "name": "i8ListValue", - "list": "_any" - }, - { - "fid": 12, - "name": "i16ListValue", - "list": "_any" - }, - { - "fid": 13, - "name": "i32ListValue", - "list": "_any" - } - ], - "tryFriendRequest_args": [ - { - "fid": 1, - "name": "midOrEMid", - "type": 11 - }, - { - "fid": 2, - "name": "method", - "struct": "Pb1_G4" - }, - { - "fid": 3, - "name": "friendRequestParams", - "type": 11 - } - ], - "tryFriendRequest_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "unblockContact_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "id", - "type": 11 - }, - { - "fid": 3, - "name": "reference", - "type": 11 - } - ], - "unblockContact_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "unblockRecommendation_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "targetMid", - "type": 11 - } - ], - "unblockRecommendation_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "unfollow_args": [ - { - "fid": 2, - "name": "unfollowRequest", - "struct": "UnfollowRequest" - } - ], - "unfollow_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "unlinkDevice_args": [ - { - "fid": 1, - "name": "request", - "struct": "DeviceUnlinkRequest" - } - ], - "unlinkDevice_result": [ - { - "fid": 0, - "name": "success", - "struct": "do0_C23152j" - }, - { - "fid": 1, - "name": "e", - "struct": "ThingsException" - } - ], - "unregisterUserAndDevice_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "unsendMessage_args": [ - { - "fid": 1, - "name": "seq", - "type": 8 - }, - { - "fid": 2, - "name": "messageId", - "type": 11 - } - ], - "unsendMessage_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateAndGetNearby_args": [ - { - "fid": 2, - "name": "latitude", - "type": 4 - }, - { - "fid": 3, - "name": "longitude", - "type": 4 - }, - { - "fid": 4, - "name": "accuracy", - "struct": "GeolocationAccuracy" - }, - { - "fid": 5, - "name": "networkStatus", - "struct": "ClientNetworkStatus" - }, - { - "fid": 6, - "name": "altitudeMeters", - "type": 4 - }, - { - "fid": 7, - "name": "velocityMetersPerSecond", - "type": 4 - }, - { - "fid": 8, - "name": "bearingDegrees", - "type": 4 - }, - { - "fid": 9, - "name": "measuredAtTimestamp", - "type": 10 - }, - { - "fid": 10, - "name": "clientCurrentTimestamp", - "type": 10 - } - ], - "updateAndGetNearby_result": [ - { - "fid": 0, - "name": "success", - "list": "NearbyEntry" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateChannelNotificationSetting_args": [ - { - "fid": 1, - "name": "setting", - "list": "ChannelNotificationSetting" - } - ], - "updateChannelNotificationSetting_result": [ - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "updateChannelSettings_args": [ - { - "fid": 1, - "name": "channelSettings", - "struct": "ChannelSettings" - } - ], - "updateChannelSettings_result": [ - { - "fid": 0, - "name": "success", - "type": 2 - }, - { - "fid": 1, - "name": "e", - "struct": "ChannelException" - } - ], - "updateChatRoomBGM_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "chatRoomMid", - "type": 11 - }, - { - "fid": 3, - "name": "chatRoomBGMInfo", - "type": 11 - } - ], - "updateChatRoomBGM_result": [ - { - "fid": 0, - "name": "success", - "struct": "ChatRoomBGM" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateChat_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdateChatRequest" - } - ], - "updateChat_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_Zc" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateContactSetting_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "mid", - "type": 11 - }, - { - "fid": 3, - "name": "flag", - "struct": "ContactSetting" - }, - { - "fid": 4, - "name": "value", - "type": 11 - } - ], - "updateContactSetting_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateExtendedProfileAttribute_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "attr", - "struct": "Pb1_EnumC13180t4" - }, - { - "fid": 3, - "name": "extendedProfile", - "struct": "ExtendedProfile" - } - ], - "updateExtendedProfileAttribute_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateGroupCallUrl_args": [ - { - "fid": 2, - "name": "request", - "struct": "UpdateGroupCallUrlRequest" - } - ], - "updateGroupCallUrl_result": [ - { - "fid": 0, - "name": "success", - "struct": "Pb1_cd" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateIdentifier_args": [ - { - "fid": 2, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 3, - "name": "request", - "struct": "IdentityCredentialRequest" - } - ], - "updateIdentifier_result": [ - { - "fid": 0, - "name": "success", - "struct": "IdentityCredentialResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateNotificationToken_args": [ - { - "fid": 2, - "name": "token", - "type": 11 - }, - { - "fid": 3, - "name": "type", - "struct": "NotificationType" - } - ], - "updateNotificationToken_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updatePassword_args": [ - { - "fid": 1, - "name": "request", - "struct": "UpdatePasswordRequest" - } - ], - "updatePassword_result": [ - { - "fid": 0, - "name": "success", - "struct": "U70_v" - }, - { - "fid": 1, - "name": "pue", - "struct": "PasswordUpdateException" - }, - { - "fid": 2, - "name": "tae", - "struct": "TokenAuthException" - } - ], - "updateProfileAttribute_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateProfileAttributes_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 2, - "name": "request", - "struct": "UpdateProfileAttributesRequest" - } - ], - "updateProfileAttributes_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateSafetyStatus_args": [ - { - "fid": 1, - "name": "req", - "struct": "UpdateSafetyStatusRequest" - } - ], - "updateSafetyStatus_result": [ - { - "fid": 1, - "name": "e", - "struct": "vh_Fg_b" - } - ], - "updateSettingsAttribute_result": [ - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateSettingsAttributes2_args": [ - { - "fid": 1, - "name": "reqSeq", - "type": 8 - }, - { - "fid": 3, - "name": "settings", - "struct": "Settings" - }, - { - "fid": 4, - "name": "attributesToUpdate", - "set": "SettingsAttributeEx" - } - ], - "updateSettingsAttributes2_result": [ - { - "fid": 0, - "name": "success", - "set": 8 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "updateUserGeneralSettings_args": [ - { - "fid": 1, - "name": "settings", - "map": 11, - "key": 8 - } - ], - "updateUserGeneralSettings_result": [ - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "usePhotoboothTicket_args": [ - { - "fid": 2, - "name": "request", - "struct": "UsePhotoboothTicketRequest" - } - ], - "usePhotoboothTicket_result": [ - { - "fid": 0, - "name": "success", - "struct": "UsePhotoboothTicketResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "validateEligibleFriends_args": [ - { - "fid": 1, - "name": "friends", - "list": 11 - }, - { - "fid": 2, - "name": "type", - "struct": "r80_EnumC34376p" - } - ], - "validateEligibleFriends_result": [ - { - "fid": 0, - "name": "success", - "list": "PaymentEligibleFriendStatus" - }, - { - "fid": 1, - "name": "e", - "struct": "PaymentException" - } - ], - "validateProduct_args": [ - { - "fid": 2, - "name": "shopId", - "type": 11 - }, - { - "fid": 3, - "name": "productId", - "type": 11 - }, - { - "fid": 4, - "name": "productVersion", - "type": 10 - }, - { - "fid": 5, - "name": "validationReq", - "struct": "YN0_Ob1_Q0" - } - ], - "validateProduct_result": [ - { - "fid": 0, - "name": "success", - "struct": "YN0_Ob1_R0" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "validateProfile_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "displayName", - "type": 11 - } - ], - "validateProfile_result": [ - { - "fid": 0, - "name": "success", - "struct": "T70_o1" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "verifyAccountUsingHashedPwd_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyAccountUsingHashedPwdRequest" - } - ], - "I80_C26411k0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_E0" - } - ], - "verifyAccountUsingHashedPwd_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerifyAccountUsingHashedPwdResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_l0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_F0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "verifyAssertion_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyAssertionRequest" - } - ], - "verifyAssertion_result": [ - { - "fid": 0, - "name": "success", - "struct": "m80_q" - }, - { - "fid": 1, - "name": "deviceAttestationException", - "struct": "m80_b" - } - ], - "verifyAttestation_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyAttestationRequest" - } - ], - "verifyAttestation_result": [ - { - "fid": 0, - "name": "success", - "struct": "m80_s" - }, - { - "fid": 1, - "name": "deviceAttestationException", - "struct": "m80_b" - } - ], - "verifyBirthdayGiftAssociationToken_args": [ - { - "fid": 2, - "name": "req", - "struct": "BirthdayGiftAssociationVerifyRequest" - } - ], - "verifyBirthdayGiftAssociationToken_result": [ - { - "fid": 0, - "name": "success", - "struct": "BirthdayGiftAssociationVerifyResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "ShopException" - } - ], - "verifyEapAccountForRegistration_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "device", - "struct": "Device" - }, - { - "fid": 3, - "name": "socialLogin", - "struct": "SocialLogin" - } - ], - "verifyEapAccountForRegistration_result": [ - { - "fid": 0, - "name": "success", - "struct": "T70_s1" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "verifyEapLogin_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyEapLoginRequest" - } - ], - "I80_m0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_G0" - } - ], - "verifyEapLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerifyEapLoginResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AccountEapConnectException" - } - ], - "I80_n0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_H0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "verifyPhoneNumber_args": [ - { - "fid": 2, - "name": "sessionId", - "type": 11 - }, - { - "fid": 3, - "name": "pinCode", - "type": 11 - }, - { - "fid": 4, - "name": "udidHash", - "type": 11 - }, - { - "fid": 5, - "name": "migrationPincodeSessionId", - "type": 11 - }, - { - "fid": 6, - "name": "oldUdidHash", - "type": 11 - } - ], - "verifyPhoneNumber_result": [ - { - "fid": 0, - "name": "success", - "struct": "PhoneVerificationResult" - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "verifyPhonePinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyPhonePinCodeRequest" - } - ], - "I80_o0": [ - { - "fid": 1, - "name": "request", - "struct": "I80_I0" - } - ], - "verifyPhonePinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerifyPhonePinCodeResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "I80_p0": [ - { - "fid": 0, - "name": "success", - "struct": "I80_J0" - }, - { - "fid": 1, - "name": "e", - "struct": "I80_C26390a" - } - ], - "verifyPinCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyPinCodeRequest" - } - ], - "verifyPinCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "q80_q" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryQrCodeException" - } - ], - "verifyQrCode_args": [ - { - "fid": 1, - "name": "request", - "struct": "VerifyQrCodeRequest" - } - ], - "verifyQrCode_result": [ - { - "fid": 0, - "name": "success", - "struct": "q80_s" - }, - { - "fid": 1, - "name": "e", - "struct": "SecondaryQrCodeException" - } - ], - "verifyQrcodeWithE2EE_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "verifyQrcode_args": [ - { - "fid": 2, - "name": "verifier", - "type": 11 - }, - { - "fid": 3, - "name": "pinCode", - "type": 11 - } - ], - "verifyQrcode_result": [ - { - "fid": 0, - "name": "success", - "type": 11 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "verifySocialLogin_args": [ - { - "fid": 1, - "name": "authSessionId", - "type": 11 - }, - { - "fid": 2, - "name": "device", - "struct": "Device" - }, - { - "fid": 3, - "name": "socialLogin", - "struct": "SocialLogin" - } - ], - "verifySocialLogin_result": [ - { - "fid": 0, - "name": "success", - "struct": "VerifySocialLoginResponse" - }, - { - "fid": 1, - "name": "e", - "struct": "AuthException" - } - ], - "vh_C37633d": [], - "wakeUpLongPolling_args": [ - { - "fid": 2, - "name": "clientRevision", - "type": 10 - } - ], - "wakeUpLongPolling_result": [ - { - "fid": 0, - "name": "success", - "type": 2 - }, - { - "fid": 1, - "name": "e", - "struct": "TalkException" - } - ], - "zR0_C40576a": [], - "zR0_C40580e": [ - { - "fid": 1, - "name": "sticker", - "struct": "_any" - } - ], - "GetContactsV2Response": [ - { - "fid": 1, - "name": "contacts", - "map": "ContactEntry", - "key": 11 - } - ], - "ContactEntry": [ - { - "fid": 1, - "name": "userStatus", - "struct": "UserStatus" - }, - { - "fid": 2, - "name": "snapshotTimeMillis", - "type": 10 - }, - { - "fid": 3, - "name": "contact", - "struct": "Contact" - }, - { - "fid": 4, - "name": "calendarEvents", - "struct": "ContactCalendarEvents" - } - ], - "LoginResultType": { - "1": "SUCCESS", - "2": "REQUIRE_QRCODE", - "3": "REQUIRE_DEVICE_CONFIRM", - "4": "REQUIRE_SMS_CONFIRM" - }, - "LoginResult": [ - { - "fid": 1, - "name": "authToken", - "type": 11 - }, - { - "fid": 2, - "name": "certificate", - "type": 11 - }, - { - "fid": 3, - "name": "verifier", - "type": 11 - }, - { - "fid": 4, - "name": "pinCode", - "type": 11 - }, - { - "fid": 5, - "name": "type", - "struct": "LoginResultType" - }, - { - "fid": 6, - "name": "lastPrimaryBindTime", - "type": 10 - }, - { - "fid": 7, - "name": "displayMessage", - "type": 11 - }, - { - "fid": 8, - "name": "sessionForSMSConfirm", - "struct": "VerificationSessionData" - } - ] -} + "AR0_g": { + "16641": "ILLEGAL_ARGUMENT", + "16642": "MAJOR_VERSION_NOT_SUPPORTED", + "16897": "AUTHENTICATION_FAILED", + "20737": "INTERNAL_SERVER_ERROR", + "20739": "SERVICE_UNAVAILABLE", + }, + "AR0_q": { + "0": "NOT_PURCHASED", + "1": "SUBSCRIPTION", + }, + "AccountMigrationPincodeType": { + "0": "NOT_APPLICABLE", + "1": "NOT_SET", + "2": "SET", + "3": "NEED_ENFORCED_INPUT", + }, + "ApplicationType": { + "16": "IOS", + "17": "IOS_RC", + "18": "IOS_BETA", + "19": "IOS_ALPHA", + "32": "ANDROID", + "33": "ANDROID_RC", + "34": "ANDROID_BETA", + "35": "ANDROID_ALPHA", + "48": "WAP", + "49": "WAP_RC", + "50": "WAP_BETA", + "51": "WAP_ALPHA", + "64": "BOT", + "65": "BOT_RC", + "66": "BOT_BETA", + "67": "BOT_ALPHA", + "80": "WEB", + "81": "WEB_RC", + "82": "WEB_BETA", + "83": "WEB_ALPHA", + "96": "DESKTOPWIN", + "97": "DESKTOPWIN_RC", + "98": "DESKTOPWIN_BETA", + "99": "DESKTOPWIN_ALPHA", + "112": "DESKTOPMAC", + "113": "DESKTOPMAC_RC", + "114": "DESKTOPMAC_BETA", + "115": "DESKTOPMAC_ALPHA", + "128": "CHANNELGW", + "129": "CHANNELGW_RC", + "130": "CHANNELGW_BETA", + "131": "CHANNELGW_ALPHA", + "144": "CHANNELCP", + "145": "CHANNELCP_RC", + "146": "CHANNELCP_BETA", + "147": "CHANNELCP_ALPHA", + "160": "WINPHONE", + "161": "WINPHONE_RC", + "162": "WINPHONE_BETA", + "163": "WINPHONE_ALPHA", + "176": "BLACKBERRY", + "177": "BLACKBERRY_RC", + "178": "BLACKBERRY_BETA", + "179": "BLACKBERRY_ALPHA", + "192": "WINMETRO", + "193": "WINMETRO_RC", + "194": "WINMETRO_BETA", + "195": "WINMETRO_ALPHA", + "200": "S40", + "209": "S40_RC", + "210": "S40_BETA", + "211": "S40_ALPHA", + "224": "CHRONO", + "225": "CHRONO_RC", + "226": "CHRONO_BETA", + "227": "CHRONO_ALPHA", + "256": "TIZEN", + "257": "TIZEN_RC", + "258": "TIZEN_BETA", + "259": "TIZEN_ALPHA", + "272": "VIRTUAL", + "288": "FIREFOXOS", + "289": "FIREFOXOS_RC", + "290": "FIREFOXOS_BETA", + "291": "FIREFOXOS_ALPHA", + "304": "IOSIPAD", + "305": "IOSIPAD_RC", + "306": "IOSIPAD_BETA", + "307": "IOSIPAD_ALPHA", + "320": "BIZIOS", + "321": "BIZIOS_RC", + "322": "BIZIOS_BETA", + "323": "BIZIOS_ALPHA", + "336": "BIZANDROID", + "337": "BIZANDROID_RC", + "338": "BIZANDROID_BETA", + "339": "BIZANDROID_ALPHA", + "352": "BIZBOT", + "353": "BIZBOT_RC", + "354": "BIZBOT_BETA", + "355": "BIZBOT_ALPHA", + "368": "CHROMEOS", + "369": "CHROMEOS_RC", + "370": "CHROMEOS_BETA", + "371": "CHROMEOS_ALPHA", + "384": "ANDROIDLITE", + "385": "ANDROIDLITE_RC", + "386": "ANDROIDLITE_BETA", + "387": "ANDROIDLITE_ALPHA", + "400": "WIN10", + "401": "WIN10_RC", + "402": "WIN10_BETA", + "403": "WIN10_ALPHA", + "416": "BIZWEB", + "417": "BIZWEB_RC", + "418": "BIZWEB_BETA", + "419": "BIZWEB_ALPHA", + "432": "DUMMYPRIMARY", + "433": "DUMMYPRIMARY_RC", + "434": "DUMMYPRIMARY_BETA", + "435": "DUMMYPRIMARY_ALPHA", + "448": "SQUARE", + "449": "SQUARE_RC", + "450": "SQUARE_BETA", + "451": "SQUARE_ALPHA", + "464": "INTERNAL", + "465": "INTERNAL_RC", + "466": "INTERNAL_BETA", + "467": "INTERNAL_ALPHA", + "480": "CLOVAFRIENDS", + "481": "CLOVAFRIENDS_RC", + "482": "CLOVAFRIENDS_BETA", + "483": "CLOVAFRIENDS_ALPHA", + "496": "WATCHOS", + "497": "WATCHOS_RC", + "498": "WATCHOS_BETA", + "499": "WATCHOS_ALPHA", + "512": "OPENCHAT_PLUG", + "513": "OPENCHAT_PLUG_RC", + "514": "OPENCHAT_PLUG_BETA", + "515": "OPENCHAT_PLUG_ALPHA", + "528": "ANDROIDSECONDARY", + "529": "ANDROIDSECONDARY_RC", + "530": "ANDROIDSECONDARY_BETA", + "531": "ANDROIDSECONDARY_ALPHA", + "544": "WEAROS", + "545": "WEAROS_RC", + "546": "WEAROS_BETA", + "547": "WEAROS_ALPHA", + }, + "BotType": { + "0": "RESERVED", + "1": "OFFICIAL", + "2": "LINE_AT_0", + "3": "LINE_AT", + }, + "CarrierCode": { + "0": "NOT_SPECIFIED", + "1": "JP_DOCOMO", + "2": "JP_AU", + "3": "JP_SOFTBANK", + "4": "JP_DOCOMO_LINE", + "5": "JP_SOFTBANK_LINE", + "6": "JP_AU_LINE", + "7": "JP_RAKUTEN", + "8": "JP_MVNO", + "9": "JP_USER_SELECTED_LINE", + "17": "KR_SKT", + "18": "KR_KT", + "19": "KR_LGT", + }, + "ChannelErrorCode": { + "0": "ILLEGAL_ARGUMENT", + "1": "INTERNAL_ERROR", + "2": "CONNECTION_ERROR", + "3": "AUTHENTICATIONI_FAILED", + "4": "NEED_PERMISSION_APPROVAL", + "5": "COIN_NOT_USABLE", + "6": "WEBVIEW_NOT_ALLOWED", + "7": "NOT_AVAILABLE_API", + }, + "ContactAttribute": { + "1": "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL", + "2": "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL", + "16": "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME", + "32": "CONTACT_ATTRIBUTE_CAPABLE_BUDDY", + }, + "ContactSetting": { + "1": "CONTACT_SETTING_NOTIFICATION_DISABLE", + "2": "CONTACT_SETTING_DISPLAY_NAME_OVERRIDE", + "4": "CONTACT_SETTING_CONTACT_HIDE", + "8": "CONTACT_SETTING_FAVORITE", + "16": "CONTACT_SETTING_DELETE", + "32": "CONTACT_SETTING_FRIEND_RINGTONE", + "64": "CONTACT_SETTING_FRIEND_RINGBACK_TONE", + }, + "ContactStatus": { + "0": "UNSPECIFIED", + "1": "FRIEND", + "2": "FRIEND_BLOCKED", + "3": "RECOMMEND", + "4": "RECOMMEND_BLOCKED", + "5": "DELETED", + "6": "DELETED_BLOCKED", + }, + "ContactType": { + "0": "MID", + "1": "PHONE", + "2": "EMAIL", + "3": "USERID", + "4": "PROXIMITY", + "5": "GROUP", + "6": "USER", + "7": "QRCODE", + "8": "PROMOTION_BOT", + "9": "CONTACT_MESSAGE", + "10": "FRIEND_REQUEST", + "11": "BEACON", + "128": "REPAIR", + "2305": "FACEBOOK", + "2306": "SINA", + "2307": "RENREN", + "2308": "FEIXIN", + "2309": "BBM", + }, + "ContentType": { + "0": "NONE", + "1": "IMAGE", + "2": "VIDEO", + "3": "AUDIO", + "4": "HTML", + "5": "PDF", + "6": "CALL", + "7": "STICKER", + "8": "PRESENCE", + "9": "GIFT", + "10": "GROUPBOARD", + "11": "APPLINK", + "12": "LINK", + "13": "CONTACT", + "14": "FILE", + "15": "LOCATION", + "16": "POSTNOTIFICATION", + "17": "RICH", + "18": "CHATEVENT", + "19": "MUSIC", + "20": "PAYMENT", + "21": "EXTIMAGE", + "22": "FLEX", + }, + "Eg_EnumC8927a": { + "1": "NEW", + "2": "UPDATE", + "3": "EVENT", + }, + "EmailConfirmationStatus": { + "0": "NOT_SPECIFIED", + "1": "NOT_YET", + "3": "DONE", + "4": "NEED_ENFORCED_INPUT", + }, + "ErrorCode": { + "0": "ILLEGAL_ARGUMENT", + "1": "AUTHENTICATION_FAILED", + "2": "DB_FAILED", + "3": "INVALID_STATE", + "4": "EXCESSIVE_ACCESS", + "5": "NOT_FOUND", + "6": "INVALID_LENGTH", + "7": "NOT_AVAILABLE_USER", + "8": "NOT_AUTHORIZED_DEVICE", + "9": "INVALID_MID", + "10": "NOT_A_MEMBER", + "11": "INCOMPATIBLE_APP_VERSION", + "12": "NOT_READY", + "13": "NOT_AVAILABLE_SESSION", + "14": "NOT_AUTHORIZED_SESSION", + "15": "SYSTEM_ERROR", + "16": "NO_AVAILABLE_VERIFICATION_METHOD", + "17": "NOT_AUTHENTICATED", + "18": "INVALID_IDENTITY_CREDENTIAL", + "19": "NOT_AVAILABLE_IDENTITY_IDENTIFIER", + "20": "INTERNAL_ERROR", + "21": "NO_SUCH_IDENTITY_IDENFIER", + "22": "DEACTIVATED_ACCOUNT_BOUND_TO_THIS_IDENTITY", + "23": "ILLEGAL_IDENTITY_CREDENTIAL", + "24": "UNKNOWN_CHANNEL", + "25": "NO_SUCH_MESSAGE_BOX", + "26": "NOT_AVAILABLE_MESSAGE_BOX", + "27": "CHANNEL_DOES_NOT_MATCH", + "28": "NOT_YOUR_MESSAGE", + "29": "MESSAGE_DEFINED_ERROR", + "30": "USER_CANNOT_ACCEPT_PRESENTS", + "32": "USER_NOT_STICKER_OWNER", + "33": "MAINTENANCE_ERROR", + "34": "ACCOUNT_NOT_MATCHED", + "35": "ABUSE_BLOCK", + "36": "NOT_FRIEND", + "37": "NOT_ALLOWED_CALL", + "38": "BLOCK_FRIEND", + "39": "INCOMPATIBLE_VOIP_VERSION", + "40": "INVALID_SNS_ACCESS_TOKEN", + "41": "EXTERNAL_SERVICE_NOT_AVAILABLE", + "42": "NOT_ALLOWED_ADD_CONTACT", + "43": "NOT_CERTIFICATED", + "44": "NOT_ALLOWED_SECONDARY_DEVICE", + "45": "INVALID_PIN_CODE", + "47": "EXCEED_FILE_MAX_SIZE", + "48": "EXCEED_DAILY_QUOTA", + "49": "NOT_SUPPORT_SEND_FILE", + "50": "MUST_UPGRADE", + "51": "NOT_AVAILABLE_PIN_CODE_SESSION", + "52": "EXPIRED_REVISION", + "54": "NOT_YET_PHONE_NUMBER", + "55": "BAD_CALL_NUMBER", + "56": "UNAVAILABLE_CALL_NUMBER", + "57": "NOT_SUPPORT_CALL_SERVICE", + "58": "CONGESTION_CONTROL", + "59": "NO_BALANCE", + "60": "NOT_PERMITTED_CALLER_ID", + "61": "NO_CALLER_ID_LIMIT_EXCEEDED", + "62": "CALLER_ID_VERIFICATION_REQUIRED", + "63": "NO_CALLER_ID_LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED", + "64": "MESSAGE_NOT_FOUND", + "65": "INVALID_ACCOUNT_MIGRATION_PINCODE_FORMAT", + "66": "ACCOUNT_MIGRATION_PINCODE_NOT_MATCHED", + "67": "ACCOUNT_MIGRATION_PINCODE_BLOCKED", + "69": "INVALID_PASSWORD_FORMAT", + "70": "FEATURE_RESTRICTED", + "71": "MESSAGE_NOT_DESTRUCTIBLE", + "72": "PAID_CALL_REDEEM_FAILED", + "73": "PREVENTED_JOIN_BY_TICKET", + "75": "SEND_MESSAGE_NOT_PERMITTED_FROM_LINE_AT", + "76": "SEND_MESSAGE_NOT_PERMITTED_WHILE_AUTO_REPLY", + "77": "SECURITY_CENTER_NOT_VERIFIED", + "78": "SECURITY_CENTER_BLOCKED_BY_SETTING", + "79": "SECURITY_CENTER_BLOCKED", + "80": "TALK_PROXY_EXCEPTION", + "81": "E2EE_INVALID_PROTOCOL", + "82": "E2EE_RETRY_ENCRYPT", + "83": "E2EE_UPDATE_SENDER_KEY", + "84": "E2EE_UPDATE_RECEIVER_KEY", + "85": "E2EE_INVALID_ARGUMENT", + "86": "E2EE_INVALID_VERSION", + "87": "E2EE_SENDER_DISABLED", + "88": "E2EE_RECEIVER_DISABLED", + "89": "E2EE_SENDER_NOT_ALLOWED", + "90": "E2EE_RECEIVER_NOT_ALLOWED", + "91": "E2EE_RESEND_FAIL", + "92": "E2EE_RESEND_OK", + "93": "HITOKOTO_BACKUP_NO_AVAILABLE_DATA", + "94": "E2EE_UPDATE_PRIMARY_DEVICE", + "95": "SUCCESS", + "96": "CANCEL", + "97": "E2EE_PRIMARY_NOT_SUPPORT", + "98": "E2EE_RETRY_PLAIN", + "99": "E2EE_RECREATE_GROUP_KEY", + "100": "E2EE_GROUP_TOO_MANY_MEMBERS", + "101": "SERVER_BUSY", + "102": "NOT_ALLOWED_ADD_FOLLOW", + "103": "INCOMING_FRIEND_REQUEST_LIMIT", + "104": "OUTGOING_FRIEND_REQUEST_LIMIT", + "105": "OUTGOING_FRIEND_REQUEST_QUOTA", + "106": "DUPLICATED", + "107": "BANNED", + "108": "NOT_AN_INVITEE", + "109": "NOT_AN_OUTSIDER", + "111": "EMPTY_GROUP", + "112": "EXCEED_FOLLOW_LIMIT", + "113": "UNSUPPORTED_ACCOUNT_TYPE", + "114": "AGREEMENT_REQUIRED", + "115": "SHOULD_RETRY", + "116": "OVER_MAX_CHATS_PER_USER", + "117": "NOT_AVAILABLE_API", + "118": "INVALID_OTP", + "119": "MUST_REFRESH_V3_TOKEN", + "120": "ALREADY_EXPIRED", + "121": "USER_NOT_STICON_OWNER", + "122": "REFRESH_MEDIA_FLOW", + "123": "EXCEED_FOLLOWER_LIMIT", + "124": "INCOMPATIBLE_APP_TYPE", + "125": "NOT_PREMIUM", + }, + "Fg_a": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "NOT_FOUND", + "4": "RETRY_LATER", + "5": "HUMAN_VERIFICATION_REQUIRED", + "6": "NOT_ENABLED", + "100": "INVALID_CONTEXT", + "101": "APP_UPGRADE_REQUIRED", + "102": "NO_CONTENT", + }, + "FriendRequestStatus": { + "0": "NONE", + "1": "AVAILABLE", + "2": "ALREADY_REQUESTED", + "3": "UNAVAILABLE", + }, + "IdentityProvider": { + "0": "UNKNOWN", + "1": "LINE", + "2": "NAVER_KR", + "3": "LINE_PHONE", + }, + "LN0_F0": { + "0": "UNKNOWN", + "1": "INVALID_TARGET_USER", + "2": "AGE_VALIDATION", + "3": "TOO_MANY_FRIENDS", + "4": "TOO_MANY_REQUESTS", + "5": "MALFORMED_REQUEST", + "6": "TRACKING_META_QRCODE_FAVORED", + }, + "LN0_X0": { + "1": "USER", + "2": "BOT", + }, + "MIDType": { + "0": "USER", + "1": "ROOM", + "2": "GROUP", + "3": "SQUARE", + "4": "SQUARE_CHAT", + "5": "SQUARE_MEMBER", + "6": "BOT", + "7": "SQUARE_THREAD", + }, + "NZ0_B0": { + "0": "PAY", + "1": "POI", + "2": "FX", + "3": "SEC", + "4": "BIT", + "5": "LIN", + "6": "SCO", + "7": "POC", + }, + "NZ0_C0": { + "0": "OK", + "1": "MAINTENANCE", + "2": "TPS_EXCEEDED", + "3": "NOT_FOUND", + "4": "BLOCKED", + "5": "INTERNAL_ERROR", + "6": "WALLET_CMS_MAINTENANCE", + }, + "NZ0_EnumC12154b1": { + "0": "NORMAL", + "1": "CAMERA", + }, + "NZ0_EnumC12169g1": { + "101": "WALLET", + "201": "ASSET", + "301": "SHOPPING", + }, + "NZ0_EnumC12170h": { + "0": "HIDE_BADGE", + "1": "SHOW_BADGE", + }, + "NZ0_EnumC12188n": { + "0": "OK", + "1": "UNAVAILABLE", + "2": "DUPLICATAE_REGISTRATION", + "3": "INTERNAL_ERROR", + }, + "NZ0_EnumC12192o0": { + "0": "LV1", + "1": "LV2", + "2": "LV3", + "3": "LV9", + }, + "NZ0_EnumC12193o1": { + "400": "INVALID_PARAMETER", + "401": "AUTHENTICATION_FAILED", + "500": "INTERNAL_SERVER_ERROR", + "503": "SERVICE_IN_MAINTENANCE_MODE", + }, + "NZ0_EnumC12195p0": { + "1": "ALIVE", + "2": "SUSPENDED", + "3": "UNREGISTERED", + }, + "NZ0_EnumC12197q": { + "0": "PREFIX", + "1": "SUFFIX", + }, + "NZ0_EnumC12218x0": { + "0": "NO_CONTENT", + "1": "OK", + "2": "ERROR", + }, + "NZ0_I0": { + "0": "A", + "1": "B", + "2": "C", + "3": "D", + "4": "UNKNOWN", + }, + "NZ0_K0": { + "0": "POCKET_MONEY", + "1": "REFINANCE", + }, + "NZ0_N0": { + "0": "COMPACT", + "1": "EXPANDED", + }, + "NZ0_S0": { + "0": "CARD", + "1": "ACTION", + }, + "NZ0_W0": { + "0": "OK", + "1": "INTERNAL_ERROR", + }, + "NotificationStatus": { + "1": "NOTIFICATION_ITEM_EXIST", + "2": "TIMELINE_ITEM_EXIST", + "4": "NOTE_GROUP_NEW_ITEM_EXIST", + "8": "TIMELINE_BUDDYGROUP_CHANGED", + "16": "NOTE_ONE_TO_ONE_NEW_ITEM_EXIST", + "32": "ALBUM_ITEM_EXIST", + "64": "TIMELINE_ITEM_DELETED", + "128": "OTOGROUP_ITEM_EXIST", + "256": "GROUPHOME_NEW_ITEM_EXIST", + "512": "GROUPHOME_HIDDEN_ITEM_CHANGED", + "1024": "NOTIFICATION_ITEM_CHANGED", + "2048": "BEAD_ITEM_HIDE", + "4096": "BEAD_ITEM_SHOW", + "8192": "LINE_TICKET_UPDATED", + "16384": "TIMELINE_STORY_UPDATED", + "32768": "SMARTCH_UPDATED", + "65536": "AVATAR_UPDATED", + "131072": "HOME_NOTIFICATION_ITEM_EXIST", + "262144": "TIMELINE_REBOOT_COMPLETED", + "524288": "TIMELINE_GUIDE_STORY_UPDATED", + "1048576": "TIMELINE_F2F_COMPLETED", + "2097152": "VOOM_LIVE_STATE_CHANGED", + "4194304": "VOOM_ACTIVITY_REWARD_ITEM_EXIST", + }, + "NotificationType": { + "1": "APPLE_APNS", + "2": "GOOGLE_C2DM", + "3": "NHN_NNI", + "4": "SKT_AOM", + "5": "MS_MPNS", + "6": "RIM_BIS", + "7": "GOOGLE_GCM", + "8": "NOKIA_NNAPI", + "9": "TIZEN", + "10": "MOZILLA_SIMPLE", + "17": "LINE_BOT", + "18": "LINE_WAP", + "19": "APPLE_APNS_VOIP", + "20": "MS_WNS", + "21": "GOOGLE_FCM", + "22": "CLOVA", + "23": "CLOVA_VOIP", + "24": "HUAWEI_HCM", + }, + "Ob1_B0": { + "0": "FOREGROUND", + "1": "BACKGROUND", + }, + "Ob1_C1": { + "0": "NORMAL", + "1": "BIG", + }, + "Ob1_D0": { + "0": "PURCHASE_ONLY", + "1": "PURCHASE_OR_SUBSCRIPTION", + "2": "SUBSCRIPTION_ONLY", + }, + "Ob1_EnumC12607a1": { + "1": "DEFAULT", + "2": "VIEW_VIDEO", + }, + "Ob1_EnumC12610b1": { + "0": "NONE", + "2": "BUDDY", + "3": "INSTALL", + "4": "MISSION", + "5": "MUSTBUY", + }, + "Ob1_EnumC12631i1": { + "0": "UNKNOWN", + "1": "PRODUCT", + "2": "USER", + "3": "PREMIUM_USER", + }, + "Ob1_EnumC12638l": { + "0": "VALID", + "1": "INVALID", + }, + "Ob1_EnumC12641m": { + "1": "PREMIUM", + "2": "VERIFIED", + "3": "UNVERIFIED", + }, + "Ob1_EnumC12652p1": { + "0": "UNKNOWN", + "1": "NONE", + "16641": "ILLEGAL_ARGUMENT", + "16642": "NOT_FOUND", + "16643": "NOT_AVAILABLE", + "16644": "NOT_PAID_PRODUCT", + "16645": "NOT_FREE_PRODUCT", + "16646": "ALREADY_OWNED", + "16647": "ERROR_WITH_CUSTOM_MESSAGE", + "16648": "NOT_AVAILABLE_TO_RECIPIENT", + "16649": "NOT_AVAILABLE_FOR_CHANNEL_ID", + "16650": "NOT_SALE_FOR_COUNTRY", + "16651": "NOT_SALES_PERIOD", + "16652": "NOT_SALE_FOR_DEVICE", + "16653": "NOT_SALE_FOR_VERSION", + "16654": "ALREADY_EXPIRED", + "16655": "LIMIT_EXCEEDED", + "16656": "MISSING_CAPABILITY", + "16897": "AUTHENTICATION_FAILED", + "17153": "BALANCE_SHORTAGE", + "20737": "INTERNAL_SERVER_ERROR", + "20738": "SERVICE_IN_MAINTENANCE_MODE", + "20739": "SERVICE_UNAVAILABLE", + }, + "Ob1_EnumC12656r0": { + "0": "OK", + "1": "PRODUCT_UNSUPPORTED", + "2": "TEXT_NOT_SPECIFIED", + "3": "TEXT_STYLE_UNAVAILABLE", + "4": "CHARACTER_COUNT_LIMIT_EXCEEDED", + "5": "CONTAINS_INVALID_WORD", + }, + "Ob1_EnumC12664u": { + "0": "UNKNOWN", + "1": "NONE", + "16641": "ILLEGAL_ARGUMENT", + "16642": "NOT_FOUND", + "16643": "NOT_AVAILABLE", + "16644": "MAX_AMOUNT_OF_PRODUCTS_REACHED", + "16645": "PRODUCT_IS_NOT_PREMIUM", + "16646": "PRODUCT_IS_NOT_AVAILABLE_FOR_USER", + "16897": "AUTHENTICATION_FAILED", + "20737": "INTERNAL_SERVER_ERROR", + "20739": "SERVICE_UNAVAILABLE", + }, + "Ob1_EnumC12666u1": { + "0": "POPULAR", + "1": "NEW_RELEASE", + "2": "EVENT", + "3": "RECOMMENDED", + "4": "POPULAR_WEEKLY", + "5": "POPULAR_MONTHLY", + "6": "POPULAR_RECENTLY_PUBLISHED", + "7": "BUDDY", + "8": "EXTRA_EVENT", + "9": "BROWSING_HISTORY", + "10": "POPULAR_TOTAL_SALES", + "11": "NEW_SUBSCRIPTION", + "12": "POPULAR_SUBSCRIPTION_30D", + "13": "CPD_STICKER", + "14": "POPULAR_WITH_FREE", + }, + "Ob1_F1": { + "1": "STATIC", + "2": "ANIMATION", + }, + "Ob1_I": { + "0": "STATIC", + "1": "POPULAR", + "2": "NEW_RELEASE", + }, + "Ob1_J0": { + "0": "ON_SALE", + "1": "OUTDATED_VERSION", + "2": "NOT_ON_SALE", + }, + "Ob1_J1": { + "0": "OK", + "1": "INVALID_PARAMETER", + "2": "NOT_FOUND", + "3": "NOT_SUPPORTED", + "4": "CONFLICT", + "5": "NOT_ELIGIBLE", + }, + "Ob1_K1": { + "0": "GOOGLE", + "1": "APPLE", + "2": "WEBSTORE", + "3": "LINEMO", + "4": "LINE_MUSIC", + "5": "LYP", + "6": "TW_CHT", + "7": "FREEMIUM", + }, + "Ob1_M1": { + "0": "OK", + "1": "UNKNOWN", + "2": "NOT_SUPPORTED", + "3": "NO_SUBSCRIPTION", + "4": "SUBSCRIPTION_EXISTS", + "5": "NOT_AVAILABLE", + "6": "CONFLICT", + "7": "OUTDATED_VERSION", + "8": "NO_STUDENT_INFORMATION", + "9": "ACCOUNT_HOLD", + "10": "RETRY_STATE", + }, + "Ob1_O0": { + "1": "STICKER", + "2": "THEME", + "3": "STICON", + }, + "Ob1_O1": { + "0": "AVAILABLE", + "1": "DIFFERENT_STORE", + "2": "NOT_STUDENT", + "3": "ALREADY_PURCHASED", + }, + "Ob1_P1": { + "1": "GENERAL", + "2": "STUDENT", + }, + "Ob1_Q1": { + "1": "BASIC", + "2": "DELUXE", + }, + "Ob1_R1": { + "1": "MONTHLY", + "2": "YEARLY", + }, + "Ob1_U1": { + "0": "OK", + "1": "UNKNOWN", + "2": "NO_SUBSCRIPTION", + "3": "EXISTS", + "4": "NOT_FOUND", + "5": "EXCEEDS_LIMIT", + "6": "NOT_AVAILABLE", + }, + "Ob1_V1": { + "1": "DATE_ASC", + "2": "DATE_DESC", + }, + "Ob1_X1": { + "0": "GENERAL", + "1": "CREATORS", + "2": "STICON", + }, + "Ob1_a2": { + "0": "NOT_PURCHASED", + "1": "SUBSCRIPTION", + "2": "NOT_SUBSCRIBED", + "3": "NOT_ACCEPTED", + "4": "NOT_PURCHASED_U2I", + "5": "BUDDY", + }, + "Ob1_c2": { + "1": "STATIC", + "2": "ANIMATION", + }, + "OpType": { + "0": "END_OF_OPERATION", + "1": "UPDATE_PROFILE", + "2": "NOTIFIED_UPDATE_PROFILE", + "3": "REGISTER_USERID", + "4": "ADD_CONTACT", + "5": "NOTIFIED_ADD_CONTACT", + "6": "BLOCK_CONTACT", + "7": "UNBLOCK_CONTACT", + "8": "NOTIFIED_RECOMMEND_CONTACT", + "9": "CREATE_GROUP", + "10": "UPDATE_GROUP", + "11": "NOTIFIED_UPDATE_GROUP", + "12": "INVITE_INTO_GROUP", + "13": "NOTIFIED_INVITE_INTO_GROUP", + "14": "LEAVE_GROUP", + "15": "NOTIFIED_LEAVE_GROUP", + "16": "ACCEPT_GROUP_INVITATION", + "17": "NOTIFIED_ACCEPT_GROUP_INVITATION", + "18": "KICKOUT_FROM_GROUP", + "19": "NOTIFIED_KICKOUT_FROM_GROUP", + "20": "CREATE_ROOM", + "21": "INVITE_INTO_ROOM", + "22": "NOTIFIED_INVITE_INTO_ROOM", + "23": "LEAVE_ROOM", + "24": "NOTIFIED_LEAVE_ROOM", + "25": "SEND_MESSAGE", + "26": "RECEIVE_MESSAGE", + "27": "SEND_MESSAGE_RECEIPT", + "28": "RECEIVE_MESSAGE_RECEIPT", + "29": "SEND_CONTENT_RECEIPT", + "30": "RECEIVE_ANNOUNCEMENT", + "31": "CANCEL_INVITATION_GROUP", + "32": "NOTIFIED_CANCEL_INVITATION_GROUP", + "33": "NOTIFIED_UNREGISTER_USER", + "34": "REJECT_GROUP_INVITATION", + "35": "NOTIFIED_REJECT_GROUP_INVITATION", + "36": "UPDATE_SETTINGS", + "37": "NOTIFIED_REGISTER_USER", + "38": "INVITE_VIA_EMAIL", + "39": "NOTIFIED_REQUEST_RECOVERY", + "40": "SEND_CHAT_CHECKED", + "41": "SEND_CHAT_REMOVED", + "42": "NOTIFIED_FORCE_SYNC", + "43": "SEND_CONTENT", + "44": "SEND_MESSAGE_MYHOME", + "45": "NOTIFIED_UPDATE_CONTENT_PREVIEW", + "46": "REMOVE_ALL_MESSAGES", + "47": "NOTIFIED_UPDATE_PURCHASES", + "48": "DUMMY", + "49": "UPDATE_CONTACT", + "50": "NOTIFIED_RECEIVED_CALL", + "51": "CANCEL_CALL", + "52": "NOTIFIED_REDIRECT", + "53": "NOTIFIED_CHANNEL_SYNC", + "54": "FAILED_SEND_MESSAGE", + "55": "NOTIFIED_READ_MESSAGE", + "56": "FAILED_EMAIL_CONFIRMATION", + "58": "NOTIFIED_CHAT_CONTENT", + "59": "NOTIFIED_PUSH_NOTICENTER_ITEM", + "60": "NOTIFIED_JOIN_CHAT", + "61": "NOTIFIED_LEAVE_CHAT", + "62": "NOTIFIED_TYPING", + "63": "FRIEND_REQUEST_ACCEPTED", + "64": "DESTROY_MESSAGE", + "65": "NOTIFIED_DESTROY_MESSAGE", + "66": "UPDATE_PUBLICKEYCHAIN", + "67": "NOTIFIED_UPDATE_PUBLICKEYCHAIN", + "68": "NOTIFIED_BLOCK_CONTACT", + "69": "NOTIFIED_UNBLOCK_CONTACT", + "70": "UPDATE_GROUPPREFERENCE", + "71": "NOTIFIED_PAYMENT_EVENT", + "72": "REGISTER_E2EE_PUBLICKEY", + "73": "NOTIFIED_E2EE_KEY_EXCHANGE_REQ", + "74": "NOTIFIED_E2EE_KEY_EXCHANGE_RESP", + "75": "NOTIFIED_E2EE_MESSAGE_RESEND_REQ", + "76": "NOTIFIED_E2EE_MESSAGE_RESEND_RESP", + "77": "NOTIFIED_E2EE_KEY_UPDATE", + "78": "NOTIFIED_BUDDY_UPDATE_PROFILE", + "79": "NOTIFIED_UPDATE_LINEAT_TABS", + "80": "UPDATE_ROOM", + "81": "NOTIFIED_BEACON_DETECTED", + "82": "UPDATE_EXTENDED_PROFILE", + "83": "ADD_FOLLOW", + "84": "NOTIFIED_ADD_FOLLOW", + "85": "DELETE_FOLLOW", + "86": "NOTIFIED_DELETE_FOLLOW", + "87": "UPDATE_TIMELINE_SETTINGS", + "88": "NOTIFIED_FRIEND_REQUEST", + "89": "UPDATE_RINGBACK_TONE", + "90": "NOTIFIED_POSTBACK", + "91": "RECEIVE_READ_WATERMARK", + "92": "NOTIFIED_MESSAGE_DELIVERED", + "93": "NOTIFIED_UPDATE_CHAT_BAR", + "94": "NOTIFIED_CHATAPP_INSTALLED", + "95": "NOTIFIED_CHATAPP_UPDATED", + "96": "NOTIFIED_CHATAPP_NEW_MARK", + "97": "NOTIFIED_CHATAPP_DELETED", + "98": "NOTIFIED_CHATAPP_SYNC", + "99": "NOTIFIED_UPDATE_MESSAGE", + "100": "UPDATE_CHATROOMBGM", + "101": "NOTIFIED_UPDATE_CHATROOMBGM", + "102": "UPDATE_RINGTONE", + "118": "UPDATE_USER_SETTINGS", + "119": "NOTIFIED_UPDATE_STATUS_BAR", + "120": "CREATE_CHAT", + "121": "UPDATE_CHAT", + "122": "NOTIFIED_UPDATE_CHAT", + "123": "INVITE_INTO_CHAT", + "124": "NOTIFIED_INVITE_INTO_CHAT", + "125": "CANCEL_CHAT_INVITATION", + "126": "NOTIFIED_CANCEL_CHAT_INVITATION", + "127": "DELETE_SELF_FROM_CHAT", + "128": "NOTIFIED_DELETE_SELF_FROM_CHAT", + "129": "ACCEPT_CHAT_INVITATION", + "130": "NOTIFIED_ACCEPT_CHAT_INVITATION", + "131": "REJECT_CHAT_INVITATION", + "132": "DELETE_OTHER_FROM_CHAT", + "133": "NOTIFIED_DELETE_OTHER_FROM_CHAT", + "134": "NOTIFIED_CONTACT_CALENDAR_EVENT", + "135": "NOTIFIED_CONTACT_CALENDAR_EVENT_ALL", + "136": "UPDATE_THINGS_OPERATIONS", + "137": "SEND_CHAT_HIDDEN", + "138": "CHAT_META_SYNC_ALL", + "139": "SEND_REACTION", + "140": "NOTIFIED_SEND_REACTION", + "141": "NOTIFIED_UPDATE_PROFILE_CONTENT", + "142": "FAILED_DELIVERY_MESSAGE", + "143": "SEND_ENCRYPTED_E2EE_KEY_REQUESTED", + "144": "CHANNEL_PAAK_AUTHENTICATION_REQUESTED", + "145": "UPDATE_PIN_STATE", + "146": "NOTIFIED_PREMIUMBACKUP_STATE_CHANGED", + "147": "CREATE_MULTI_PROFILE", + "148": "MULTI_PROFILE_STATUS_CHANGED", + "149": "DELETE_MULTI_PROFILE", + "150": "UPDATE_PROFILE_MAPPING", + "151": "DELETE_PROFILE_MAPPING", + "152": "NOTIFIED_DESTROY_NOTICENTER_PUSH", + }, + "P70_g": { + "1000": "INVALID_REQUEST", + "1001": "RETRY_REQUIRED", + }, + "PaidCallType": { + "0": "OUT", + "1": "IN", + "2": "TOLLFREE", + "3": "RECORD", + "4": "AD", + "5": "CS", + "6": "OA", + "7": "OAM", + }, + "PayloadType": { + "101": "PAYLOAD_BUY", + "111": "PAYLOAD_CS", + "121": "PAYLOAD_BONUS", + "131": "PAYLOAD_EVENT", + "141": "PAYLOAD_POINT_AUTO_EXCHANGED", + "151": "PAYLOAD_POINT_MANUAL_EXCHANGED", + }, + "Pb1_A0": { + "0": "NORMAL", + "1": "VIDEOCAM", + "2": "VOIP", + "3": "RECORD", + }, + "Pb1_A3": { + "0": "UNKNOWN", + "1": "BACKGROUND_NEW_KEY_CREATED", + "2": "BACKGROUND_PERIODICAL_VERIFICATION", + "3": "FOREGROUND_NEW_PIN_REGISTERED", + "4": "FOREGROUND_VERIFICATION", + }, + "Pb1_B": { + "1": "SIRI", + "2": "GOOGLE_ASSISTANT", + "3": "OS_SHARE", + }, + "Pb1_D0": { + "0": "RICH_MENU_ID", + "1": "STATUS_BAR", + "2": "BUDDY_CAUTION_NOTICE", + }, + "Pb1_D4": { + "1": "AUDIO", + "2": "VIDEO", + "3": "FACEPLAY", + }, + "Pb1_D6": { + "0": "GOOGLE", + "1": "BAIDU", + "2": "FOURSQUARE", + "3": "YAHOOJAPAN", + "4": "KINGWAY", + }, + "Pb1_E7": { + "0": "UNKNOWN", + "1": "TALK", + "2": "SQUARE", + }, + "Pb1_EnumC12917a6": { + "0": "UNKNOWN", + "1": "APP_FOREGROUND", + "2": "PERIODIC", + "3": "MANUAL", + }, + "Pb1_EnumC12926b1": { + "0": "NOT_A_FRIEND", + "1": "ALWAYS", + }, + "Pb1_EnumC12941c2": { + "26": "BLE_LCS_API_USABLE", + "27": "PROHIBIT_MINIMIZE_CHANNEL_BROWSER", + "28": "ALLOW_IOS_WEBKIT", + "38": "PURCHASE_LCS_API_USABLE", + "48": "ALLOW_ANDROID_ENABLE_ZOOM", + }, + "Pb1_EnumC12945c6": { + "1": "V1", + "2": "V2", + }, + "Pb1_EnumC12970e3": { + "1": "USER_AGE_CHECKED", + "2": "USER_APPROVAL_REQUIRED", + }, + "Pb1_EnumC12997g2": { + "0": "PROFILE", + "1": "FRIENDS", + "2": "GROUP", + }, + "Pb1_EnumC12998g3": { + "0": "UNKNOWN", + "1": "WIFI", + "2": "CELLULAR_NETWORK", + }, + "Pb1_EnumC13009h0": { + "1": "NORMAL", + "2": "LOW_BATTERY", + }, + "Pb1_EnumC13010h1": { + "1": "NEW", + "2": "PLANET", + }, + "Pb1_EnumC13015h6": { + "0": "FORWARD", + "1": "AUTO_REPLY", + "2": "SUBORDINATE", + "3": "REPLY", + }, + "Pb1_EnumC13022i": { + "0": "SKIP", + "1": "PINCODE", + "2": "SECURITY_CENTER", + }, + "Pb1_EnumC13029i6": { + "0": "ADD", + "1": "REMOVE", + "2": "MODIFY", + }, + "Pb1_EnumC13037j0": { + "0": "UNSPECIFIED", + "1": "INACTIVE", + "2": "ACTIVE", + "3": "DELETED", + }, + "Pb1_EnumC13050k": { + "0": "UNKNOWN", + "1": "IOS_REDUCED_ACCURACY", + "2": "IOS_FULL_ACCURACY", + "3": "AOS_PRECISE_LOCATION", + "4": "AOS_APPROXIMATE_LOCATION", + }, + "Pb1_EnumC13082m3": { + "0": "SHOW", + "1": "HIDE", + }, + "Pb1_EnumC13093n0": { + "0": "NONE", + "1": "TOP", + }, + "Pb1_EnumC13127p6": { + "0": "NORMAL", + "1": "ALERT_DISABLED", + "2": "ALWAYS", + }, + "Pb1_EnumC13128p7": { + "0": "UNKNOWN", + "1": "DIRECT_INVITATION", + "2": "DIRECT_CHAT", + "3": "GROUP_INVITATION", + "4": "GROUP_CHAT", + "5": "ROOM_INVITATION", + "6": "ROOM_CHAT", + "7": "FRIEND_PROFILE", + "8": "DIRECT_CHAT_SELECTED", + "9": "GROUP_CHAT_SELECTED", + "10": "ROOM_CHAT_SELECTED", + "11": "DEPRECATED", + }, + "Pb1_EnumC13148r0": { + "1": "ALWAYS_HIDDEN", + "2": "ALWAYS_SHOWN", + "3": "SHOWN_BY_CONDITION", + }, + "Pb1_EnumC13151r3": { + "0": "ONEWAY", + "1": "BOTH", + "2": "NOT_REGISTERED", + }, + "Pb1_EnumC13162s0": { + "1": "NOT_SUSPICIOUS", + "2": "SUSPICIOUS_00", + "3": "SUSPICIOUS_01", + }, + "Pb1_EnumC13196u6": { + "0": "COIN", + "1": "CREDIT", + "2": "MONTHLY", + "3": "OAM", + }, + "Pb1_EnumC13209v5": { + "0": "DUMMY", + "1": "NOTICE", + "2": "MORETAB", + "3": "STICKERSHOP", + "4": "CHANNEL", + "5": "DENY_KEYWORD", + "6": "CONNECTIONINFO", + "7": "BUDDY", + "8": "TIMELINEINFO", + "9": "THEMESHOP", + "10": "CALLRATE", + "11": "CONFIGURATION", + "12": "STICONSHOP", + "13": "SUGGESTDICTIONARY", + "14": "SUGGESTSETTINGS", + "15": "USERSETTINGS", + "16": "ANALYTICSINFO", + "17": "SEARCHPOPULARKEYWORD", + "18": "SEARCHNOTICE", + "19": "TIMELINE", + "20": "SEARCHPOPULARCATEGORY", + "21": "EXTENDEDPROFILE", + "22": "SEASONALMARKETING", + "23": "NEWSTAB", + "24": "SUGGESTDICTIONARYV2", + "25": "CHATAPPSYNC", + "26": "AGREEMENTS", + "27": "INSTANTNEWS", + "28": "EMOJI_MAPPING", + "29": "SEARCHBARKEYWORDS", + "30": "SHOPPING", + "31": "CHAT_EFFECT_BACKGROUND", + "32": "CHAT_EFFECT_KEYWORD", + "33": "SEARCHINDEX", + "34": "HUBTAB", + "35": "PAY_RULE_UPDATED", + "36": "SMARTCH", + "37": "HOME_SERVICE_LIST", + "38": "TIMELINESTORY", + "39": "WALLET_TAB", + "40": "POD_TAB", + "41": "HOME_SAFETY_CHECK", + "42": "HOME_SEASONAL_EFFECT", + "43": "OPENCHAT_MAIN", + "44": "CHAT_EFFECT_CONTENT_METADATA_TAG", + "45": "VOOM_LIVE_STATE_CHANGED", + "46": "PROFILE_STUDIO_N_BADGE", + "47": "LYP_FONT", + "48": "TIMELINESTORY_OA", + "49": "TRAVEL", + }, + "Pb1_EnumC13221w3": { + "0": "UNKNOWN", + "1": "EUROPEAN_ECONOMIC_AREA", + }, + "Pb1_EnumC13222w4": { + "1": "OBS_VIDEO", + "2": "OBS_GENERAL", + "3": "OBS_RINGBACK_TONE", + }, + "Pb1_EnumC13237x5": { + "1": "AUDIO", + "2": "VIDEO", + "3": "LIVE", + "4": "PHOTOBOOTH", + }, + "Pb1_EnumC13238x6": { + "0": "NOT_SPECIFIED", + "1": "VALID", + "2": "VERIFICATION_REQUIRED", + "3": "NOT_PERMITTED", + "4": "LIMIT_EXCEEDED", + "5": "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED", + }, + "Pb1_EnumC13251y5": { + "1": "STANDARD", + "2": "CONSTELLA", + }, + "Pb1_EnumC13252y6": { + "0": "ALL", + "1": "PROFILE", + "2": "SETTINGS", + "3": "CONFIGURATIONS", + "4": "CONTACT", + "5": "GROUP", + "6": "E2EE", + "7": "MESSAGE", + }, + "Pb1_EnumC13260z0": { + "0": "ON_AIR", + "1": "LIVE", + "2": "GLP", + }, + "Pb1_EnumC13267z7": { + "1": "NOTIFICATION_SETTING", + "255": "ALL", + }, + "Pb1_F0": { + "0": "NA", + "1": "FRIEND_VIEW", + "2": "OFFICIAL_ACCOUNT_VIEW", + }, + "Pb1_F4": { + "1": "INCOMING", + "2": "OUTGOING", + }, + "Pb1_F5": { + "0": "UNKNOWN", + "1": "SUCCESS", + "2": "REQUIRE_SERVER_SIDE_EMAIL", + "3": "REQUIRE_CLIENT_SIDE_EMAIL", + }, + "Pb1_F6": { + "0": "JBU", + "1": "LIP", + }, + "Pb1_G3": { + "1": "PROMOTION_FRIENDS_INVITE", + "2": "CAPABILITY_SERVER_SIDE_SMS", + "3": "LINE_CLIENT_ANALYTICS_CONFIGURATION", + }, + "Pb1_G4": { + "1": "TIMELINE", + "2": "NEARBY", + "3": "SQUARE", + }, + "Pb1_G6": { + "2": "NICE", + "3": "LOVE", + "4": "FUN", + "5": "AMAZING", + "6": "SAD", + "7": "OMG", + }, + "Pb1_H6": { + "0": "PUBLIC", + "1": "PRIVATE", + }, + "Pb1_I6": { + "0": "NEVER_SHOW", + "1": "ONE_WAY", + "2": "MUTUAL", + }, + "Pb1_J4": { + "0": "OTHER", + "1": "INITIALIZATION", + "2": "PERIODIC_SYNC", + "3": "MANUAL_SYNC", + "4": "LOCAL_DB_CORRUPTED", + }, + "Pb1_K2": { + "1": "CHANNEL_INFO", + "2": "CHANNEL_TOKEN", + "4": "COMMON_DOMAIN", + "255": "ALL", + }, + "Pb1_K6": { + "1": "EMAIL", + "2": "DISPLAY_NAME", + "4": "PHONETIC_NAME", + "8": "PICTURE", + "16": "STATUS_MESSAGE", + "32": "ALLOW_SEARCH_BY_USERID", + "64": "ALLOW_SEARCH_BY_EMAIL", + "128": "BUDDY_STATUS", + "256": "MUSIC_PROFILE", + "512": "AVATAR_PROFILE", + "2147483647": "ALL", + }, + "Pb1_L2": { + "0": "SYNC", + "1": "REMOVE", + "2": "REMOVE_ALL", + }, + "Pb1_L4": { + "0": "UNKNOWN", + "1": "REVISION_GAP_TOO_LARGE_CLIENT", + "2": "REVISION_GAP_TOO_LARGE_SERVER", + "3": "OPERATION_EXPIRED", + "4": "REVISION_HOLE", + "5": "FORCE_TRIGGERED", + }, + "Pb1_M6": { + "0": "OWNER", + "1": "FRIEND", + }, + "Pb1_N6": { + "1": "NFT", + "2": "AVATAR", + "3": "SNOW", + "4": "ARCZ", + "5": "FRENZ", + }, + "Pb1_O2": { + "1": "NAME", + "2": "PICTURE_STATUS", + "4": "PREVENTED_JOIN_BY_TICKET", + "8": "NOTIFICATION_SETTING", + "16": "INVITATION_TICKET", + "32": "FAVORITE_TIMESTAMP", + "64": "CHAT_TYPE", + }, + "Pb1_O6": { + "1": "DEFAULT", + "2": "MULTI_PROFILE", + }, + "Pb1_P6": { + "0": "HIDDEN", + "1000": "PUBLIC", + }, + "Pb1_Q2": { + "0": "BACKGROUND", + "1": "KEYWORD", + "2": "CONTENT_METADATA_TAG_BASED", + }, + "Pb1_R3": { + "1": "BEACON_AGREEMENT", + "2": "BLUETOOTH", + "3": "SHAKE_AGREEMENT", + "4": "AUTO_SUGGEST", + "5": "CHATROOM_CAPTURE", + "6": "CHATROOM_MINIMIZEBROWSER", + "7": "CHATROOM_MOBILESAFARI", + "8": "VIDEO_HIGHTLIGHT_WIZARD", + "9": "CHAT_FOLDER", + "10": "BLUETOOTH_SCAN", + "11": "AUTO_SUGGEST_FOLLOW_UP", + }, + "Pb1_S7": { + "1": "NONE", + "2": "ALL", + }, + "Pb1_T3": { + "1": "LOCATION_OS", + "2": "LOCATION_APP", + "3": "VIDEO_AUTO_PLAY", + "4": "HNI", + "5": "AUTO_SUGGEST_LANG", + "6": "CHAT_EFFECT_CACHED_CONTENT_LIST", + "7": "IFA", + "8": "ACCURACY_MODE", + }, + "Pb1_T7": { + "0": "SYNC", + "1": "REPORT", + }, + "Pb1_V7": { + "0": "UNSPECIFIED", + "1": "UNKNOWN", + "2": "INITIALIZATION", + "3": "OPERATION", + "4": "FULL_SYNC", + "5": "AUTO_REPAIR", + "6": "MANUAL_REPAIR", + "7": "INTERNAL", + "8": "USER_INITIATED", + }, + "Pb1_W2": { + "0": "ANYONE_IN_CHAT", + "1": "CREATOR_ONLY", + "2": "NO_ONE", + }, + "Pb1_W3": { + "0": "ILLEGAL_ARGUMENT", + "1": "AUTHENTICATION_FAILED", + "2": "INTERNAL_ERROR", + "3": "RESTORE_KEY_FIRST", + "4": "NO_BACKUP", + "6": "INVALID_PIN", + "7": "PERMANENTLY_LOCKED", + "8": "INVALID_PASSWORD", + "9": "MASTER_KEY_CONFLICT", + }, + "Pb1_X1": { + "0": "MESSAGE", + "1": "MESSAGE_NOTIFICATION", + "2": "NOTIFICATION_CENTER", + }, + "Pb1_X2": { + "0": "MESSAGE", + "1": "NOTE", + "2": "CHANNEL", + }, + "Pb1_Z2": { + "0": "GROUP", + "1": "ROOM", + "2": "PEER", + }, + "Pb1_gd": { + "1": "OVER", + "2": "UNDER", + "3": "UNDEFINED", + }, + "Pb1_od": { + "0": "UNKNOWN", + "1": "LOCATION", + }, + "PointErrorCode": { + "3001": "REQUEST_DUPLICATION", + "3002": "INVALID_PARAMETER", + "3003": "NOT_ENOUGH_BALANCE", + "3004": "AUTHENTICATION_FAIL", + "3005": "API_ACCESS_FORBIDDEN", + "3006": "MEMBER_ACCOUNT_NOT_FOUND", + "3007": "SERVICE_ACCOUNT_NOT_FOUND", + "3008": "TRANSACTION_NOT_FOUND", + "3009": "ALREADY_REVERSED_TRANSACTION", + "3010": "MESSAGE_NOT_READABLE", + "3011": "HTTP_REQUEST_METHOD_NOT_SUPPORTED", + "3012": "HTTP_MEDIA_TYPE_NOT_SUPPORTED", + "3013": "NOT_ALLOWED_TO_DEPOSIT", + "3014": "NOT_ALLOWED_TO_PAY", + "3015": "TRANSACTION_ACCESS_FORBIDDEN", + "4001": "INVALID_SERVICE_CONFIGURATION", + "5004": "DCS_COMMUNICATION_FAIL", + "5007": "UPDATE_BALANCE_FAIL", + "5888": "SYSTEM_MAINTENANCE", + "5999": "SYSTEM_ERROR", + }, + "Q70_q": { + "0": "UNKNOWN", + "1": "FACEBOOK", + "2": "APPLE", + "3": "GOOGLE", + }, + "Q70_r": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "4": "RETRY_LATER", + "5": "HUMAN_VERIFICATION_REQUIRED", + "101": "APP_UPGRADE_REQUIRED", + }, + "Qj_EnumC13584a": { + "0": "NOT_DETERMINED", + "1": "RESTRICTED", + "2": "DENIED", + "3": "AUTHORIZED", + }, + "Qj_EnumC13585b": { + "1": "WHITE", + "2": "BLACK", + }, + "Qj_EnumC13588e": { + "1": "LIGHT", + "2": "DARK", + }, + "Qj_EnumC13592i": { + "0": "ILLEGAL_ARGUMENT", + "1": "INTERNAL_ERROR", + "2": "CONNECTION_ERROR", + "3": "AUTHENTICATION_FAILED", + "4": "NEED_PERMISSION_APPROVAL", + "5": "COIN_NOT_USABLE", + "6": "WEBVIEW_NOT_ALLOWED", + }, + "Qj_EnumC13597n": { + "1": "INVALID_REQUEST", + "2": "UNAUTHORIZED", + "3": "CONSENT_REQUIRED", + "4": "VERSION_UPDATE_REQUIRED", + "5": "COMPREHENSIVE_AGREEMENT_REQUIRED", + "6": "SPLASH_SCREEN_REQUIRED", + "7": "PERMANENT_LINK_INVALID_REQUEST", + "8": "NO_DESTINATION_URL", + "9": "SERVICE_ALREADY_TERMINATED", + "100": "SERVER_ERROR", + }, + "Qj_EnumC13604v": { + "1": "GEOLOCATION", + "2": "ADVERTISING_ID", + "3": "BLUETOOTH_LE", + "4": "QR_CODE", + "5": "ADVERTISING_SDK", + "6": "ADD_TO_HOME", + "7": "SHARE_TARGET_MESSAGE", + "8": "VIDEO_AUTO_PLAY", + "9": "PROFILE_PLUS", + "10": "SUBWINDOW_OPEN", + "11": "SUBWINDOW_COMMON_MODULE", + "12": "NO_LIFF_REFERRER", + "13": "SKIP_CHANNEL_VERIFICATION_SCREEN", + "14": "PROVIDER_PAGE", + "15": "BASIC_AUTH", + "16": "SIRI_DONATION", + }, + "Qj_EnumC13605w": { + "1": "ALLOW_DIRECT_LINK", + "2": "ALLOW_DIRECT_LINK_V2", + }, + "Qj_EnumC13606x": { + "1": "LIGHT", + "2": "LIGHT_TRANSLUCENT", + "3": "DARK_TRANSLUCENT", + "4": "LIGHT_ICON", + "5": "DARK_ICON", + }, + "Qj_a0": { + "1": "CONCAT", + "2": "REPLACE", + }, + "Qj_e0": { + "0": "SUCCESS", + "1": "FAILURE", + "2": "CANCEL", + }, + "Qj_h0": { + "1": "RIGHT", + "2": "LEFT", + }, + "Qj_i0": { + "1": "FULL", + "2": "TALL", + "3": "COMPACT", + }, + "R70_e": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "EXTERNAL_SERVICE_UNAVAILABLE", + "4": "RETRY_LATER", + "100": "INVALID_CONTEXT", + "101": "NOT_SUPPORTED", + "102": "FORBIDDEN", + "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR", + }, + "RegistrationType": { + "0": "PHONE", + "1": "EMAIL_WAP", + "2305": "FACEBOOK", + "2306": "SINA", + "2307": "RENREN", + "2308": "FEIXIN", + "2309": "APPLE", + "2310": "YAHOOJAPAN", + "2311": "GOOGLE", + }, + "ReportType": { + "1": "ADVERTISING", + "2": "GENDER_HARASSMENT", + "3": "HARASSMENT", + "4": "OTHER", + "5": "IRRELEVANT_CONTENT", + "6": "IMPERSONATION", + "7": "SCAM", + }, + "S70_a": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "RETRY_LATER", + "100": "INVALID_CONTEXT", + "101": "APP_UPGRADE_REQUIRED", + }, + "SettingsAttributeEx": { + "0": "NOTIFICATION_ENABLE", + "1": "NOTIFICATION_MUTE_EXPIRATION", + "2": "NOTIFICATION_NEW_MESSAGE", + "3": "NOTIFICATION_GROUP_INVITATION", + "4": "NOTIFICATION_SHOW_MESSAGE", + "5": "NOTIFICATION_INCOMING_CALL", + "6": "PRIVACY_SYNC_CONTACTS", + "7": "PRIVACY_SEARCH_BY_PHONE_NUMBER", + "8": "NOTIFICATION_SOUND_MESSAGE", + "9": "NOTIFICATION_SOUND_GROUP", + "10": "CONTACT_MY_TICKET", + "11": "IDENTITY_PROVIDER", + "12": "IDENTITY_IDENTIFIER", + "13": "PRIVACY_SEARCH_BY_USERID", + "14": "PRIVACY_SEARCH_BY_EMAIL", + "15": "PREFERENCE_LOCALE", + "16": "NOTIFICATION_DISABLED_WITH_SUB", + "17": "NOTIFICATION_PAYMENT", + "18": "SECURITY_CENTER_SETTINGS", + "19": "SNS_ACCOUNT", + "20": "PHONE_REGISTRATION", + "21": "PRIVACY_ALLOW_SECONDARY_DEVICE_LOGIN", + "22": "CUSTOM_MODE", + "23": "PRIVACY_PROFILE_IMAGE_POST_TO_MYHOME", + "24": "EMAIL_CONFIRMATION_STATUS", + "25": "PRIVACY_RECV_MESSAGES_FROM_NOT_FRIEND", + "26": "PRIVACY_AGREE_USE_LINECOIN_TO_PAIDCALL", + "27": "PRIVACY_AGREE_USE_PAIDCALL", + "28": "ACCOUNT_MIGRATION_PINCODE", + "29": "ENFORCED_INPUT_ACCOUNT_MIGRATION_PINCODE", + "30": "PRIVACY_ALLOW_FRIEND_REQUEST", + "31": "PWLESS_PRIMARY_CREDENTIAL_REGISTRATION", + "32": "ALLOWED_TO_CONNECT_EAP_ACCOUNT", + "33": "E2EE_ENABLE", + "34": "HITOKOTO_BACKUP_REQUESTED", + "35": "PRIVACY_PROFILE_MUSIC_POST_TO_MYHOME", + "36": "CONTACT_ALLOW_FOLLOWING", + "37": "PRIVACY_ALLOW_NEARBY", + "38": "AGREEMENT_NEARBY", + "39": "AGREEMENT_SQUARE", + "40": "NOTIFICATION_MENTION", + "41": "ALLOW_UNREGISTRATION_SECONDARY_DEVICE", + "42": "AGREEMENT_BOT_USE", + "43": "AGREEMENT_SHAKE_FUNCTION", + "44": "AGREEMENT_MOBILE_CONTACT_NAME", + "45": "NOTIFICATION_THUMBNAIL", + "46": "AGREEMENT_SOUND_TO_TEXT", + "47": "AGREEMENT_PRIVACY_POLICY_VERSION", + "48": "AGREEMENT_AD_BY_WEB_ACCESS", + "49": "AGREEMENT_PHONE_NUMBER_MATCHING", + "50": "AGREEMENT_COMMUNICATION_INFO", + "51": "PRIVACY_SHARE_PERSONAL_INFO_TO_FRIENDS", + "52": "AGREEMENT_THINGS_WIRELESS_COMMUNICATION", + "53": "AGREEMENT_GDPR", + "54": "PRIVACY_STATUS_MESSAGE_HISTORY", + "55": "AGREEMENT_PROVIDE_LOCATION", + "56": "AGREEMENT_BEACON", + "57": "PRIVACY_PROFILE_HISTORY", + "58": "AGREEMENT_CONTENTS_SUGGEST", + "59": "AGREEMENT_CONTENTS_SUGGEST_DATA_COLLECTION", + "60": "PRIVACY_AGE_RESULT", + "61": "PRIVACY_AGE_RESULT_RECEIVED", + "62": "AGREEMENT_OCR_IMAGE_COLLECTION", + "63": "PRIVACY_ALLOW_FOLLOW", + "64": "PRIVACY_SHOW_FOLLOW_LIST", + "65": "NOTIFICATION_BADGE_TALK_ONLY", + "66": "AGREEMENT_ICNA", + "67": "NOTIFICATION_REACTION", + "68": "AGREEMENT_MID", + "69": "HOME_NOTIFICATION_NEW_FRIEND", + "70": "HOME_NOTIFICATION_FAVORITE_FRIEND_UPDATE", + "71": "HOME_NOTIFICATION_GROUP_MEMBER_UPDATE", + "72": "HOME_NOTIFICATION_BIRTHDAY", + "73": "AGREEMENT_LINE_OUT_USE", + "74": "AGREEMENT_LINE_OUT_PROVIDE_INFO", + "75": "NOTIFICATION_SHOW_PROFILE_IMAGE", + "76": "AGREEMENT_PDPA", + "77": "AGREEMENT_LOCATION_VERSION", + "78": "ALLOWED_TO_SHOW_ZHD_PAGE", + "79": "AGREEMENT_SNOW_AI_AVATAR", + "80": "EAP_ONLY_ACCOUNT_TARGET_COUNTRY", + "81": "AGREEMENT_LYP_PREMIUM_ALBUM", + "82": "AGREEMENT_LYP_PREMIUM_ALBUM_VERSION", + "83": "AGREEMENT_ALBUM_USAGE_DATA", + "84": "AGREEMENT_ALBUM_USAGE_DATA_VERSION", + "85": "AGREEMENT_LYP_PREMIUM_BACKUP", + "86": "AGREEMENT_LYP_PREMIUM_BACKUP_VERSION", + "87": "AGREEMENT_OA_AI_ASSISTANT", + "88": "AGREEMENT_OA_AI_ASSISTANT_VERSION", + "89": "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE", + "90": "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE_VERSION", + }, + "SnsIdType": { + "1": "FACEBOOK", + "2": "SINA", + "3": "RENREN", + "4": "FEIXIN", + "5": "BBM", + "6": "APPLE", + "7": "YAHOOJAPAN", + "8": "GOOGLE", + }, + "SpammerReason": { + "0": "OTHER", + "1": "ADVERTISING", + "2": "GENDER_HARASSMENT", + "3": "HARASSMENT", + "4": "IMPERSONATION", + "5": "SCAM", + }, + "SpotCategory": { + "0": "UNKNOWN", + "1": "GOURMET", + "2": "BEAUTY", + "3": "TRAVEL", + "4": "SHOPPING", + "5": "ENTERTAINMENT", + "6": "SPORTS", + "7": "TRANSPORT", + "8": "LIFE", + "9": "HOSPITAL", + "10": "FINANCE", + "11": "EDUCATION", + "12": "OTHER", + "10000": "ALL", + }, + "SquareAttribute": { + "1": "NAME", + "2": "WELCOME_MESSAGE", + "3": "PROFILE_IMAGE", + "4": "DESCRIPTION", + "6": "SEARCHABLE", + "7": "CATEGORY", + "8": "INVITATION_URL", + "9": "ABLE_TO_USE_INVITATION_URL", + "10": "STATE", + "11": "EMBLEMS", + "12": "JOIN_METHOD", + "13": "CHANNEL_ID", + "14": "SVC_TAGS", + }, + "SquareAuthorityAttribute": { + "1": "UPDATE_SQUARE_PROFILE", + "2": "INVITE_NEW_MEMBER", + "3": "APPROVE_JOIN_REQUEST", + "4": "CREATE_POST", + "5": "CREATE_OPEN_SQUARE_CHAT", + "6": "DELETE_SQUARE_CHAT_OR_POST", + "7": "REMOVE_SQUARE_MEMBER", + "8": "GRANT_ROLE", + "9": "ENABLE_INVITATION_TICKET", + "10": "CREATE_CHAT_ANNOUNCEMENT", + "11": "UPDATE_MAX_CHAT_MEMBER_COUNT", + "12": "USE_READONLY_DEFAULT_CHAT", + "13": "SEND_ALL_MENTION", + }, + "SquareChatType": { + "1": "OPEN", + "2": "SECRET", + "3": "ONE_ON_ONE", + "4": "SQUARE_DEFAULT", + }, + "SquareMemberAttribute": { + "1": "DISPLAY_NAME", + "2": "PROFILE_IMAGE", + "3": "ABLE_TO_RECEIVE_MESSAGE", + "5": "MEMBERSHIP_STATE", + "6": "ROLE", + "7": "PREFERENCE", + }, + "SquareMembershipState": { + "1": "JOIN_REQUESTED", + "2": "JOINED", + "3": "REJECTED", + "4": "LEFT", + "5": "KICK_OUT", + "6": "BANNED", + "7": "DELETED", + "8": "JOIN_REQUEST_WITHDREW", + }, + "StickerResourceType": { + "1": "STATIC", + "2": "ANIMATION", + "3": "SOUND", + "4": "ANIMATION_SOUND", + "5": "POPUP", + "6": "POPUP_SOUND", + "7": "NAME_TEXT", + "8": "PER_STICKER_TEXT", + }, + "SyncCategory": { + "0": "PROFILE", + "1": "SETTINGS", + "2": "OPS", + "3": "CONTACT", + "4": "RECOMMEND", + "5": "BLOCK", + "6": "GROUP", + "7": "ROOM", + "8": "NOTIFICATION", + "9": "ADDRESS_BOOK", + }, + "T70_C": { + "0": "INITIAL_BACKUP_STATE_UNSPECIFIED", + "1": "INITIAL_BACKUP_STATE_READY", + "2": "INITIAL_BACKUP_STATE_MESSAGE_ONGOING", + "3": "INITIAL_BACKUP_STATE_FINISHED", + "4": "INITIAL_BACKUP_STATE_ABORTED", + "5": "INITIAL_BACKUP_STATE_MEDIA_ONGOING", + }, + "T70_EnumC14390b": { + "0": "UNKNOWN", + "1": "PHONE_NUMBER", + "2": "EMAIL", + }, + "T70_EnumC14392c": { + "0": "UNKNOWN", + "1": "SKIP", + "2": "PASSWORD", + "3": "WEB_BASED", + "4": "EMAIL_BASED", + "11": "NONE", + }, + "T70_EnumC14406j": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "NOT_FOUND", + "4": "RETRY_LATER", + "5": "HUMAN_VERIFICATION_REQUIRED", + "100": "INVALID_CONTEXT", + "101": "APP_UPGRADE_REQUIRED", + }, + "T70_K": { + "0": "UNKNOWN", + "1": "SMS", + "2": "IVR", + "3": "SMSPULL", + }, + "T70_L": { + "0": "PREMIUM_TYPE_UNSPECIFIED", + "1": "PREMIUM_TYPE_LYP", + "2": "PREMIUM_TYPE_LINE", + }, + "T70_Z0": { + "1": "PHONE_VERIF", + "2": "EAP_VERIF", + }, + "T70_e1": { + "0": "UNKNOWN", + "1": "SKIP", + "2": "WEB_BASED", + }, + "T70_j1": { + "0": "UNKNOWN", + "1": "FACEBOOK", + "2": "APPLE", + "3": "GOOGLE", + }, + "U70_c": { + "0": "INTERNAL_ERROR", + "1": "FORBIDDEN", + "100": "INVALID_CONTEXT", + }, + "Uf_EnumC14873o": { + "1": "ANDROID", + "2": "IOS", + }, + "VR0_l": { + "1": "DEFAULT", + "2": "UEN", + }, + "VerificationMethod": { + "0": "NO_AVAILABLE", + "1": "PIN_VIA_SMS", + "2": "CALLERID_INDIGO", + "4": "PIN_VIA_TTS", + "10": "SKIP", + }, + "VerificationResult": { + "0": "FAILED", + "1": "OK_NOT_REGISTERED_YET", + "2": "OK_REGISTERED_WITH_SAME_DEVICE", + "3": "OK_REGISTERED_WITH_ANOTHER_DEVICE", + }, + "WR0_a": { + "1": "FREE", + "2": "PREMIUM", + }, + "a80_EnumC16644b": { + "0": "UNKNOWN", + "1": "FACEBOOK", + "2": "APPLE", + "3": "GOOGLE", + }, + "FetchDirection": { + "1": "FORWARD", + "2": "BACKWARD", + }, + "LiveTalkEventType": { + "1": "NOTIFIED_UPDATE_LIVE_TALK_TITLE", + "2": "NOTIFIED_UPDATE_LIVE_TALK_ANNOUNCEMENT", + "3": "NOTIFIED_UPDATE_SQUARE_MEMBER_ROLE", + "4": "NOTIFIED_UPDATE_LIVE_TALK_ALLOW_REQUEST_TO_SPEAK", + "5": "NOTIFIED_UPDATE_SQUARE_MEMBER", + }, + "LiveTalkReportType": { + "1": "ADVERTISING", + "2": "GENDER_HARASSMENT", + "3": "HARASSMENT", + "4": "IRRELEVANT_CONTENT", + "5": "OTHER", + "6": "IMPERSONATION", + "7": "SCAM", + }, + "MessageSummaryReportType": { + "1": "LEGAL_VIOLATION", + "2": "HARASSMENT", + "3": "PERSONAL_IDENTIFIER", + "4": "FALSE_INFORMATION", + "5": "GENDER_HARASSMENT", + "6": "OTHER", + }, + "NotificationPostType": { + "2": "POST_MENTION", + "3": "POST_LIKE", + "4": "POST_COMMENT", + "5": "POST_COMMENT_MENTION", + "6": "POST_COMMENT_LIKE", + "7": "POST_RELAY_JOIN", + }, + "SquareEventStatus": { + "1": "NORMAL", + "2": "ALERT_DISABLED", + }, + "SquareEventType": { + "0": "RECEIVE_MESSAGE", + "1": "SEND_MESSAGE", + "2": "NOTIFIED_JOIN_SQUARE_CHAT", + "3": "NOTIFIED_INVITE_INTO_SQUARE_CHAT", + "4": "NOTIFIED_LEAVE_SQUARE_CHAT", + "5": "NOTIFIED_DESTROY_MESSAGE", + "6": "NOTIFIED_MARK_AS_READ", + "7": "NOTIFIED_UPDATE_SQUARE_MEMBER_PROFILE", + "8": "NOTIFIED_UPDATE_SQUARE", + "9": "NOTIFIED_UPDATE_SQUARE_STATUS", + "10": "NOTIFIED_UPDATE_SQUARE_AUTHORITY", + "11": "NOTIFIED_UPDATE_SQUARE_MEMBER", + "12": "NOTIFIED_UPDATE_SQUARE_CHAT", + "13": "NOTIFIED_UPDATE_SQUARE_CHAT_STATUS", + "14": "NOTIFIED_UPDATE_SQUARE_CHAT_MEMBER", + "15": "NOTIFIED_CREATE_SQUARE_MEMBER", + "16": "NOTIFIED_CREATE_SQUARE_CHAT_MEMBER", + "17": "NOTIFIED_UPDATE_SQUARE_MEMBER_RELATION", + "18": "NOTIFIED_SHUTDOWN_SQUARE", + "19": "NOTIFIED_KICKOUT_FROM_SQUARE", + "20": "NOTIFIED_DELETE_SQUARE_CHAT", + "21": "NOTIFICATION_JOIN_REQUEST", + "22": "NOTIFICATION_JOINED", + "23": "NOTIFICATION_PROMOTED_COADMIN", + "24": "NOTIFICATION_PROMOTED_ADMIN", + "25": "NOTIFICATION_DEMOTED_MEMBER", + "26": "NOTIFICATION_KICKED_OUT", + "27": "NOTIFICATION_SQUARE_DELETE", + "28": "NOTIFICATION_SQUARE_CHAT_DELETE", + "29": "NOTIFICATION_MESSAGE", + "30": "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_NAME", + "31": "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_IMAGE", + "32": "NOTIFIED_UPDATE_SQUARE_FEATURE_SET", + "33": "NOTIFIED_ADD_BOT", + "34": "NOTIFIED_REMOVE_BOT", + "36": "NOTIFIED_UPDATE_SQUARE_NOTE_STATUS", + "37": "NOTIFIED_UPDATE_SQUARE_CHAT_ANNOUNCEMENT", + "38": "NOTIFIED_UPDATE_SQUARE_CHAT_MAX_MEMBER_COUNT", + "39": "NOTIFICATION_POST_ANNOUNCEMENT", + "40": "NOTIFICATION_POST", + "41": "MUTATE_MESSAGE", + "42": "NOTIFICATION_NEW_CHAT_MEMBER", + "43": "NOTIFIED_UPDATE_READONLY_CHAT", + "46": "NOTIFIED_UPDATE_MESSAGE_STATUS", + "47": "NOTIFICATION_MESSAGE_REACTION", + "48": "NOTIFIED_CHAT_POPUP", + "49": "NOTIFIED_SYSTEM_MESSAGE", + "50": "NOTIFIED_UPDATE_SQUARE_CHAT_FEATURE_SET", + "51": "NOTIFIED_UPDATE_LIVE_TALK", + "52": "NOTIFICATION_LIVE_TALK", + "53": "NOTIFIED_UPDATE_LIVE_TALK_INFO", + "54": "NOTIFICATION_THREAD_MESSAGE", + "55": "NOTIFICATION_THREAD_MESSAGE_REACTION", + "56": "NOTIFIED_UPDATE_THREAD", + "57": "NOTIFIED_UPDATE_THREAD_STATUS", + "58": "NOTIFIED_UPDATE_THREAD_MEMBER", + "59": "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE", + "60": "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE_STATUS", + }, + "AdScreen": { + "1": "CHATROOM", + "2": "THREAD_SPACE", + "3": "YOUR_THREADS", + "4": "NOTE_LIST", + "5": "NOTE_END", + "6": "WEB_MAIN", + "7": "WEB_SEARCH_RESULT", + }, + "BooleanState": { + "0": "NONE", + "1": "OFF", + "2": "ON", + }, + "ChatroomPopupType": { + "1": "IMG_TEXT", + "2": "TEXT_ONLY", + "3": "IMG_ONLY", + }, + "ContentsAttribute": { + "1": "NONE", + "2": "CONTENTS_HIDDEN", + }, + "FetchType": { + "1": "DEFAULT", + "2": "PREFETCH_BY_SERVER", + "3": "PREFETCH_BY_CLIENT", + }, + "LiveTalkAttribute": { + "1": "TITLE", + "2": "ALLOW_REQUEST_TO_SPEAK", + }, + "LiveTalkRole": { + "1": "HOST", + "2": "CO_HOST", + "3": "GUEST", + }, + "LiveTalkSpeakerSetting": { + "1": "APPROVAL", + "2": "ALL", + }, + "LiveTalkType": { + "1": "PUBLIC", + "2": "PRIVATE", + }, + "MessageReactionType": { + "0": "ALL", + "1": "UNDO", + "2": "NICE", + "3": "LOVE", + "4": "FUN", + "5": "AMAZING", + "6": "SAD", + "7": "OMG", + }, + "NotifiedMessageType": { + "1": "MENTION", + "2": "REPLY", + }, + "PopupAttribute": { + "1": "NAME", + "2": "ACTIVATED", + "3": "STARTS_AT", + "4": "ENDS_AT", + "5": "CONTENT", + }, + "PopupType": { + "1": "MAIN", + "2": "CHATROOM", + }, + "SquareChatAttribute": { + "2": "NAME", + "3": "SQUARE_CHAT_IMAGE", + "4": "STATE", + "5": "TYPE", + "6": "MAX_MEMBER_COUNT", + "7": "MESSAGE_VISIBILITY", + "8": "ABLE_TO_SEARCH_MESSAGE", + }, + "SquareChatFeatureControlState": { + "1": "DISABLED", + "2": "ENABLED", + }, + "SquareChatMemberAttribute": { + "4": "MEMBERSHIP_STATE", + "6": "NOTIFICATION_MESSAGE", + "7": "NOTIFICATION_NEW_MEMBER", + "8": "LEFT_BY_KICK_MESSAGE_LOCAL_ID", + "9": "MESSAGE_LOCAL_ID_WHEN_BLOCK", + }, + "SquareChatMembershipState": { + "1": "JOINED", + "2": "LEFT", + }, + "SquareChatState": { + "0": "ALIVE", + "1": "DELETED", + "2": "SUSPENDED", + }, + "SquareEmblem": { + "1": "SUPER", + "2": "OFFICIAL", + }, + "SquareErrorCode": { + "0": "UNKNOWN", + "400": "ILLEGAL_ARGUMENT", + "401": "AUTHENTICATION_FAILURE", + "403": "FORBIDDEN", + "404": "NOT_FOUND", + "409": "REVISION_MISMATCH", + "410": "PRECONDITION_FAILED", + "500": "INTERNAL_ERROR", + "501": "NOT_IMPLEMENTED", + "503": "TRY_AGAIN_LATER", + "505": "MAINTENANCE", + "506": "NO_PRESENCE_EXISTS", + }, + "SquareFeatureControlState": { + "1": "DISABLED", + "2": "ENABLED", + }, + "SquareFeatureSetAttribute": { + "1": "CREATING_SECRET_SQUARE_CHAT", + "2": "INVITING_INTO_OPEN_SQUARE_CHAT", + "3": "CREATING_SQUARE_CHAT", + "4": "READONLY_DEFAULT_CHAT", + "5": "SHOWING_ADVERTISEMENT", + "6": "DELEGATE_JOIN_TO_PLUG", + "7": "DELEGATE_KICK_OUT_TO_PLUG", + "8": "DISABLE_UPDATE_JOIN_METHOD", + "9": "DISABLE_TRANSFER_ADMIN", + "10": "CREATING_LIVE_TALK", + "11": "DISABLE_UPDATE_SEARCHABLE", + "12": "SUMMARIZING_MESSAGES", + "13": "CREATING_SQUARE_THREAD", + "14": "ENABLE_SQUARE_THREAD", + "15": "DISABLE_CHANGE_ROLE_CO_ADMIN", + }, + "SquareJoinMethodType": { + "0": "NONE", + "1": "APPROVAL", + "2": "CODE", + }, + "SquareMemberRelationState": { + "1": "NONE", + "2": "BLOCKED", + }, + "SquareMemberRole": { + "1": "ADMIN", + "2": "CO_ADMIN", + "10": "MEMBER", + }, + "SquareMessageState": { + "1": "SENT", + "2": "DELETED", + "3": "FORBIDDEN", + "4": "UNSENT", + }, + "SquareMetadataAttribute": { + "1": "EXCLUDED", + "2": "NO_AD", + }, + "SquarePreferenceAttribute": { + "1": "FAVORITE", + "2": "NOTI_FOR_NEW_JOIN_REQUEST", + }, + "SquareProviderType": { + "1": "UNKNOWN", + "2": "YOUTUBE", + "3": "OA_FANSPACE", + }, + "SquareState": { + "0": "ALIVE", + "1": "DELETED", + "2": "SUSPENDED", + }, + "SquareThreadAttribute": { + "1": "STATE", + "2": "EXPIRES_AT", + "3": "READ_ONLY_AT", + }, + "SquareThreadMembershipState": { + "1": "JOINED", + "2": "LEFT", + }, + "SquareThreadState": { + "1": "ALIVE", + "2": "DELETED", + }, + "SquareType": { + "0": "CLOSED", + "1": "OPEN", + }, + "TargetChatType": { + "0": "ALL", + "1": "MIDS", + "2": "CATEGORIES", + "3": "CHANNEL_ID", + }, + "TargetUserType": { + "0": "ALL", + "1": "MIDS", + }, + "do0_EnumC23139B": { + "1": "CLOUD", + "2": "BLE", + "3": "BEACON", + }, + "do0_EnumC23147e": { + "0": "SUCCESS", + "1": "UNKNOWN_ERROR", + "2": "BLUETOOTH_NOT_AVAILABLE", + "3": "CONNECTION_TIMEOUT", + "4": "CONNECTION_ERROR", + "5": "CONNECTION_IN_PROGRESS", + }, + "do0_EnumC23148f": { + "0": "ONETIME", + "1": "AUTOMATIC", + "2": "BEACON", + }, + "do0_G": { + "0": "SUCCESS", + "1": "UNKNOWN_ERROR", + "2": "GATT_ERROR", + "3": "GATT_OPERATION_NOT_SUPPORTED", + "4": "GATT_SERVICE_NOT_FOUND", + "5": "GATT_CHARACTERISTIC_NOT_FOUND", + "6": "GATT_CONNECTION_CLOSED", + "7": "CONNECTION_INVALID", + }, + "do0_M": { + "0": "INTERNAL_SERVER_ERROR", + "1": "UNAUTHORIZED", + "2": "INVALID_REQUEST", + "3": "INVALID_STATE", + "4096": "DEVICE_LIMIT_EXCEEDED", + "4097": "UNSUPPORTED_REGION", + }, + "fN0_EnumC24466B": { + "0": "LINE_PREMIUM", + "1": "LYP_PREMIUM", + }, + "fN0_EnumC24467C": { + "1": "LINE", + "2": "YAHOO_JAPAN", + }, + "fN0_EnumC24469a": { + "1": "OK", + "2": "NOT_SUPPORTED", + "3": "UNDEFINED", + "4": "NOT_ENOUGH_TICKETS", + "5": "NOT_FRIENDS", + "6": "NO_AGREEMENT", + }, + "fN0_F": { + "1": "OK", + "2": "NOT_SUPPORTED", + "3": "UNDEFINED", + "4": "CONFLICT", + "5": "NOT_AVAILABLE", + "6": "INVALID_INVITATION", + "7": "IN_PAYMENT_FAILURE_STATE", + }, + "fN0_G": { + "1": "APPLE", + "2": "GOOGLE", + }, + "fN0_H": { + "1": "INACTIVE", + "2": "ACTIVE_FINITE", + "3": "ACTIVE_INFINITE", + }, + "fN0_o": { + "1": "AVAILABLE", + "2": "ALREADY_SUBSCRIBED", + }, + "fN0_p": { + "0": "UNKNOWN", + "1": "SOFTBANK_BUNDLE", + "2": "YBB_BUNDLE", + "3": "YAHOO_MOBILE_BUNDLE", + "4": "PPCG_BUNDLE", + "5": "ENJOY_BUNDLE", + "6": "YAHOO_TRIAL_BUNDLE", + "7": "YAHOO_APPLE", + "8": "YAHOO_GOOGLE", + "9": "LINE_APPLE", + "10": "LINE_GOOGLE", + "11": "YAHOO_WALLET", + }, + "fN0_q": { + "0": "UNKNOWN", + "1": "NONE", + "16641": "ILLEGAL_ARGUMENT", + "16642": "NOT_FOUND", + "16643": "NOT_AVAILABLE", + "16644": "INTERNAL_SERVER_ERROR", + "16645": "AUTHENTICATION_FAILED", + }, + "g80_EnumC24993a": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "INVALID_CONTEXT", + "3": "TOO_MANY_REQUESTS", + }, + "h80_EnumC25645e": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "NOT_FOUND", + "3": "RETRY_LATER", + "100": "INVALID_CONTEXT", + "101": "NOT_SUPPORTED", + }, + "I80_EnumC26392b": { + "0": "UNKNOWN", + "1": "SKIP", + "2": "PASSWORD", + "4": "EMAIL_BASED", + "11": "NONE", + }, + "I80_EnumC26394c": { + "0": "PHONE_NUMBER", + "1": "APPLE", + "2": "GOOGLE", + }, + "I80_EnumC26408j": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "NOT_FOUND", + "4": "RETRY_LATER", + "5": "HUMAN_VERIFICATION_REQUIRED", + "100": "INVALID_CONTEXT", + "101": "APP_UPGRADE_REQUIRED", + }, + "I80_EnumC26425y": { + "0": "UNKNOWN", + "1": "SMS", + "2": "IVR", + }, + "j80_EnumC27228a": { + "1": "AUTHENTICATION_FAILED", + "2": "INVALID_STATE", + "3": "NOT_AUTHORIZED_DEVICE", + "4": "MUST_REFRESH_V3_TOKEN", + }, + "jO0_EnumC27533B": { + "1": "PAYMENT_APPLE", + "2": "PAYMENT_GOOGLE", + }, + "jO0_EnumC27535b": { + "0": "ILLEGAL_ARGUMENT", + "1": "AUTHENTICATION_FAILED", + "20": "INTERNAL_ERROR", + "29": "MESSAGE_DEFINED_ERROR", + "33": "MAINTENANCE_ERROR", + }, + "jO0_EnumC27559z": { + "0": "PAYMENT_PG_NONE", + "1": "PAYMENT_PG_AU", + "2": "PAYMENT_PG_AL", + }, + "jf_EnumC27712a": { + "1": "NONE", + "2": "DOES_NOT_RESPOND", + "3": "RESPOND_MANUALLY", + "4": "RESPOND_AUTOMATICALLY", + }, + "jf_EnumC27717f": { + "0": "UNKNOWN", + "1": "BAD_REQUEST", + "2": "NOT_FOUND", + "3": "FORBIDDEN", + "4": "INTERNAL_SERVER_ERROR", + }, + "kf_EnumC28766a": { + "0": "ILLEGAL_ARGUMENT", + "1": "INTERNAL_ERROR", + "2": "UNAUTHORIZED", + }, + "kf_o": { + "0": "ANDROID", + "1": "IOS", + }, + "kf_p": { + "0": "RICHMENU", + "1": "TALK_ROOM", + }, + "kf_r": { + "0": "WEB", + "1": "POSTBACK", + "2": "SEND_MESSAGE", + }, + "kf_u": { + "0": "CLICK", + "1": "IMPRESSION", + }, + "kf_x": { + "0": "UNKNOWN", + "1": "PROFILE", + "2": "TALK_LIST", + "3": "OA_CALL", + }, + "n80_o": { + "0": "INTERNAL_ERROR", + "100": "INVALID_CONTEXT", + "200": "FIDO_UNKNOWN_CREDENTIAL_ID", + "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR", + "202": "FIDO_UNACCEPTABLE_CONTENT", + "203": "FIDO_INVALID_REQUEST", + }, + "o80_e": { + "0": "INTERNAL_ERROR", + "1": "VERIFICATION_FAILED", + "2": "LOGIN_NOT_ALLOWED", + "3": "EXTERNAL_SERVICE_UNAVAILABLE", + "4": "RETRY_LATER", + "100": "NOT_SUPPORTED", + "101": "ILLEGAL_ARGUMENT", + "102": "INVALID_CONTEXT", + "103": "FORBIDDEN", + "200": "FIDO_UNKNOWN_CREDENTIAL_ID", + "201": "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR", + "202": "FIDO_UNACCEPTABLE_CONTENT", + "203": "FIDO_INVALID_REQUEST", + }, + "og_E": { + "1": "RUNNING", + "2": "CLOSING", + "3": "CLOSED", + "4": "SUSPEND", + }, + "og_EnumC32661b": { + "0": "INACTIVE", + "1": "ACTIVE", + }, + "og_EnumC32663d": { + "0": "PREMIUM", + "1": "VERIFIED", + "2": "UNVERIFIED", + }, + "og_EnumC32671l": { + "0": "ILLEGAL_ARGUMENT", + "1": "AUTHENTICATION_FAILED", + "3": "INVALID_STATE", + "5": "NOT_FOUND", + "20": "INTERNAL_ERROR", + "33": "MAINTENANCE_ERROR", + }, + "og_G": { + "0": "FREE", + "1": "MONTHLY", + "2": "PER_PAYMENT", + }, + "og_I": { + "0": "OK", + "1": "REACHED_TIER_LIMIT", + "2": "REACHED_MEMBER_LIMIT", + "3": "ALREADY_JOINED", + "4": "NOT_SUPPORTED_LINE_VERSION", + "5": "BOT_USER_REGION_IS_NOT_MATCH", + }, + "q80_EnumC33651c": { + "0": "INTERNAL_ERROR", + "1": "ILLEGAL_ARGUMENT", + "2": "VERIFICATION_FAILED", + "3": "NOT_ALLOWED_QR_CODE_LOGIN", + "4": "VERIFICATION_NOTICE_FAILED", + "5": "RETRY_LATER", + "100": "INVALID_CONTEXT", + "101": "APP_UPGRADE_REQUIRED", + }, + "qm_EnumC34112e": { + "1": "BUTTON", + "2": "ENTRY_SELECTED", + "3": "BROADCAST_ENTER", + "4": "BROADCAST_LEAVE", + "5": "BROADCAST_STAY", + }, + "qm_s": { + "0": "ILLEGAL_ARGUMENT", + "5": "NOT_FOUND", + "20": "INTERNAL_ERROR", + }, + "r80_EnumC34361a": { + "1": "PERSONAL_ACCOUNT", + "2": "CURRENT_ACCOUNT", + }, + "r80_EnumC34362b": { + "1": "BANK_ALL", + "2": "BANK_DEPOSIT", + "3": "BANK_WITHDRAWAL", + }, + "r80_EnumC34365e": { + "1": "BANK", + "2": "ATM", + "3": "CONVENIENCE_STORE", + "4": "DEBIT_CARD", + "5": "E_CHANNEL", + "6": "VIRTUAL_BANK_ACCOUNT", + "7": "AUTO", + "8": "CVS_LAWSON", + "9": "SEVEN_BANK_DEPOSIT", + "10": "CODE_DEPOSIT", + }, + "r80_EnumC34367g": { + "0": "AVAILABLE", + "1": "DIFFERENT_REGION", + "2": "UNSUPPORTED_DEVICE", + "3": "PHONE_NUMBER_UNREGISTERED", + "4": "UNAVAILABLE_FROM_LINE_PAY", + "5": "INVALID_USER", + }, + "r80_EnumC34368h": { + "1": "CHARGE", + "2": "WITHDRAW", + }, + "r80_EnumC34370j": { + "0": "UNKNOWN", + "1": "VISA", + "2": "MASTER", + "3": "AMEX", + "4": "DINERS", + "5": "JCB", + }, + "r80_EnumC34371k": { + "0": "NULL", + "1": "ATM", + "2": "CONVENIENCE_STORE", + }, + "r80_EnumC34372l": { + "1": "SCALE2", + "2": "SCALE3", + "3": "HDPI", + "4": "XHDPI", + }, + "r80_EnumC34374n": { + "0": "SUCCESS", + "1000": "GENERAL_USER_ERROR", + "1101": "ACCOUNT_NOT_EXISTS", + "1102": "ACCOUNT_INVALID_STATUS", + "1103": "ACCOUNT_ALREADY_EXISTS", + "1104": "MERCHANT_NOT_EXISTS", + "1105": "MERCHANT_INVALID_STATUS", + "1107": "AGREEMENT_REQUIRED", + "1108": "BLACKLISTED", + "1109": "WRONG_PASSWORD", + "1110": "INVALID_CREDIT_CARD", + "1111": "LIMIT_EXCEEDED", + "1115": "CANNOT_PROCEED", + "1120": "TOO_WEAK_PASSWORD", + "1125": "CANNOT_CREATE_ACCOUNT", + "1130": "TEMPORARY_PASSWORD_ERROR", + "1140": "MISSING_PARAMETERS", + "1141": "NO_VALID_MYCODE_ACCOUNT", + "1142": "INSUFFICIENT_BALANCE", + "1150": "TRANSACTION_NOT_FOUND", + "1152": "TRANSACTION_FINISHED", + "1153": "PAYMENT_AMOUNT_WRONG", + "1157": "BALANCE_ACCOUNT_NOT_EXISTS", + "1158": "DUPLICATED_CITIZEN_ID", + "1159": "PAYMENT_REQUEST_NOT_FOUND", + "1169": "AUTH_FAILED", + "1171": "PASSWORD_SETTING_REQUIRED", + "1172": "TRANSACTION_ALREADY_PROCESSED", + "1178": "CURRENCY_NOT_SUPPORTED", + "1180": "PAYMENT_NOT_AVAILABLE", + "1181": "TRANSFER_REQUEST_NOT_FOUND", + "1183": "INVALID_PAYMENT_AMOUNT", + "1184": "INSUFFICIENT_PAYMENT_AMOUNT", + "1185": "EXTERNAL_SYSTEM_MAINTENANCE", + "1186": "EXTERNAL_SYSTEM_INOPERATIONAL", + "1192": "SESSION_EXPIRED", + "1195": "UPGRADE_REQUIRED", + "1196": "REQUEST_TOKEN_EXPIRED", + "1198": "OPERATION_FINISHED", + "1199": "EXTERNAL_SYSTEM_ERROR", + "1299": "PARTIAL_AMOUNT_APPROVED", + "1600": "PINCODE_AUTH_REQUIRED", + "1601": "ADDITIONAL_AUTH_REQUIRED", + "1603": "NOT_BOUND", + "1610": "OTP_USER_REGISTRATION_ERROR", + "1611": "OTP_CARD_REGISTRATION_ERROR", + "1612": "NO_AUTH_METHOD", + "1696": "GENERAL_USER_ERROR_RESTART", + "1697": "GENERAL_USER_ERROR_REFRESH", + "1698": "GENERAL_USER_ERROR_CLOSE", + "9000": "INTERNAL_SERVER_ERROR", + "9999": "INTERNAL_SYSTEM_MAINTENANCE", + "10000": "UNKNOWN_ERROR", + }, + "r80_EnumC34376p": { + "1": "TRANSFER", + "2": "TRANSFER_REQUEST", + "3": "DUTCH", + "4": "INVITATION", + }, + "r80_EnumC34377q": { + "0": "NULL", + "1": "UNIDEN", + "2": "WAIT", + "3": "IDENTIFIED", + "4": "CHECKING", + }, + "r80_EnumC34378s": { + "0": "UNKNOWN", + "1": "MORE_TAB", + "2": "CHAT_ROOM_PLUS_MENU", + "3": "TRANSFER", + "4": "PAYMENT", + "5": "LINECARD", + "6": "INVITATION", + }, + "r80_e0": { + "0": "NONE", + "1": "ONE_TIME_PAYMENT_AGREEMENT", + "2": "SIMPLE_JOINING_AGREEMENT", + "3": "LINE_CARD_CASH_AGREEMENT", + "4": "LINE_CARD_MONEY_AGREEMENT", + "5": "JOINING_WITH_LINE_CARD_AGREEMENT", + "6": "LINE_CARD_AGREEMENT", + }, + "r80_g0": { + "0": "NULL", + "1": "ATM", + "2": "CONVENIENCE_STORE", + "3": "ALL", + }, + "r80_h0": { + "1": "READY", + "2": "COMPLETE", + "3": "WAIT", + "4": "CANCEL", + "5": "FAIL", + "6": "EXPIRE", + "7": "ALL", + }, + "r80_i0": { + "1": "TRANSFER_ACCEPTABLE", + "2": "REMOVE_INVOICE", + "3": "INVOICE_CODE", + "4": "SHOW_ALWAYS_INVOICE", + }, + "r80_m0": { + "1": "OK", + "2": "NOT_ALIVE_USER", + "3": "NEED_BALANCE_DISCLAIMER", + "4": "ECONTEXT_CHARGING_IN_PROGRESS", + "6": "TRANSFER_IN_PROGRESS", + "7": "OK_REMAINING_BALANCE", + "8": "ADVERSE_BALANCE", + "9": "CONFIRM_REQUIRED", + }, + "r80_n0": { + "1": "LINE", + "2": "LINEPAY", + }, + "r80_r": { + "1": "CITIZEN_ID", + "2": "PASSPORT", + "3": "WORK_PERMIT", + "4": "ALIEN_CARD", + }, + "t80_h": { + "1": "CLIENT", + "2": "SERVER", + }, + "t80_i": { + "1": "APP_INSTANCE_LOCAL", + "2": "APP_TYPE_LOCAL", + "3": "GLOBAL", + }, + "t80_n": { + "0": "UNKNOWN", + "1": "NONE", + "16641": "ILLEGAL_ARGUMENT", + "16642": "NOT_FOUND", + "16643": "NOT_AVAILABLE", + "16644": "TOO_LARGE_VALUE", + "16645": "CLOCK_DRIFT_DETECTED", + "16646": "UNSUPPORTED_APPLICATION_TYPE", + "16647": "DUPLICATED_ENTRY", + "16897": "AUTHENTICATION_FAILED", + "20737": "INTERNAL_SERVER_ERROR", + "20738": "SERVICE_IN_MAINTENANCE_MODE", + "20739": "SERVICE_UNAVAILABLE", + }, + "t80_r": { + "1": "USER_ACTION", + "2": "DATA_OUTDATED", + "3": "APP_MIGRATION", + "100": "OTHER", + }, + "vh_EnumC37632c": { + "1": "ACTIVE", + "2": "INACTIVE", + }, + "vh_m": { + "1": "SAFE", + "2": "NOT_SAFE", + }, + "wm_EnumC38497a": { + "0": "UNKNOWN", + "1": "BOT_NOT_FOUND", + "2": "BOT_NOT_AVAILABLE", + "3": "NOT_A_MEMBER", + "4": "SQUARECHAT_NOT_FOUND", + "5": "FORBIDDEN", + "400": "ILLEGAL_ARGUMENT", + "401": "AUTHENTICATION_FAILED", + "500": "INTERNAL_ERROR", + }, + "zR0_EnumC40578c": { + "0": "FOREGROUND", + "1": "BACKGROUND", + }, + "zR0_EnumC40579d": { + "1": "STICKER", + "2": "THEME", + "3": "STICON", + }, + "zR0_h": { + "0": "NORMAL", + "1": "BIG", + }, + "zR0_j": { + "0": "UNKNOWN", + "1": "NONE", + "16641": "ILLEGAL_ARGUMENT", + "16642": "NOT_FOUND", + "16643": "NOT_AVAILABLE", + "16897": "AUTHENTICATION_FAILED", + "20737": "INTERNAL_SERVER_ERROR", + "20739": "SERVICE_UNAVAILABLE", + }, + "zf_EnumC40713a": { + "1": "PERSONAL", + "2": "ROOM", + "3": "GROUP", + "4": "SQUARE_CHAT", + }, + "zf_EnumC40715c": { + "1": "REGULAR", + "2": "PRIORITY", + "3": "MORE", + }, + "zf_EnumC40716d": { + "1": "INVALID_REQUEST", + "2": "UNAUTHORIZED", + "100": "SERVER_ERROR", + }, + "AccessTokenRefreshException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "P70_g", + }, + { + "fid": 2, + "name": "reasonCode", + "type": 10, + }, + ], + "AccountEapConnectException": [ + { + "fid": 1, + "name": "code", + "struct": "Q70_r", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + { + "fid": 11, + "name": "webAuthDetails", + "struct": "WebAuthDetails", + }, + ], + "I80_C26390a": [ + { + "fid": 1, + "name": "code", + "struct": "I80_EnumC26408j", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + { + "fid": 11, + "name": "webAuthDetails", + "struct": "I80_K0", + }, + ], + "AuthException": [ + { + "fid": 1, + "name": "code", + "struct": "T70_EnumC14406j", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + { + "fid": 11, + "name": "webAuthDetails", + "struct": "WebAuthDetails", + }, + ], + "BotException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "wm_EnumC38497a", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "BotExternalException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "kf_EnumC28766a", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + ], + "ChannelException": [ + { + "fid": 1, + "name": "code", + "struct": "ChannelErrorCode", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "ChannelPaakAuthnException": [ + { + "fid": 1, + "name": "code", + "struct": "n80_o", + }, + { + "fid": 2, + "name": "errorMessage", + "type": 11, + }, + ], + "ChatappException": [ + { + "fid": 1, + "name": "code", + "struct": "zf_EnumC40716d", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + ], + "CoinException": [ + { + "fid": 1, + "name": "code", + "struct": "jO0_EnumC27535b", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "CollectionException": [ + { + "fid": 1, + "name": "code", + "struct": "Ob1_EnumC12664u", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "E2EEKeyBackupException": [ + { + "fid": 1, + "name": "code", + "struct": "Pb1_W3", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "ExcessiveRequestItemException": [ + { + "fid": 1, + "name": "max_size", + "type": 8, + }, + { + "fid": 2, + "name": "hint", + "type": 11, + }, + ], + "HomeException": [ + { + "fid": 1, + "name": "exceptionCode", + "struct": "Fg_a", + }, + { + "fid": 2, + "name": "message", + "type": 11, + }, + { + "fid": 3, + "name": "retryTimeMillis", + "type": 10, + }, + ], + "LFLPremiumException": [ + { + "fid": 1, + "name": "code", + "struct": "AR0_g", + }, + ], + "LiffChannelException": [ + { + "fid": 1, + "name": "code", + "struct": "Qj_EnumC13592i", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "LiffException": [ + { + "fid": 1, + "name": "code", + "struct": "Qj_EnumC13597n", + }, + { + "fid": 2, + "name": "message", + "type": 11, + }, + { + "fid": 3, + "name": "payload", + "struct": "Qj_C13599p", + }, + ], + "MembershipException": [ + { + "fid": 1, + "name": "code", + "struct": "og_EnumC32671l", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "OaChatException": [ + { + "fid": 1, + "name": "code", + "struct": "jf_EnumC27717f", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "PasswordUpdateException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "U70_c", + }, + { + "fid": 2, + "name": "errorMessage", + "type": 11, + }, + ], + "PaymentException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "r80_EnumC34374n", + }, + { + "fid": 2, + "name": "debugReason", + "type": 11, + }, + { + "fid": 3, + "name": "serverDefinedMessage", + "type": 11, + }, + { + "fid": 4, + "name": "errorDetailMap", + "map": 11, + "key": 11, + }, + ], + "PointException": [ + { + "fid": 1, + "name": "code", + "struct": "PointErrorCode", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "extra", + "map": 11, + "key": 11, + }, + ], + "PremiumException": [ + { + "fid": 1, + "name": "code", + "struct": "fN0_q", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + ], + "PrimaryQrCodeMigrationException": [ + { + "fid": 1, + "name": "code", + "struct": "h80_EnumC25645e", + }, + { + "fid": 2, + "name": "errorMessage", + "type": 11, + }, + ], + "PwlessCredentialException": [ + { + "fid": 1, + "name": "code", + "struct": "R70_e", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + ], + "RejectedException": [ + { + "fid": 1, + "name": "rejectionReason", + "struct": "LN0_F0", + }, + { + "fid": 2, + "name": "hint", + "type": 11, + }, + ], + "SeamlessLoginException": [ + { + "fid": 1, + "name": "code", + "struct": "g80_EnumC24993a", + }, + { + "fid": 2, + "name": "errorMessage", + "type": 11, + }, + { + "fid": 3, + "name": "errorTitle", + "type": 11, + }, + ], + "SecondAuthFactorPinCodeException": [ + { + "fid": 1, + "name": "code", + "struct": "S70_a", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + ], + "SecondaryPwlessLoginException": [ + { + "fid": 1, + "name": "code", + "struct": "o80_e", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + ], + "SecondaryQrCodeException": [ + { + "fid": 1, + "name": "code", + "struct": "q80_EnumC33651c", + }, + { + "fid": 2, + "name": "alertMessage", + "type": 11, + }, + ], + "ServerFailureException": [ + { + "fid": 1, + "name": "hint", + "type": 11, + }, + ], + "SettingsException": [ + { + "fid": 1, + "name": "code", + "struct": "t80_n", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameters", + "map": 11, + "key": 11, + }, + ], + "ShopException": [ + { + "fid": 1, + "name": "code", + "struct": "Ob1_EnumC12652p1", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "SquareException": [ + { + "fid": 1, + "name": "errorCode", + "struct": "SquareErrorCode", + }, + { + "fid": 2, + "name": "errorExtraInfo", + "struct": "ErrorExtraInfo", + }, + { + "fid": 3, + "name": "reason", + "type": 11, + }, + ], + "SuggestTrialException": [ + { + "fid": 1, + "name": "code", + "struct": "zR0_j", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "TalkException": [ + { + "fid": 1, + "name": "code", + "struct": "ErrorCode", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "parameterMap", + "map": 11, + "key": 11, + }, + ], + "ThingsException": [ + { + "fid": 1, + "name": "code", + "struct": "do0_M", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + ], + "TokenAuthException": [ + { + "fid": 1, + "name": "code", + "struct": "j80_EnumC27228a", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + ], + "WalletException": [ + { + "fid": 1, + "name": "code", + "struct": "NZ0_EnumC12193o1", + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "attributes", + "map": 11, + "key": 11, + }, + ], + "m80_C30146a": [], + "m80_b": [], + "AD": [ + { + "fid": 1, + "name": "body", + "type": 11, + }, + { + "fid": 2, + "name": "priority", + "struct": "Priority", + }, + { + "fid": 3, + "name": "lossUrl", + "type": 11, + }, + ], + "AR0_o": [ + { + "fid": 1, + "name": "sticker", + "struct": "_any", + }, + ], + "AbuseMessage": [ + { + "fid": 1, + "name": "messageId", + "type": 10, + }, + { + "fid": 2, + "name": "message", + "type": 11, + }, + { + "fid": 3, + "name": "senderMid", + "type": 11, + }, + { + "fid": 4, + "name": "contentType", + "struct": "ContentType", + }, + { + "fid": 5, + "name": "createdTime", + "type": 10, + }, + { + "fid": 6, + "name": "metadata", + "map": 11, + "key": 11, + }, + ], + "AbuseReport": [ + { + "fid": 1, + "name": "reportSource", + "struct": "Pb1_EnumC13128p7", + }, + { + "fid": 2, + "name": "applicationType", + "struct": "ApplicationType", + }, + { + "fid": 3, + "name": "spammerReasons", + "list": 8, + }, + { + "fid": 4, + "name": "abuseMessages", + "list": "AbuseMessage", + }, + { + "fid": 5, + "name": "metadata", + "map": 11, + "key": 11, + }, + ], + "AbuseReportLineMeeting": [ + { + "fid": 1, + "name": "reporteeMid", + "type": 11, + }, + { + "fid": 2, + "name": "spammerReasons", + "list": 8, + }, + { + "fid": 3, + "name": "evidenceIds", + "list": "EvidenceId", + }, + { + "fid": 4, + "name": "chatMid", + "type": 11, + }, + ], + "AcceptChatInvitationByTicketRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "ticketId", + "type": 11, + }, + ], + "AcceptChatInvitationRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + ], + "AcceptSpeakersRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "targetMids", + "set": 11, + }, + ], + "AcceptToChangeRoleRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "inviteRequestId", + "type": 11, + }, + ], + "AcceptToListenRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "inviteRequestId", + "type": 11, + }, + ], + "AcceptToSpeakRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "inviteRequestId", + "type": 11, + }, + ], + "AccountIdentifier": [ + { + "fid": 1, + "name": "type", + "struct": "T70_EnumC14390b", + }, + { + "fid": 2, + "name": "identifier", + "type": 11, + }, + { + "fid": 11, + "name": "countryCode", + "type": 11, + }, + ], + "AcquireLiveTalkRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "LiveTalkType", + }, + { + "fid": 4, + "name": "speakerSetting", + "struct": "LiveTalkSpeakerSetting", + }, + ], + "AcquireLiveTalkResponse": [ + { + "fid": 1, + "name": "liveTalk", + "struct": "LiveTalk", + }, + ], + "AcquireOACallRouteRequest": [ + { + "fid": 1, + "name": "searchId", + "type": 11, + }, + { + "fid": 2, + "name": "fromEnvInfo", + "map": 11, + "key": 11, + }, + { + "fid": 3, + "name": "otp", + "type": 11, + }, + ], + "AcquireOACallRouteResponse": [ + { + "fid": 1, + "name": "oaCallRoute", + "struct": "Pb1_C13113o6", + }, + ], + "ActionButton": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + ], + "ActivateSubscriptionRequest": [ + { + "fid": 1, + "name": "uniqueKey", + "type": 11, + }, + { + "fid": 2, + "name": "activeStatus", + "struct": "og_EnumC32661b", + }, + ], + "AdRequest": [ + { + "fid": 1, + "name": "headers", + "map": 11, + "key": 11, + }, + { + "fid": 2, + "name": "queryParams", + "map": 11, + "key": 11, + }, + ], + "AdTypeOptOutClickEventRequest": [ + { + "fid": 1, + "name": "moduleAdId", + "type": 11, + }, + { + "fid": 2, + "name": "targetId", + "type": 11, + }, + ], + "AddFriendByMidRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "userMid", + "type": 11, + }, + { + "fid": 3, + "name": "tracking", + "struct": "AddFriendTracking", + }, + ], + "AddFriendTracking": [ + { + "fid": 1, + "name": "reference", + "type": 11, + }, + { + "fid": 2, + "name": "trackingMeta", + "struct": "LN0_C11274d", + }, + ], + "AddItemToCollectionRequest": [ + { + "fid": 1, + "name": "collectionId", + "type": 11, + }, + { + "fid": 2, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "itemId", + "type": 11, + }, + ], + "AddMetaByPhone": [ + { + "fid": 1, + "name": "phone", + "type": 11, + }, + ], + "AddMetaBySearchId": [ + { + "fid": 1, + "name": "searchId", + "type": 11, + }, + ], + "AddMetaByUserTicket": [ + { + "fid": 1, + "name": "ticket", + "type": 11, + }, + ], + "AddMetaChatNote": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "AddMetaChatNoteMenu": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "AddMetaGroupMemberList": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "AddMetaGroupVideoCall": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "AddMetaInvalid": [ + { + "fid": 1, + "name": "hint", + "type": 11, + }, + ], + "AddMetaMentionInChat": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + ], + "AddMetaProfileUndefined": [ + { + "fid": 1, + "name": "hint", + "type": 11, + }, + ], + "AddMetaSearchIdInUnifiedSearch": [ + { + "fid": 1, + "name": "searchId", + "type": 11, + }, + ], + "AddMetaShareContact": [ + { + "fid": 1, + "name": "messageId", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "senderMid", + "type": 11, + }, + ], + "AddMetaStrangerCall": [ + { + "fid": 1, + "name": "messageId", + "type": 11, + }, + ], + "AddMetaStrangerMessage": [ + { + "fid": 1, + "name": "messageId", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + ], + "AddOaFriendResponse": [ + { + "fid": 1, + "name": "status", + "type": 11, + }, + ], + "AddProductToSubscriptionSlotRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "oldProductId", + "type": 11, + }, + { + "fid": 4, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + ], + "AddProductToSubscriptionSlotResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_U1", + }, + ], + "AddThemeToSubscriptionSlotRequest": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "currentlyAppliedProductId", + "type": 11, + }, + { + "fid": 3, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + ], + "AddThemeToSubscriptionSlotResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_U1", + }, + ], + "AddToFollowBlacklistRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + ], + "AgeCheckRequestResult": [ + { + "fid": 1, + "name": "authUrl", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "AgreeToTermsRequest": [ + { + "fid": 1, + "name": "termsType", + "struct": "TermsType", + }, + { + "fid": 2, + "name": "termsAgreement", + "struct": "TermsAgreement", + }, + ], + "AiQnABotTermsAgreement": [ + { + "fid": 1, + "name": "termsVersion", + "type": 8, + }, + ], + "AnalyticsInfo": [ + { + "fid": 1, + "name": "gaSamplingRate", + "type": 4, + }, + { + "fid": 2, + "name": "tmid", + "type": 11, + }, + ], + "AnimationEffectContent": [ + { + "fid": 1, + "name": "animationImageUrl", + "type": 11, + }, + ], + "AnimationLayer": [ + { + "fid": 1, + "name": "initialImage", + "struct": "RichImage", + }, + { + "fid": 2, + "name": "frontImage", + "struct": "RichImage", + }, + { + "fid": 3, + "name": "backgroundImage", + "struct": "RichImage", + }, + ], + "ApplicationVersionRange": [ + { + "fid": 1, + "name": "lowerBound", + "type": 11, + }, + { + "fid": 2, + "name": "lowerBoundInclusive", + "type": 2, + }, + { + "fid": 3, + "name": "upperBound", + "type": 11, + }, + { + "fid": 4, + "name": "upperBoundInclusive", + "type": 2, + }, + ], + "ApprovalValue": [ + { + "fid": 1, + "name": "message", + "type": 11, + }, + ], + "ApproveSquareMembersRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "requestedMemberMids", + "list": 11, + }, + ], + "ApproveSquareMembersResponse": [ + { + "fid": 1, + "name": "approvedMembers", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "status", + "struct": "SquareStatus", + }, + ], + "ApprovedChannelInfo": [ + { + "fid": 1, + "name": "channelInfo", + "struct": "ChannelInfo", + }, + { + "fid": 2, + "name": "approvedAt", + "type": 10, + }, + ], + "ApprovedChannelInfos": [ + { + "fid": 1, + "name": "approvedChannelInfos", + "list": "ApprovedChannelInfo", + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + ], + "AssetServiceInfo": [ + { + "fid": 1, + "name": "status", + "struct": "NZ0_C0", + }, + { + "fid": 2, + "name": "myAssetServiceCode", + "struct": "NZ0_B0", + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "signupText", + "type": 11, + }, + { + "fid": 5, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 6, + "name": "landingUrl", + "type": 11, + }, + { + "fid": 7, + "name": "currencyProperty", + "struct": "CurrencyProperty", + }, + { + "fid": 8, + "name": "balance", + "type": 11, + }, + { + "fid": 9, + "name": "profit", + "type": 11, + }, + { + "fid": 10, + "name": "maintenanceText", + "type": 11, + }, + { + "fid": 11, + "name": "availableBalanceString", + "type": 11, + }, + { + "fid": 12, + "name": "availableBalance", + "type": 11, + }, + ], + "AuthPublicKeyCredential": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "type", + "type": 11, + }, + { + "fid": 3, + "name": "response", + "struct": "AuthenticatorAssertionResponse", + }, + { + "fid": 4, + "name": "extensionResults", + "struct": "AuthenticationExtensionsClientOutputs", + }, + ], + "AuthSessionRequest": [ + { + "fid": 1, + "name": "metaData", + "map": 11, + "key": 11, + }, + ], + "AuthenticateWithPaakRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "credential", + "struct": "AuthPublicKeyCredential", + }, + ], + "AuthenticationExtensionsClientInputs": [ + { + "fid": 91, + "name": "lineAuthenSel", + "set": 11, + }, + ], + "AuthenticationExtensionsClientOutputs": [ + { + "fid": 91, + "name": "lineAuthenSel", + "type": 2, + }, + ], + "AuthenticatorAssertionResponse": [ + { + "fid": 1, + "name": "clientDataJSON", + "type": 11, + }, + { + "fid": 2, + "name": "authenticatorData", + "type": 11, + }, + { + "fid": 3, + "name": "signature", + "type": 11, + }, + { + "fid": 4, + "name": "userHandle", + "type": 11, + }, + ], + "AuthenticatorAttestationResponse": [ + { + "fid": 1, + "name": "clientDataJSON", + "type": 11, + }, + { + "fid": 2, + "name": "attestationObject", + "type": 11, + }, + { + "fid": 3, + "name": "transports", + "set": 11, + }, + ], + "AuthenticatorSelectionCriteria": [ + { + "fid": 1, + "name": "authenticatorAttachment", + "type": 11, + }, + { + "fid": 2, + "name": "requireResidentKey", + "type": 2, + }, + { + "fid": 3, + "name": "userVerification", + "type": 11, + }, + ], + "AutoSuggestionShowcaseRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "suggestionType", + "struct": "Ob1_a2", + }, + ], + "AutoSuggestionShowcaseResponse": [ + { + "fid": 1, + "name": "productList", + "list": "ProductSummaryForAutoSuggest", + }, + { + "fid": 2, + "name": "totalSize", + "type": 10, + }, + ], + "AvatarProfile": [ + { + "fid": 1, + "name": "version", + "type": 11, + }, + { + "fid": 2, + "name": "updatedMillis", + "type": 10, + }, + { + "fid": 3, + "name": "thumbnail", + "type": 11, + }, + { + "fid": 4, + "name": "usablePublicly", + "type": 2, + }, + ], + "BadgeInfo": [ + { + "fid": 1, + "name": "enabled", + "type": 2, + }, + { + "fid": 2, + "name": "badgeRevision", + "type": 10, + }, + ], + "Balance": [ + { + "fid": 1, + "name": "currentPointsFixedPointDecimal", + "type": 11, + }, + ], + "BalanceShortcut": [ + { + "fid": 1, + "name": "osPayment", + "type": 2, + }, + { + "fid": 2, + "name": "iconPosition", + "type": 8, + }, + { + "fid": 3, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 4, + "name": "iconText", + "type": 11, + }, + { + "fid": 5, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 6, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 7, + "name": "tsTargetId", + "type": 11, + }, + { + "fid": 8, + "name": "iconType", + "struct": "NZ0_EnumC12154b1", + }, + { + "fid": 9, + "name": "iconUrlDarkMode", + "type": 11, + }, + { + "fid": 10, + "name": "toolTip", + "struct": "Tooltip", + }, + ], + "BalanceShortcutInfo": [ + { + "fid": 1, + "name": "balanceShortcuts", + "list": "BalanceShortcut", + }, + { + "fid": 2, + "name": "osPaymentFallbackShortcut", + "struct": "BalanceShortcut", + }, + ], + "BalanceShortcutInfoV4": [ + { + "fid": 1, + "name": "compactShortcuts", + "list": "CompactShortcut", + }, + { + "fid": 2, + "name": "balanceShortcuts", + "list": "BalanceShortcut", + }, + { + "fid": 3, + "name": "defaultExpand", + "type": 2, + }, + ], + "BankBranchInfo": [ + { + "fid": 1, + "name": "branchId", + "type": 11, + }, + { + "fid": 2, + "name": "branchCode", + "type": 11, + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "name2", + "type": 11, + }, + ], + "BannerRequest": [ + { + "fid": 1, + "name": "test", + "type": 2, + }, + { + "fid": 2, + "name": "trigger", + "struct": "Uf_C14856C", + }, + { + "fid": 3, + "name": "ad", + "struct": "AdRequest", + }, + { + "fid": 4, + "name": "content", + "struct": "ContentRequest", + }, + ], + "BannerResponse": [ + { + "fid": 1, + "name": "rid", + "type": 11, + }, + { + "fid": 2, + "name": "timestamp", + "type": 10, + }, + { + "fid": 3, + "name": "minInterval", + "type": 10, + }, + { + "fid": 4, + "name": "lang", + "type": 11, + }, + { + "fid": 5, + "name": "trigger", + "struct": "Uf_C14856C", + }, + { + "fid": 6, + "name": "payloads", + "list": "Uf_p", + }, + ], + "Beacon": [ + { + "fid": 1, + "name": "hardwareId", + "type": 11, + }, + ], + "BeaconBackgroundNotification": [ + { + "fid": 1, + "name": "actionInterval", + "type": 10, + }, + { + "fid": 2, + "name": "actionAndConditions", + "list": "qm_C34110c", + }, + { + "fid": 3, + "name": "actionDelay", + "type": 10, + }, + { + "fid": 4, + "name": "actionConditions", + }, + ], + "BeaconData": [ + { + "fid": 1, + "name": "hwid", + "type": 11, + }, + { + "fid": 2, + "name": "rssi", + "type": 8, + }, + { + "fid": 3, + "name": "txPower", + "type": 8, + }, + { + "fid": 4, + "name": "scannedTimestampMs", + "type": 10, + }, + ], + "BeaconLayerInfoAndActions": [ + { + "fid": 1, + "name": "pictureUrl", + "type": 11, + }, + { + "fid": 2, + "name": "label", + "type": 11, + }, + { + "fid": 3, + "name": "text", + "type": 11, + }, + { + "fid": 4, + "name": "actions", + "list": 11, + }, + { + "fid": 5, + "name": "showOrConditions", + "list": "qm_C34110c", + }, + { + "fid": 6, + "name": "showConditions", + }, + { + "fid": 7, + "name": "timeToHide", + "type": 10, + }, + ], + "BeaconQueryResponse": [ + { + "fid": 2, + "name": "deprecated_actionUrls", + "list": 11, + }, + { + "fid": 3, + "name": "cacheTtl", + "type": 10, + }, + { + "fid": 4, + "name": "touchActions", + "struct": "BeaconTouchActions", + }, + { + "fid": 5, + "name": "layerInfoAndActions", + "struct": "BeaconLayerInfoAndActions", + }, + { + "fid": 6, + "name": "backgroundEnteringNotification", + "struct": "BeaconBackgroundNotification", + }, + { + "fid": 7, + "name": "backgroundLeavingNotification", + "struct": "BeaconBackgroundNotification", + }, + { + "fid": 8, + "name": "group", + "type": 11, + }, + { + "fid": 9, + "name": "major", + "type": 11, + }, + { + "fid": 10, + "name": "minor", + "type": 11, + }, + { + "fid": 11, + "name": "effectiveRange", + "type": 4, + }, + { + "fid": 12, + "name": "channelWhiteList", + "list": 11, + }, + { + "fid": 13, + "name": "actionId", + "type": 10, + }, + { + "fid": 14, + "name": "stayReportInterval", + "type": 10, + }, + { + "fid": 15, + "name": "leaveThresholdTime", + "type": 10, + }, + { + "fid": 17, + "name": "touchThreshold", + "type": 4, + }, + { + "fid": 18, + "name": "cutoffThreshold", + "type": 6, + }, + { + "fid": 19, + "name": "dataUserBots", + "list": "DataUserBot", + }, + { + "fid": 20, + "name": "deviceId", + "type": 11, + }, + { + "fid": 21, + "name": "deviceDisplayName", + "type": 11, + }, + { + "fid": 22, + "name": "botMid", + "type": 11, + }, + { + "fid": 23, + "name": "pop", + "type": 2, + }, + ], + "BeaconTouchActions": [ + { + "fid": 1, + "name": "actions", + "list": 11, + }, + ], + "BirthdayGiftAssociationVerifyRequest": [ + { + "fid": 1, + "name": "associationToken", + "type": 11, + }, + ], + "BirthdayGiftAssociationVerifyResponse": [ + { + "fid": 1, + "name": "tokenStatus", + "struct": "Ob1_EnumC12638l", + }, + { + "fid": 2, + "name": "recipientUserMid", + "type": 11, + }, + ], + "BleNotificationReceivedTrigger": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "characteristicUuid", + "type": 11, + }, + ], + "BleProduct": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "psdiServiceUuid", + "type": 11, + }, + { + "fid": 3, + "name": "psdiCharacteristicUuid", + "type": 11, + }, + { + "fid": 4, + "name": "name", + "type": 11, + }, + { + "fid": 5, + "name": "profileImageLocation", + "type": 11, + }, + { + "fid": 6, + "name": "bondingRequired", + "type": 2, + }, + ], + "Bot": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "basicSearchId", + "type": 11, + }, + { + "fid": 3, + "name": "region", + "type": 11, + }, + { + "fid": 4, + "name": "displayName", + "type": 11, + }, + { + "fid": 5, + "name": "pictureUrl", + "type": 11, + }, + { + "fid": 6, + "name": "brandType", + "struct": "og_EnumC32663d", + }, + ], + "BotBlockDetail": [ + { + "fid": 3, + "name": "deletedFromBlockList", + "type": 2, + }, + ], + "BotFriendDetail": [ + { + "fid": 1, + "name": "createdTime", + "type": 10, + }, + { + "fid": 4, + "name": "favoriteTime", + "type": 10, + }, + { + "fid": 6, + "name": "hidden", + "type": 2, + }, + ], + "BotOaCallDetail": [ + { + "fid": 1, + "name": "oaCallUrl", + "type": 11, + }, + ], + "BotTalkroomAds": [ + { + "fid": 1, + "name": "talkroomAdsEnabled", + "type": 2, + }, + { + "fid": 2, + "name": "botTalkroomAdsInventoryKeys", + "list": "BotTalkroomAdsInventoryKey", + }, + { + "fid": 3, + "name": "displayTalkroomAdsToMembershipUser", + "type": 2, + }, + ], + "BotTalkroomAdsInventoryKey": [ + { + "fid": 1, + "name": "talkroomAdsPosition", + "struct": "Pb1_EnumC13093n0", + }, + { + "fid": 2, + "name": "talkroomAdsIosInventoryKey", + "type": 11, + }, + { + "fid": 3, + "name": "talkroomAdsAndroidInventoryKey", + "type": 11, + }, + ], + "BrowsingHistory": [ + { + "fid": 1, + "name": "productSearchSummary", + "struct": "ProductSearchSummary", + }, + { + "fid": 2, + "name": "browsingTime", + "type": 10, + }, + ], + "BuddyCautionNotice": [ + { + "fid": 1, + "name": "type", + "struct": "Pb1_EnumC13162s0", + }, + ], + "BuddyCautionNoticeFromCMS": [ + { + "fid": 1, + "name": "visibility", + "struct": "Pb1_EnumC13148r0", + }, + ], + "BuddyChatBar": [ + { + "fid": 1, + "name": "barItems", + "list": "Pb1_C13190u0", + }, + ], + "BuddyDetail": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "memberCount", + "type": 10, + }, + { + "fid": 3, + "name": "onAir", + "type": 2, + }, + { + "fid": 4, + "name": "businessAccount", + "type": 2, + }, + { + "fid": 5, + "name": "addable", + "type": 2, + }, + { + "fid": 6, + "name": "acceptableContentTypes", + "set": 8, + }, + { + "fid": 7, + "name": "capableMyhome", + "type": 2, + }, + { + "fid": 8, + "name": "freePhoneCallable", + "type": 2, + }, + { + "fid": 9, + "name": "phoneNumberToDial", + "type": 11, + }, + { + "fid": 10, + "name": "needPermissionApproval", + "type": 2, + }, + { + "fid": 11, + "name": "channelId", + "type": 8, + }, + { + "fid": 12, + "name": "channelProviderName", + "type": 11, + }, + { + "fid": 13, + "name": "iconType", + "type": 8, + }, + { + "fid": 14, + "name": "botType", + "struct": "BotType", + }, + { + "fid": 15, + "name": "showRichMenu", + "type": 2, + }, + { + "fid": 16, + "name": "richMenuRevision", + "type": 10, + }, + { + "fid": 17, + "name": "onAirLabel", + "struct": "Pb1_EnumC13260z0", + }, + { + "fid": 18, + "name": "useTheme", + "type": 2, + }, + { + "fid": 19, + "name": "themeId", + "type": 11, + }, + { + "fid": 20, + "name": "useBar", + "type": 2, + }, + { + "fid": 21, + "name": "barRevision", + "type": 10, + }, + { + "fid": 22, + "name": "useBackground", + "type": 2, + }, + { + "fid": 23, + "name": "backgroundId", + "type": 11, + }, + { + "fid": 24, + "name": "statusBarEnabled", + "type": 2, + }, + { + "fid": 25, + "name": "statusBarRevision", + "type": 10, + }, + { + "fid": 26, + "name": "searchId", + "type": 11, + }, + { + "fid": 27, + "name": "onAirVersion", + "type": 8, + }, + { + "fid": 28, + "name": "blockable", + "type": 2, + }, + { + "fid": 29, + "name": "botActiveStatus", + "struct": "Pb1_EnumC13037j0", + }, + { + "fid": 30, + "name": "membershipEnabled", + "type": 2, + }, + { + "fid": 31, + "name": "legalCountryCode", + "type": 11, + }, + { + "fid": 32, + "name": "botTalkroomAds", + "struct": "BotTalkroomAds", + }, + { + "fid": 33, + "name": "botOaCallDetail", + "struct": "BotOaCallDetail", + }, + { + "fid": 34, + "name": "aiChatBot", + "type": 2, + }, + { + "fid": 35, + "name": "supportSpeechToText", + "type": 2, + }, + { + "fid": 36, + "name": "voomEnabled", + "type": 2, + }, + { + "fid": 37, + "name": "buddyCautionNoticeFromCMS", + "struct": "BuddyCautionNoticeFromCMS", + }, + { + "fid": 38, + "name": "region", + "type": 11, + }, + ], + "BuddyDetailWithPersonal": [ + { + "fid": 1, + "name": "buddyDetail", + "struct": "BuddyDetail", + }, + { + "fid": 2, + "name": "personalDetail", + "struct": "BuddyPersonalDetail", + }, + ], + "BuddyLive": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "onLive", + "type": 2, + }, + { + "fid": 3, + "name": "title", + "type": 11, + }, + { + "fid": 4, + "name": "viewerCount", + "type": 10, + }, + { + "fid": 5, + "name": "liveUrl", + "type": 11, + }, + ], + "BuddyOnAir": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "freshnessLifetime", + "type": 10, + }, + { + "fid": 4, + "name": "onAirId", + "type": 11, + }, + { + "fid": 5, + "name": "onAir", + "type": 2, + }, + { + "fid": 11, + "name": "text", + "type": 11, + }, + { + "fid": 12, + "name": "viewerCount", + "type": 10, + }, + { + "fid": 13, + "name": "targetCount", + "type": 10, + }, + { + "fid": 14, + "name": "livePlayTime", + "type": 10, + }, + { + "fid": 15, + "name": "screenAspectRate", + "type": 11, + }, + { + "fid": 31, + "name": "onAirType", + "struct": "Pb1_A0", + }, + { + "fid": 32, + "name": "onAirUrls", + "struct": "BuddyOnAirUrls", + }, + { + "fid": 33, + "name": "aspectRatioOfSource", + "type": 11, + }, + { + "fid": 41, + "name": "useFadingOut", + "type": 2, + }, + { + "fid": 42, + "name": "fadingOutIn", + "type": 10, + }, + { + "fid": 43, + "name": "urlAfterFadingOut", + "type": 11, + }, + { + "fid": 44, + "name": "labelAfterFadingOut", + "type": 11, + }, + { + "fid": 51, + "name": "useLowerBanner", + "type": 2, + }, + { + "fid": 52, + "name": "lowerBannerUrl", + "type": 11, + }, + { + "fid": 53, + "name": "lowerBannerLabel", + "type": 11, + }, + ], + "BuddyOnAirUrls": [ + { + "fid": 1, + "name": "hls", + "map": 11, + "key": 11, + }, + { + "fid": 2, + "name": "smoothStreaming", + "map": 11, + "key": 11, + }, + ], + "BuddyPersonalDetail": [ + { + "fid": 1, + "name": "richMenuId", + "type": 11, + }, + { + "fid": 2, + "name": "statusBarRevision", + "type": 10, + }, + { + "fid": 3, + "name": "buddyCautionNotice", + "struct": "BuddyCautionNotice", + }, + ], + "BuddyRichMenuChatBarItem": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + { + "fid": 2, + "name": "body", + "type": 11, + }, + { + "fid": 3, + "name": "selected", + "type": 2, + }, + ], + "BuddySearchResult": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "pictureStatus", + "type": 11, + }, + { + "fid": 4, + "name": "picturePath", + "type": 11, + }, + { + "fid": 5, + "name": "statusMessage", + "type": 11, + }, + { + "fid": 6, + "name": "businessAccount", + "type": 2, + }, + { + "fid": 7, + "name": "iconType", + "type": 8, + }, + { + "fid": 8, + "name": "botType", + "struct": "BotType", + }, + ], + "BuddyStatusBar": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + { + "fid": 2, + "name": "displayType", + "struct": "Pb1_EnumC12926b1", + }, + { + "fid": 3, + "name": "title", + "type": 11, + }, + { + "fid": 4, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 5, + "name": "linkUrl", + "type": 11, + }, + ], + "BuddyWebChatBarItem": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + { + "fid": 2, + "name": "url", + "type": 11, + }, + ], + "BuddyWidget": [ + { + "fid": 1, + "name": "icon", + "type": 11, + }, + { + "fid": 2, + "name": "label", + "type": 11, + }, + { + "fid": 3, + "name": "url", + "type": 11, + }, + ], + "BuddyWidgetListCharBarItem": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + { + "fid": 2, + "name": "widgets", + "list": "BuddyWidget", + }, + { + "fid": 3, + "name": "selected", + "type": 2, + }, + ], + "BulkFollowRequest": [ + { + "fid": 1, + "name": "followTargetMids", + "set": 11, + }, + { + "fid": 2, + "name": "unfollowTargetMids", + "set": 11, + }, + { + "fid": 3, + "name": "hasNext", + "type": 2, + }, + ], + "BulkGetRequest": [ + { + "fid": 1, + "name": "requests", + "set": "GetRequest", + }, + ], + "BulkGetResponse": [ + { + "fid": 1, + "name": "values", + "map": "t80_g", + "key": 11, + }, + ], + "BulkSetRequest": [ + { + "fid": 1, + "name": "requests", + "set": "SetRequest", + }, + ], + "BulkSetResponse": [ + { + "fid": 1, + "name": "values", + "map": "t80_l", + "key": 11, + }, + ], + "Button": [ + { + "fid": 1, + "name": "content", + "struct": "ButtonContent", + }, + { + "fid": 2, + "name": "style", + "struct": "ButtonStyle", + }, + ], + "ButtonStyle": [ + { + "fid": 1, + "name": "textColorHexCode", + "type": 11, + }, + { + "fid": 2, + "name": "bgColor", + "struct": "ButtonBGColor", + }, + ], + "BuyMustbuyRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "serialNumber", + "type": 11, + }, + ], + "CallHost": [ + { + "fid": 1, + "name": "host", + "type": 11, + }, + { + "fid": 2, + "name": "port", + "type": 8, + }, + { + "fid": 3, + "name": "zone", + "type": 11, + }, + ], + "CallRoute": [ + { + "fid": 1, + "name": "fromToken", + "type": 11, + }, + { + "fid": 2, + "name": "callFlowType", + "struct": "Pb1_EnumC13010h1", + }, + { + "fid": 3, + "name": "voipAddress", + "type": 11, + }, + { + "fid": 4, + "name": "voipUdpPort", + "type": 8, + }, + { + "fid": 5, + "name": "voipTcpPort", + "type": 8, + }, + { + "fid": 6, + "name": "fromZone", + "type": 11, + }, + { + "fid": 7, + "name": "toZone", + "type": 11, + }, + { + "fid": 8, + "name": "fakeCall", + "type": 2, + }, + { + "fid": 9, + "name": "ringbackTone", + "type": 11, + }, + { + "fid": 10, + "name": "toMid", + "type": 11, + }, + { + "fid": 11, + "name": "tunneling", + "type": 11, + }, + { + "fid": 12, + "name": "commParam", + "type": 11, + }, + { + "fid": 13, + "name": "stid", + "type": 11, + }, + { + "fid": 14, + "name": "encFromMid", + "type": 11, + }, + { + "fid": 15, + "name": "encToMid", + "type": 11, + }, + { + "fid": 16, + "name": "switchableToVideo", + "type": 2, + }, + { + "fid": 17, + "name": "voipAddress6", + "type": 11, + }, + { + "fid": 18, + "name": "w2pGw", + "type": 11, + }, + { + "fid": 19, + "name": "drCall", + "type": 2, + }, + { + "fid": 20, + "name": "stnpk", + "type": 11, + }, + ], + "Callback": [ + { + "fid": 1, + "name": "impEventUrl", + "type": 11, + }, + { + "fid": 2, + "name": "clickEventUrl", + "type": 11, + }, + { + "fid": 3, + "name": "muteEventUrl", + "type": 11, + }, + { + "fid": 4, + "name": "upvoteEventUrl", + "type": 11, + }, + { + "fid": 5, + "name": "downvoteEventUrl", + "type": 11, + }, + { + "fid": 6, + "name": "bounceEventUrl", + "type": 11, + }, + { + "fid": 7, + "name": "undeliveredEventUrl", + "type": 11, + }, + ], + "CampaignContent": [ + { + "fid": 1, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 2, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 3, + "name": "iconDisplayRule", + "struct": "IconDisplayRule", + }, + { + "fid": 4, + "name": "animationEffectContent", + "struct": "AnimationEffectContent", + }, + ], + "CampaignProperty": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "type": 11, + }, + { + "fid": 4, + "name": "headerContent", + "struct": "HeaderContent", + }, + { + "fid": 5, + "name": "campaignContent", + "struct": "CampaignContent", + }, + ], + "CanCreateCombinationStickerRequest": [ + { + "fid": 1, + "name": "packageIds", + "set": 11, + }, + ], + "CanCreateCombinationStickerResponse": [ + { + "fid": 1, + "name": "canCreate", + "type": 2, + }, + { + "fid": 2, + "name": "usablePackageIds", + "set": 11, + }, + ], + "CancelChatInvitationRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetUserMids", + "set": 11, + }, + ], + "CancelPaakAuthRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "CancelPaakAuthenticationRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "CancelPinCodeRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "CancelReactionRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "messageId", + "type": 10, + }, + ], + "CancelToSpeakRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "Candidate": [ + { + "fid": 1, + "name": "type", + "struct": "zR0_EnumC40579d", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "itemId", + "type": 11, + }, + ], + "Category": [ + { + "fid": 1, + "name": "id", + "type": 8, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + ], + "CategoryName": [ + { + "fid": 1, + "name": "categoryId", + "type": 8, + }, + { + "fid": 2, + "name": "names", + "map": 11, + "key": 11, + }, + ], + "ChangeSubscriptionRequest": [ + { + "fid": 1, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 2, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 3, + "name": "storeCode", + "struct": "Ob1_K1", + }, + ], + "ChangeSubscriptionResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_M1", + }, + { + "fid": 2, + "name": "orderId", + "type": 11, + }, + { + "fid": 3, + "name": "confirmUrl", + "type": 11, + }, + ], + "ChannelContext": [ + { + "fid": 1, + "name": "channelName", + "type": 11, + }, + ], + "ChannelDomain": [ + { + "fid": 1, + "name": "host", + "type": 11, + }, + { + "fid": 2, + "name": "removed", + "type": 2, + }, + ], + "ChannelDomains": [ + { + "fid": 1, + "name": "channelDomains", + "list": "ChannelDomain", + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + ], + "ChannelIdWithLastUpdated": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + { + "fid": 2, + "name": "lastUpdated", + "type": 10, + }, + ], + "ChannelInfo": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "entryPageUrl", + "type": 11, + }, + { + "fid": 5, + "name": "descriptionText", + "type": 11, + }, + { + "fid": 6, + "name": "provider", + "struct": "ChannelProvider", + }, + { + "fid": 7, + "name": "publicType", + "struct": "Pb1_P6", + }, + { + "fid": 8, + "name": "iconImage", + "type": 11, + }, + { + "fid": 9, + "name": "permissions", + "list": 11, + }, + { + "fid": 11, + "name": "iconThumbnailImage", + "type": 11, + }, + { + "fid": 12, + "name": "channelConfigurations", + "list": 8, + }, + { + "fid": 13, + "name": "lcsAllApiUsable", + "type": 2, + }, + { + "fid": 14, + "name": "allowedPermissions", + "set": "Pb1_EnumC12997g2", + }, + { + "fid": 15, + "name": "channelDomains", + "list": "ChannelDomain", + }, + { + "fid": 16, + "name": "updatedTimestamp", + "type": 10, + }, + { + "fid": 17, + "name": "featureLicenses", + "set": "Pb1_EnumC12941c2", + }, + ], + "ChannelNotificationSetting": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "notificationReceivable", + "type": 2, + }, + { + "fid": 4, + "name": "messageReceivable", + "type": 2, + }, + { + "fid": 5, + "name": "showDefault", + "type": 2, + }, + ], + "ChannelProvider": [ + { + "fid": 1, + "name": "name", + "type": 11, + }, + { + "fid": 2, + "name": "certified", + "type": 2, + }, + ], + "ChannelSettings": [ + { + "fid": 1, + "name": "unapprovedMessageReceivable", + "type": 2, + }, + ], + "ChannelToken": [ + { + "fid": 1, + "name": "token", + "type": 11, + }, + { + "fid": 2, + "name": "obsToken", + "type": 11, + }, + { + "fid": 3, + "name": "expiration", + "type": 10, + }, + { + "fid": 4, + "name": "refreshToken", + "type": 11, + }, + { + "fid": 5, + "name": "channelAccessToken", + "type": 11, + }, + ], + "Chat": [ + { + "fid": 1, + "name": "type", + "struct": "Pb1_Z2", + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "createdTime", + "type": 10, + }, + { + "fid": 4, + "name": "notificationDisabled", + "type": 2, + }, + { + "fid": 5, + "name": "favoriteTimestamp", + "type": 10, + }, + { + "fid": 6, + "name": "chatName", + "type": 11, + }, + { + "fid": 7, + "name": "picturePath", + "type": 11, + }, + { + "fid": 8, + "name": "extra", + "struct": "Pb1_C13208v4", + }, + ], + "ChatEffectMeta": [ + { + "fid": 1, + "name": "contentId", + "type": 10, + }, + { + "fid": 2, + "name": "category", + "struct": "Pb1_Q2", + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "defaultContent", + "struct": "ChatEffectMetaContent", + }, + { + "fid": 5, + "name": "optionalContents", + "map": "ChatEffectMetaContent", + "key": 8, + }, + { + "fid": 6, + "name": "keywords", + "set": 11, + }, + { + "fid": 7, + "name": "beginTimeMillis", + "type": 10, + }, + { + "fid": 8, + "name": "endTimeMillis", + "type": 10, + }, + { + "fid": 9, + "name": "createdTimeMillis", + "type": 10, + }, + { + "fid": 10, + "name": "updatedTimeMillis", + "type": 10, + }, + { + "fid": 11, + "name": "contentMetadataTag", + "type": 11, + }, + ], + "ChatEffectMetaContent": [ + { + "fid": 1, + "name": "url", + "type": 11, + }, + { + "fid": 2, + "name": "checksum", + "type": 11, + }, + ], + "ChatRoomAnnouncement": [ + { + "fid": 1, + "name": "announcementSeq", + "type": 10, + }, + { + "fid": 2, + "name": "type", + "struct": "Pb1_X2", + }, + { + "fid": 3, + "name": "contents", + "struct": "ChatRoomAnnouncementContents", + }, + { + "fid": 4, + "name": "creatorMid", + "type": 11, + }, + { + "fid": 5, + "name": "createdTime", + "type": 10, + }, + { + "fid": 6, + "name": "deletePermission", + "struct": "Pb1_W2", + }, + ], + "ChatRoomAnnouncementContentMetadata": [ + { + "fid": 1, + "name": "replace", + "type": 11, + }, + { + "fid": 2, + "name": "sticonOwnership", + "type": 11, + }, + { + "fid": 3, + "name": "postNotificationMetadata", + "type": 11, + }, + ], + "ChatRoomAnnouncementContents": [ + { + "fid": 1, + "name": "displayFields", + "type": 8, + }, + { + "fid": 2, + "name": "text", + "type": 11, + }, + { + "fid": 3, + "name": "link", + "type": 11, + }, + { + "fid": 4, + "name": "thumbnail", + "type": 11, + }, + { + "fid": 5, + "name": "contentMetadata", + "struct": "ChatRoomAnnouncementContentMetadata", + }, + ], + "ChatRoomBGM": [ + { + "fid": 1, + "name": "creatorMid", + "type": 11, + }, + { + "fid": 2, + "name": "createdTime", + "type": 10, + }, + { + "fid": 3, + "name": "chatRoomBGMInfo", + "type": 11, + }, + ], + "Chatapp": [ + { + "fid": 1, + "name": "chatappId", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "icon", + "type": 11, + }, + { + "fid": 4, + "name": "url", + "type": 11, + }, + { + "fid": 5, + "name": "availableChatTypes", + "list": 8, + }, + ], + "ChatroomPopup": [ + { + "fid": 1, + "name": "imageObsHash", + "type": 11, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "content", + "type": 11, + }, + { + "fid": 4, + "name": "targetRoles", + "set": 8, + }, + { + "fid": 5, + "name": "button", + "struct": "Button", + }, + { + "fid": 6, + "name": "type", + "struct": "ChatroomPopupType", + }, + { + "fid": 7, + "name": "animatedImage", + "type": 2, + }, + { + "fid": 8, + "name": "targetChatType", + "struct": "TargetChatType", + }, + { + "fid": 9, + "name": "targetChats", + "struct": "TargetChats", + }, + { + "fid": 10, + "name": "targetUserType", + "struct": "TargetUserType", + }, + { + "fid": 11, + "name": "targetUsers", + "struct": "TargetUsers", + }, + ], + "I80_C26396d": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "CheckEmailAssignedResponse": [ + { + "fid": 1, + "name": "sameAccountFromPhone", + "type": 2, + }, + ], + "CheckIfEncryptedE2EEKeyReceivedRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "secureChannelData", + "struct": "h80_t", + }, + ], + "CheckIfEncryptedE2EEKeyReceivedResponse": [ + { + "fid": 1, + "name": "nonce", + "type": 11, + }, + { + "fid": 2, + "name": "encryptedSecureChannelPayload", + "struct": "h80_Z70_a", + }, + { + "fid": 3, + "name": "userProfile", + "struct": "h80_V70_a", + }, + { + "fid": 4, + "name": "appTypeDifferentFromPrevDevice", + "type": 2, + }, + { + "fid": 5, + "name": "e2eeKeyBackupServiceConfig", + "type": 2, + }, + ], + "I80_C26400f": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "I80_C26402g": [ + { + "fid": 1, + "name": "verified", + "type": 2, + }, + ], + "CheckIfPhonePinCodeMsgVerifiedRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + ], + "CheckIfPhonePinCodeMsgVerifiedResponse": [ + { + "fid": 1, + "name": "accountExist", + "type": 2, + }, + { + "fid": 2, + "name": "sameUdidFromAccount", + "type": 2, + }, + { + "fid": 3, + "name": "allowedToRegister", + "type": 2, + }, + { + "fid": 11, + "name": "userProfile", + "struct": "UserProfile", + }, + ], + "CheckJoinCodeRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "joinCode", + "type": 11, + }, + ], + "CheckJoinCodeResponse": [ + { + "fid": 1, + "name": "joinToken", + "type": 11, + }, + ], + "CheckOperationResult": [ + { + "fid": 1, + "name": "tradable", + "type": 2, + }, + { + "fid": 2, + "name": "reason", + "type": 11, + }, + { + "fid": 3, + "name": "detailMessage", + "type": 11, + }, + ], + "CheckUserAgeAfterApprovalWithDocomoV2Request": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + { + "fid": 2, + "name": "agprm", + "type": 11, + }, + ], + "CheckUserAgeAfterApprovalWithDocomoV2Response": [ + { + "fid": 1, + "name": "userAgeType", + "struct": "Pb1_gd", + }, + ], + "CheckUserAgeWithDocomoV2Request": [ + { + "fid": 1, + "name": "authCode", + "type": 11, + }, + ], + "CheckUserAgeWithDocomoV2Response": [ + { + "fid": 1, + "name": "responseType", + "struct": "Pb1_EnumC12970e3", + }, + { + "fid": 2, + "name": "userAgeType", + "struct": "Pb1_gd", + }, + { + "fid": 3, + "name": "approvalRedirectUrl", + "type": 11, + }, + { + "fid": 4, + "name": "accessToken", + "type": 11, + }, + ], + "ClientNetworkStatus": [ + { + "fid": 1, + "name": "networkType", + "struct": "Pb1_EnumC12998g3", + }, + { + "fid": 2, + "name": "wifiSignals", + "list": "WifiSignal", + }, + ], + "CodeValue": [ + { + "fid": 1, + "name": "code", + "type": 11, + }, + ], + "Coin": [ + { + "fid": 1, + "name": "freeCoinBalance", + "type": 8, + }, + { + "fid": 2, + "name": "payedCoinBalance", + "type": 8, + }, + { + "fid": 3, + "name": "totalCoinBalance", + "type": 8, + }, + { + "fid": 4, + "name": "rewardCoinBalance", + "type": 8, + }, + ], + "CoinHistory": [ + { + "fid": 1, + "name": "payDate", + "type": 10, + }, + { + "fid": 2, + "name": "coinBalance", + "type": 8, + }, + { + "fid": 3, + "name": "coin", + "type": 8, + }, + { + "fid": 4, + "name": "price", + "type": 11, + }, + { + "fid": 5, + "name": "title", + "type": 11, + }, + { + "fid": 6, + "name": "refund", + "type": 2, + }, + { + "fid": 7, + "name": "paySeq", + "type": 11, + }, + { + "fid": 8, + "name": "currency", + "type": 11, + }, + { + "fid": 9, + "name": "currencySign", + "type": 11, + }, + { + "fid": 10, + "name": "displayPrice", + "type": 11, + }, + { + "fid": 11, + "name": "payload", + "struct": "CoinPayLoad", + }, + { + "fid": 12, + "name": "channelId", + "type": 11, + }, + ], + "CoinPayLoad": [ + { + "fid": 1, + "name": "payCoin", + "type": 8, + }, + { + "fid": 2, + "name": "freeCoin", + "type": 8, + }, + { + "fid": 3, + "name": "type", + "struct": "PayloadType", + }, + { + "fid": 4, + "name": "rewardCoin", + "type": 8, + }, + ], + "CoinProductItem": [ + { + "fid": 1, + "name": "itemId", + "type": 11, + }, + { + "fid": 2, + "name": "coin", + "type": 8, + }, + { + "fid": 3, + "name": "freeCoin", + "type": 8, + }, + { + "fid": 5, + "name": "currency", + "type": 11, + }, + { + "fid": 6, + "name": "price", + "type": 11, + }, + { + "fid": 7, + "name": "displayPrice", + "type": 11, + }, + { + "fid": 8, + "name": "name", + "type": 11, + }, + { + "fid": 9, + "name": "desc", + "type": 11, + }, + ], + "CoinPurchaseReservation": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "country", + "type": 11, + }, + { + "fid": 3, + "name": "currency", + "type": 11, + }, + { + "fid": 4, + "name": "price", + "type": 11, + }, + { + "fid": 5, + "name": "appStoreCode", + "struct": "jO0_EnumC27533B", + }, + { + "fid": 6, + "name": "language", + "type": 11, + }, + { + "fid": 7, + "name": "pgCode", + "struct": "jO0_EnumC27559z", + }, + { + "fid": 8, + "name": "redirectUrl", + "type": 11, + }, + ], + "Collection": [ + { + "fid": 1, + "name": "collectionId", + "type": 11, + }, + { + "fid": 2, + "name": "items", + "list": "CollectionItem", + }, + { + "fid": 3, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 4, + "name": "createdTimeMillis", + "type": 10, + }, + { + "fid": 5, + "name": "updatedTimeMillis", + "type": 10, + }, + ], + "CollectionItem": [ + { + "fid": 1, + "name": "itemId", + "type": 11, + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "displayData", + "struct": "Ob1_E", + }, + { + "fid": 4, + "name": "sortId", + "type": 8, + }, + ], + "CombinationStickerMetadata": [ + { + "fid": 1, + "name": "version", + "type": 10, + }, + { + "fid": 2, + "name": "canvasWidth", + "type": 4, + }, + { + "fid": 3, + "name": "canvasHeight", + "type": 4, + }, + { + "fid": 4, + "name": "stickerLayouts", + "list": "StickerLayout", + }, + ], + "CombinationStickerStickerData": [ + { + "fid": 1, + "name": "packageId", + "type": 11, + }, + { + "fid": 2, + "name": "stickerId", + "type": 11, + }, + { + "fid": 3, + "name": "version", + "type": 10, + }, + ], + "CompactShortcut": [ + { + "fid": 1, + "name": "iconPosition", + "type": 8, + }, + { + "fid": 2, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 3, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 4, + "name": "iconType", + "struct": "NZ0_EnumC12154b1", + }, + { + "fid": 5, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 6, + "name": "tsTargetId", + "type": 11, + }, + ], + "Configurations": [ + { + "fid": 1, + "name": "revision", + "type": 10, + }, + { + "fid": 2, + "name": "configMap", + "map": 11, + "key": 11, + }, + ], + "ConfigurationsParams": [ + { + "fid": 1, + "name": "regionOfUsim", + "type": 11, + }, + { + "fid": 2, + "name": "regionOfTelephone", + "type": 11, + }, + { + "fid": 3, + "name": "regionOfLocale", + "type": 11, + }, + { + "fid": 4, + "name": "carrier", + "type": 11, + }, + ], + "ConnectDeviceOperation": [ + { + "fid": 1, + "name": "connectionTimeoutMillis", + "type": 10, + }, + ], + "ConnectEapAccountRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "Contact": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "createdTime", + "type": 10, + }, + { + "fid": 10, + "name": "type", + "struct": "ContactType", + }, + { + "fid": 11, + "name": "status", + "struct": "ContactStatus", + }, + { + "fid": 21, + "name": "relation", + "struct": "Pb1_EnumC13151r3", + }, + { + "fid": 22, + "name": "displayName", + "type": 11, + }, + { + "fid": 23, + "name": "phoneticName", + "type": 11, + }, + { + "fid": 24, + "name": "pictureStatus", + "type": 11, + }, + { + "fid": 25, + "name": "thumbnailUrl", + "type": 11, + }, + { + "fid": 26, + "name": "statusMessage", + "type": 11, + }, + { + "fid": 27, + "name": "displayNameOverridden", + "type": 11, + }, + { + "fid": 28, + "name": "favoriteTime", + "type": 10, + }, + { + "fid": 31, + "name": "capableVoiceCall", + "type": 2, + }, + { + "fid": 32, + "name": "capableVideoCall", + "type": 2, + }, + { + "fid": 33, + "name": "capableMyhome", + "type": 2, + }, + { + "fid": 34, + "name": "capableBuddy", + "type": 2, + }, + { + "fid": 35, + "name": "attributes", + "type": 8, + }, + { + "fid": 36, + "name": "settings", + "type": 10, + }, + { + "fid": 37, + "name": "picturePath", + "type": 11, + }, + { + "fid": 38, + "name": "recommendParams", + "type": 11, + }, + { + "fid": 39, + "name": "friendRequestStatus", + "struct": "FriendRequestStatus", + }, + { + "fid": 40, + "name": "musicProfile", + "type": 11, + }, + { + "fid": 42, + "name": "videoProfile", + "type": 11, + }, + { + "fid": 43, + "name": "statusMessageContentMetadata", + "map": 11, + "key": 11, + }, + { + "fid": 44, + "name": "avatarProfile", + "struct": "AvatarProfile", + }, + { + "fid": 45, + "name": "friendRingtone", + "type": 11, + }, + { + "fid": 46, + "name": "friendRingbackTone", + "type": 11, + }, + { + "fid": 47, + "name": "nftProfile", + "type": 2, + }, + { + "fid": 48, + "name": "pictureSource", + "struct": "Pb1_N6", + }, + { + "fid": 49, + "name": "profileId", + "type": 11, + }, + ], + "ContactCalendarEvent": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "state", + "struct": "Pb1_EnumC13082m3", + }, + { + "fid": 3, + "name": "year", + "type": 8, + }, + { + "fid": 4, + "name": "month", + "type": 8, + }, + { + "fid": 5, + "name": "day", + "type": 8, + }, + ], + "ContactCalendarEvents": [ + { + "fid": 1, + "name": "events", + "key": 8, + }, + ], + "ContactModification": [ + { + "fid": 1, + "name": "type", + "struct": "Pb1_EnumC13029i6", + }, + { + "fid": 2, + "name": "luid", + "type": 11, + }, + { + "fid": 11, + "name": "phones", + "list": 11, + }, + { + "fid": 12, + "name": "emails", + "list": 11, + }, + { + "fid": 13, + "name": "userids", + "list": 11, + }, + { + "fid": 14, + "name": "mobileContactName", + "type": 11, + }, + { + "fid": 15, + "name": "phoneticName", + "type": 11, + }, + ], + "ContactRegistration": [ + { + "fid": 1, + "name": "contact", + "struct": "Contact", + }, + { + "fid": 10, + "name": "luid", + "type": 11, + }, + { + "fid": 11, + "name": "contactType", + "struct": "ContactType", + }, + { + "fid": 12, + "name": "contactKey", + "type": 11, + }, + ], + "Content": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + { + "fid": 2, + "name": "desc", + "type": 11, + }, + { + "fid": 3, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 4, + "name": "fallbackUrl", + "type": 11, + }, + { + "fid": 5, + "name": "badge", + "struct": "Uf_C14864f", + }, + { + "fid": 6, + "name": "image", + "struct": "Image", + }, + { + "fid": 7, + "name": "button", + "struct": "ActionButton", + }, + { + "fid": 8, + "name": "callback", + "struct": "Callback", + }, + { + "fid": 9, + "name": "noBidCallback", + "struct": "NoBidCallback", + }, + { + "fid": 10, + "name": "ttl", + "type": 10, + }, + { + "fid": 11, + "name": "muteSupported", + "type": 2, + }, + { + "fid": 12, + "name": "voteSupported", + "type": 2, + }, + { + "fid": 13, + "name": "priority", + "struct": "Priority", + }, + ], + "ContentRequest": [ + { + "fid": 1, + "name": "os", + "struct": "Uf_EnumC14873o", + }, + { + "fid": 2, + "name": "appv", + "type": 11, + }, + { + "fid": 3, + "name": "lineAcceptableLanguage", + "type": 11, + }, + { + "fid": 4, + "name": "countryCode", + "type": 11, + }, + ], + "CountryCode": [ + { + "fid": 1, + "name": "code", + "type": 11, + }, + ], + "CreateChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "type", + "struct": "Pb1_Z2", + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "targetUserMids", + "set": 11, + }, + { + "fid": 5, + "name": "picturePath", + "type": 11, + }, + ], + "CreateChatResponse": [ + { + "fid": 1, + "name": "chat", + "struct": "Chat", + }, + ], + "CreateCollectionForUserRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + ], + "CreateCollectionForUserResponse": [ + { + "fid": 1, + "name": "collection", + "struct": "Collection", + }, + ], + "CreateCombinationStickerRequest": [ + { + "fid": 1, + "name": "metadata", + "struct": "CombinationStickerMetadata", + }, + { + "fid": 2, + "name": "stickers", + "list": "CombinationStickerStickerData", + }, + { + "fid": 3, + "name": "idOfPreviousVersionOfCombinationSticker", + "type": 11, + }, + ], + "CreateCombinationStickerResponse": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + ], + "CreateGroupCallUrlRequest": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + ], + "CreateGroupCallUrlResponse": [ + { + "fid": 1, + "name": "url", + "struct": "GroupCallUrl", + }, + ], + "CreateMultiProfileRequest": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + ], + "CreateMultiProfileResponse": [ + { + "fid": 1, + "name": "profileId", + "type": 11, + }, + ], + "I80_C26406i": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "CreateSessionResponse": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "CreateSquareChatAnnouncementRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatAnnouncement", + "struct": "SquareChatAnnouncement", + }, + ], + "CreateSquareChatAnnouncementResponse": [ + { + "fid": 1, + "name": "announcement", + "struct": "SquareChatAnnouncement", + }, + ], + "CreateSquareChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 3, + "name": "squareMemberMids", + "list": 11, + }, + ], + "CreateSquareChatResponse": [ + { + "fid": 1, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 2, + "name": "squareChatStatus", + "struct": "SquareChatStatus", + }, + { + "fid": 3, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + { + "fid": 4, + "name": "squareChatFeatureSet", + "struct": "SquareChatFeatureSet", + }, + ], + "CreateSquareRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "square", + "struct": "Square", + }, + { + "fid": 3, + "name": "creator", + "struct": "SquareMember", + }, + ], + "CreateSquareResponse": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "creator", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "authority", + "struct": "SquareAuthority", + }, + { + "fid": 4, + "name": "status", + "struct": "SquareStatus", + }, + { + "fid": 5, + "name": "featureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + { + "fid": 7, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 8, + "name": "squareChatStatus", + "struct": "SquareChatStatus", + }, + { + "fid": 9, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + { + "fid": 10, + "name": "squareChatFeatureSet", + "struct": "SquareChatFeatureSet", + }, + ], + "CurrencyProperty": [ + { + "fid": 1, + "name": "code", + "type": 11, + }, + { + "fid": 2, + "name": "symbol", + "type": 11, + }, + { + "fid": 3, + "name": "position", + "struct": "NZ0_EnumC12197q", + }, + { + "fid": 4, + "name": "scale", + "type": 8, + }, + ], + "CustomBadgeLabel": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + { + "fid": 2, + "name": "backgroundColorCode", + "type": 11, + }, + ], + "CustomColor": [ + { + "fid": 1, + "name": "hexColorCode", + "type": 11, + }, + ], + "DataRetention": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "productRegion", + "type": 11, + }, + { + "fid": 3, + "name": "productType", + "struct": "fN0_EnumC24466B", + }, + { + "fid": 4, + "name": "inDataRetention", + "type": 2, + }, + { + "fid": 5, + "name": "dataRetentionEndTime", + "type": 10, + }, + ], + "DataUserBot": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 4, + "name": "placeName", + "type": 11, + }, + ], + "DeleteGroupCallUrlRequest": [ + { + "fid": 1, + "name": "urlId", + "type": 11, + }, + ], + "DeleteMultiProfileRequest": [ + { + "fid": 1, + "name": "profileId", + "type": 11, + }, + ], + "DeleteOtherFromChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetUserMids", + "set": 11, + }, + ], + "DeleteSafetyStatusRequest": [ + { + "fid": 1, + "name": "disasterId", + "type": 11, + }, + ], + "DeleteSelfFromChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "lastSeenMessageDeliveredTime", + "type": 10, + }, + { + "fid": 4, + "name": "lastSeenMessageId", + "type": 11, + }, + { + "fid": 5, + "name": "lastMessageDeliveredTime", + "type": 10, + }, + { + "fid": 6, + "name": "lastMessageId", + "type": 11, + }, + ], + "DeleteSquareChatAnnouncementRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "announcementSeq", + "type": 10, + }, + ], + "DeleteSquareChatRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + ], + "DeleteSquareRequest": [ + { + "fid": 2, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + ], + "DestinationLIFFRequest": [ + { + "fid": 1, + "name": "originalUrl", + "type": 11, + }, + ], + "DestinationLIFFResponse": [ + { + "fid": 1, + "name": "destinationUrl", + "type": 11, + }, + ], + "DestroyMessageRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 4, + "name": "messageId", + "type": 11, + }, + { + "fid": 5, + "name": "threadMid", + "type": 11, + }, + ], + "DestroyMessagesRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 4, + "name": "messageIds", + "set": 11, + }, + { + "fid": 5, + "name": "threadMid", + "type": 11, + }, + ], + "DetermineMediaMessageFlowRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "DetermineMediaMessageFlowResponse": [ + { + "fid": 1, + "name": "flowMap", + "map": 8, + "key": 8, + }, + { + "fid": 2, + "name": "cacheTtlMillis", + "type": 10, + }, + ], + "Device": [ + { + "fid": 1, + "name": "udid", + "type": 11, + }, + { + "fid": 2, + "name": "deviceModel", + "type": 11, + }, + ], + "DeviceInfo": [ + { + "fid": 1, + "name": "deviceName", + "type": 11, + }, + { + "fid": 2, + "name": "systemName", + "type": 11, + }, + { + "fid": 3, + "name": "systemVersion", + "type": 11, + }, + { + "fid": 4, + "name": "model", + "type": 11, + }, + { + "fid": 5, + "name": "webViewVersion", + "type": 11, + }, + { + "fid": 10, + "name": "carrierCode", + "struct": "CarrierCode", + }, + { + "fid": 11, + "name": "carrierName", + "type": 11, + }, + { + "fid": 20, + "name": "applicationType", + "struct": "ApplicationType", + }, + ], + "DeviceLinkRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + ], + "DeviceLinkResponse": [ + { + "fid": 1, + "name": "latestOffset", + "type": 10, + }, + ], + "DeviceUnlinkRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + ], + "DisasterInfo": [ + { + "fid": 1, + "name": "disasterId", + "type": 11, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "region", + "type": 11, + }, + { + "fid": 4, + "name": "disasterDescription", + "type": 11, + }, + { + "fid": 5, + "name": "seeMoreUrl", + "type": 11, + }, + { + "fid": 7, + "name": "status", + "struct": "vh_EnumC37632c", + }, + { + "fid": 8, + "name": "highImpact", + "type": 2, + }, + ], + "DisconnectEapAccountRequest": [ + { + "fid": 1, + "name": "eapType", + "struct": "Q70_q", + }, + ], + "DisplayMoney": [ + { + "fid": 1, + "name": "amount", + "type": 11, + }, + { + "fid": 2, + "name": "amountString", + "type": 11, + }, + { + "fid": 3, + "name": "currency", + "type": 11, + }, + ], + "E2EEKeyChain": [ + { + "fid": 1, + "name": "keychain", + "list": "Pb1_V3", + }, + ], + "E2EEMessageInfo": [ + { + "fid": 1, + "name": "contentType", + "struct": "ContentType", + }, + { + "fid": 2, + "name": "contentMetadata", + "map": 11, + "key": 11, + }, + { + "fid": 3, + "name": "chunks", + "list": 11, + }, + ], + "E2EEMetadata": [ + { + "fid": 1, + "name": "e2EEPublicKeyId", + "type": 10, + }, + ], + "E2EENegotiationResult": [ + { + "fid": 1, + "name": "allowedTypes", + "set": 8, + }, + { + "fid": 2, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + { + "fid": 3, + "name": "specVersion", + "type": 8, + }, + ], + "EapLogin": [ + { + "fid": 1, + "name": "type", + "struct": "a80_EnumC16644b", + }, + { + "fid": 2, + "name": "accessToken", + "type": 11, + }, + { + "fid": 3, + "name": "countryCode", + "type": 11, + }, + ], + "EditItemsInCollectionRequest": [ + { + "fid": 1, + "name": "collectionId", + "type": 11, + }, + { + "fid": 2, + "name": "items", + "list": "CollectionItem", + }, + ], + "EditorsPickBannerForClient": [ + { + "fid": 1, + "name": "id", + "type": 10, + }, + { + "fid": 2, + "name": "endPageBannerImageUrl", + "type": 11, + }, + { + "fid": 3, + "name": "defaulteditorsPickShowcaseType", + "struct": "Ob1_I", + }, + { + "fid": 4, + "name": "showNewBadge", + "type": 2, + }, + { + "fid": 5, + "name": "name", + "type": 11, + }, + { + "fid": 6, + "name": "description", + "type": 11, + }, + ], + "Eg_C8928b": [], + "Eh_C8933a": [], + "Eh_C8935c": [], + "EstablishE2EESessionRequest": [ + { + "fid": 1, + "name": "clientPublicKey", + "type": 11, + }, + ], + "EstablishE2EESessionResponse": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "serverPublicKey", + "type": 11, + }, + { + "fid": 3, + "name": "expireAt", + "type": 10, + }, + ], + "EventButton": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + { + "fid": 2, + "name": "linkUrl", + "type": 11, + }, + ], + "EvidenceId": [ + { + "fid": 1, + "name": "spaceId", + "type": 11, + }, + { + "fid": 2, + "name": "objectId", + "type": 11, + }, + ], + "ExecuteOnetimeScenarioOperation": [ + { + "fid": 1, + "name": "connectionId", + "type": 11, + }, + { + "fid": 2, + "name": "scenario", + "struct": "Scenario", + }, + ], + "ExistPinCodeResponse": [ + { + "fid": 1, + "name": "exists", + "type": 2, + }, + ], + "ExtendedMessageBox": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "midType", + "struct": "MIDType", + }, + { + "fid": 4, + "name": "lastDeliveredMessageId", + "struct": "MessageBoxV2MessageId", + }, + { + "fid": 5, + "name": "lastSeenMessageId", + "type": 10, + }, + { + "fid": 6, + "name": "unreadCount", + "type": 10, + }, + { + "fid": 7, + "name": "lastMessages", + "list": "Message", + }, + { + "fid": 8, + "name": "lastRemovedMessageId", + "type": 10, + }, + { + "fid": 9, + "name": "lastRemovedTime", + "type": 10, + }, + { + "fid": 10, + "name": "hiddenAtMessageId", + "type": 10, + }, + ], + "ExtendedProfile": [ + { + "fid": 1, + "name": "birthday", + "struct": "ExtendedProfileBirthday", + }, + ], + "ExtendedProfileBirthday": [ + { + "fid": 1, + "name": "year", + "type": 11, + }, + { + "fid": 2, + "name": "yearPrivacyLevelType", + "struct": "Pb1_H6", + }, + { + "fid": 3, + "name": "yearEnabled", + "type": 2, + }, + { + "fid": 5, + "name": "day", + "type": 11, + }, + { + "fid": 6, + "name": "dayPrivacyLevelType", + "struct": "Pb1_H6", + }, + { + "fid": 7, + "name": "dayEnabled", + "type": 2, + }, + ], + "FetchLiveTalkEventsRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "syncToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + ], + "FetchLiveTalkEventsResponse": [ + { + "fid": 1, + "name": "events", + "list": "LiveTalkEvent", + }, + { + "fid": 2, + "name": "syncToken", + "type": 11, + }, + { + "fid": 3, + "name": "hasMore", + "type": 2, + }, + ], + "FetchMyEventsRequest": [ + { + "fid": 1, + "name": "subscriptionId", + "type": 10, + }, + { + "fid": 2, + "name": "syncToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + ], + "FetchMyEventsResponse": [ + { + "fid": 1, + "name": "subscription", + "struct": "SubscriptionState", + }, + { + "fid": 2, + "name": "events", + "list": "SquareEvent", + }, + { + "fid": 3, + "name": "syncToken", + "type": 11, + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + ], + "FetchOperationsRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + { + "fid": 2, + "name": "offsetFrom", + "type": 10, + }, + ], + "FetchOperationsResponse": [ + { + "fid": 1, + "name": "operations", + "list": "ThingsOperation", + }, + { + "fid": 2, + "name": "hasNext", + "type": 2, + }, + ], + "FetchPhonePinCodeMsgRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + ], + "FetchPhonePinCodeMsgResponse": [ + { + "fid": 1, + "name": "pinCodeMessage", + "type": 11, + }, + { + "fid": 2, + "name": "destinationPhoneNumber", + "type": 11, + }, + ], + "FetchSquareChatEventsRequest": [ + { + "fid": 1, + "name": "subscriptionId", + "type": 10, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "syncToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "direction", + "struct": "FetchDirection", + }, + { + "fid": 6, + "name": "inclusive", + "struct": "BooleanState", + }, + { + "fid": 7, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 8, + "name": "fetchType", + "struct": "FetchType", + }, + { + "fid": 9, + "name": "threadMid", + "type": 11, + }, + ], + "FetchSquareChatEventsResponse": [ + { + "fid": 1, + "name": "subscription", + "struct": "SubscriptionState", + }, + { + "fid": 2, + "name": "events", + "list": "SquareEvent", + }, + { + "fid": 3, + "name": "syncToken", + "type": 11, + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + ], + "FileMeta": [ + { + "fid": 1, + "name": "url", + "type": 11, + }, + { + "fid": 2, + "name": "hash", + "type": 11, + }, + ], + "FindChatByTicketRequest": [ + { + "fid": 1, + "name": "ticketId", + "type": 11, + }, + ], + "FindChatByTicketResponse": [ + { + "fid": 1, + "name": "chat", + "struct": "Chat", + }, + ], + "FindLiveTalkByInvitationTicketRequest": [ + { + "fid": 1, + "name": "invitationTicket", + "type": 11, + }, + ], + "FindLiveTalkByInvitationTicketResponse": [ + { + "fid": 1, + "name": "chatInvitationTicket", + "type": 11, + }, + { + "fid": 2, + "name": "liveTalk", + "struct": "LiveTalk", + }, + { + "fid": 3, + "name": "chat", + "struct": "SquareChat", + }, + { + "fid": 4, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 5, + "name": "chatMembershipState", + "struct": "SquareChatMembershipState", + }, + { + "fid": 6, + "name": "squareAdultOnly", + "struct": "BooleanState", + }, + ], + "FindSquareByEmidRequest": [ + { + "fid": 1, + "name": "emid", + "type": 11, + }, + ], + "FindSquareByEmidResponse": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "myMembership", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 4, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + ], + "FindSquareByInvitationTicketRequest": [ + { + "fid": 2, + "name": "invitationTicket", + "type": 11, + }, + ], + "FindSquareByInvitationTicketResponse": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "myMembership", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 4, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + { + "fid": 7, + "name": "chat", + "struct": "SquareChat", + }, + { + "fid": 8, + "name": "chatStatus", + "struct": "SquareChatStatus", + }, + ], + "FindSquareByInvitationTicketV2Request": [ + { + "fid": 1, + "name": "invitationTicket", + "type": 11, + }, + ], + "FindSquareByInvitationTicketV2Response": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "myMembership", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 4, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + { + "fid": 7, + "name": "chat", + "struct": "SquareChat", + }, + { + "fid": 8, + "name": "chatStatus", + "struct": "SquareChatStatusWithoutMessage", + }, + ], + "FollowBuddyDetail": [ + { + "fid": 1, + "name": "iconType", + "type": 8, + }, + ], + "FollowProfile": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "picturePath", + "type": 11, + }, + { + "fid": 4, + "name": "following", + "type": 2, + }, + { + "fid": 5, + "name": "allowFollow", + "type": 2, + }, + { + "fid": 6, + "name": "followBuddyDetail", + "struct": "FollowBuddyDetail", + }, + ], + "FollowRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + ], + "FontMeta": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "displayName", + "type": 11, + }, + { + "fid": 4, + "name": "type", + "struct": "VR0_WR0_a", + }, + { + "fid": 5, + "name": "font", + "struct": "FileMeta", + }, + { + "fid": 6, + "name": "fontSubset", + "struct": "FileMeta", + }, + { + "fid": 7, + "name": "expiresAtMillis", + "type": 10, + }, + ], + "ForceEndLiveTalkRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "ForceSelectedSubTabInfo": [ + { + "fid": 1, + "name": "subTabId", + "type": 11, + }, + { + "fid": 2, + "name": "forceSelectedSubTabRevision", + "type": 10, + }, + { + "fid": 3, + "name": "wrsDefaultTabModelId", + "type": 11, + }, + ], + "FormattedPhoneNumbers": [ + { + "fid": 1, + "name": "localFormatPhoneNumber", + "type": 11, + }, + { + "fid": 2, + "name": "prettifiedFormatPhoneNumber", + "type": 11, + }, + ], + "FriendRequest": [ + { + "fid": 1, + "name": "eMid", + "type": 11, + }, + { + "fid": 2, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "direction", + "struct": "Pb1_F4", + }, + { + "fid": 4, + "name": "method", + "struct": "Pb1_G4", + }, + { + "fid": 5, + "name": "param", + "type": 11, + }, + { + "fid": 6, + "name": "timestamp", + "type": 10, + }, + { + "fid": 7, + "name": "seqId", + "type": 10, + }, + { + "fid": 10, + "name": "displayName", + "type": 11, + }, + { + "fid": 11, + "name": "picturePath", + "type": 11, + }, + { + "fid": 12, + "name": "pictureStatus", + "type": 11, + }, + ], + "FriendRequestsInfo": [ + { + "fid": 1, + "name": "totalIncomingCount", + "type": 8, + }, + { + "fid": 2, + "name": "totalOutgoingCount", + "type": 8, + }, + { + "fid": 3, + "name": "recentIncomings", + "list": "FriendRequest", + }, + { + "fid": 4, + "name": "recentOutgoings", + "list": "FriendRequest", + }, + { + "fid": 5, + "name": "totalIncomingLimit", + "type": 8, + }, + { + "fid": 6, + "name": "totalOutgoingLimit", + "type": 8, + }, + ], + "FullSyncResponse": [ + { + "fid": 1, + "name": "reasons", + "set": 8, + }, + { + "fid": 2, + "name": "nextRevision", + "type": 10, + }, + ], + "GattReadAction": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "characteristicUuid", + "type": 11, + }, + ], + "Geolocation": [ + { + "fid": 1, + "name": "longitude", + "type": 4, + }, + { + "fid": 2, + "name": "latitude", + "type": 4, + }, + { + "fid": 3, + "name": "accuracy", + "struct": "GeolocationAccuracy", + }, + { + "fid": 4, + "name": "altitudeMeters", + "type": 4, + }, + { + "fid": 5, + "name": "velocityMetersPerSecond", + "type": 4, + }, + { + "fid": 6, + "name": "bearingDegrees", + "type": 4, + }, + { + "fid": 7, + "name": "beaconData", + "list": "BeaconData", + }, + ], + "GeolocationAccuracy": [ + { + "fid": 1, + "name": "radiusMeters", + "type": 4, + }, + { + "fid": 2, + "name": "radiusConfidence", + "type": 4, + }, + { + "fid": 3, + "name": "altitudeAccuracy", + "type": 4, + }, + { + "fid": 4, + "name": "velocityAccuracy", + "type": 4, + }, + { + "fid": 5, + "name": "bearingAccuracy", + "type": 4, + }, + { + "fid": 6, + "name": "accuracyMode", + "struct": "Pb1_EnumC13050k", + }, + ], + "GetAccessTokenRequest": [ + { + "fid": 1, + "name": "fontId", + "type": 11, + }, + ], + "GetAccessTokenResponse": [ + { + "fid": 1, + "name": "queryParams", + "key": 11, + }, + { + "fid": 2, + "name": "headers", + "key": 11, + }, + { + "fid": 3, + "name": "expiresAtMillis", + "type": 10, + }, + ], + "I80_C26410k": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "GetAcctVerifMethodResponse": [ + { + "fid": 1, + "name": "availableMethod", + "struct": "T70_EnumC14392c", + }, + { + "fid": 2, + "name": "sameAccountFromAuthFactor", + "type": 2, + }, + ], + "I80_C26412l": [ + { + "fid": 1, + "name": "availableMethod", + "struct": "I80_EnumC26392b", + }, + ], + "GetAllChatMidsRequest": [ + { + "fid": 1, + "name": "withMemberChats", + "type": 2, + }, + { + "fid": 2, + "name": "withInvitedChats", + "type": 2, + }, + ], + "GetAllChatMidsResponse": [ + { + "fid": 1, + "name": "memberChatMids", + "set": 11, + }, + { + "fid": 2, + "name": "invitedChatMids", + "set": 11, + }, + ], + "GetAllowedRegistrationMethodResponse": [ + { + "fid": 1, + "name": "registrationMethod", + "struct": "T70_Z0", + }, + ], + "GetAssertionChallengeResponse": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "challenge", + "type": 11, + }, + ], + "GetAttestationChallengeResponse": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "challenge", + "type": 11, + }, + ], + "GetBalanceResponse": [ + { + "fid": 1, + "name": "balance", + "struct": "Balance", + }, + ], + "GetBalanceSummaryResponseV2": [ + { + "fid": 1, + "name": "payInfo", + "struct": "LinePayInfo", + }, + { + "fid": 2, + "name": "payPromotions", + "list": "LinePayPromotion", + }, + { + "fid": 4, + "name": "pointInfo", + "struct": "LinePointInfo", + }, + { + "fid": 5, + "name": "balanceShortcutInfo", + "struct": "BalanceShortcutInfo", + }, + ], + "GetBalanceSummaryV4WithPayV3Response": [ + { + "fid": 1, + "name": "payInfo", + "struct": "LinePayInfoV3", + }, + { + "fid": 2, + "name": "payPromotions", + "list": "LinePayPromotion", + }, + { + "fid": 3, + "name": "balanceShortcutInfo", + "struct": "BalanceShortcutInfoV4", + }, + { + "fid": 4, + "name": "pointInfo", + "struct": "LinePointInfo", + }, + ], + "GetBirthdayEffectResponse": [ + { + "fid": 1, + "name": "effect", + "struct": "HomeEffect", + }, + ], + "GetBleDeviceRequest": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "psdi", + "type": 11, + }, + ], + "GetBuddyChatBarRequest": [ + { + "fid": 1, + "name": "buddyMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatBarRevision", + "type": 10, + }, + { + "fid": 3, + "name": "richMenuId", + "type": 11, + }, + ], + "GetBuddyLiveRequest": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + ], + "GetBuddyLiveResponse": [ + { + "fid": 1, + "name": "info", + "struct": "BuddyLive", + }, + { + "fid": 2, + "name": "refreshedIn", + "type": 10, + }, + ], + "GetBuddyStatusBarV2Request": [ + { + "fid": 1, + "name": "botMid", + "type": 11, + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + ], + "GetCallStatusRequest": [ + { + "fid": 1, + "name": "basicSearchId", + "type": 11, + }, + { + "fid": 2, + "name": "otp", + "type": 11, + }, + ], + "GetCallStatusResponse": [ + { + "fid": 1, + "name": "isInsideBusinessHours", + "type": 2, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "isCallSettingEnabled", + "type": 2, + }, + { + "fid": 4, + "name": "isExpiredOtp", + "type": 2, + }, + { + "fid": 5, + "name": "requireOtpInCallUrl", + "type": 2, + }, + ], + "GetCampaignRequest": [ + { + "fid": 1, + "name": "campaignType", + "type": 11, + }, + ], + "GetCampaignResponse": [ + { + "fid": 1, + "name": "campaignStatus", + "struct": "NZ0_EnumC12188n", + }, + { + "fid": 2, + "name": "campaignProperty", + "struct": "CampaignProperty", + }, + { + "fid": 3, + "name": "intervalDateTimeMillis", + "type": 10, + }, + ], + "GetChallengeForPaakAuthRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "GetChallengeForPaakAuthResponse": [ + { + "fid": 1, + "name": "options", + "struct": "o80_p80_j", + }, + ], + "GetChallengeForPrimaryRegRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "GetChallengeForPrimaryRegResponse": [ + { + "fid": 1, + "name": "options", + "struct": "PublicKeyCredentialCreationOptions", + }, + ], + "GetChannelContextRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "GetChannelContextResponse": [ + { + "fid": 1, + "name": "channelContext", + "struct": "n80_W70_a", + }, + ], + "GetChatappRequest": [ + { + "fid": 1, + "name": "chatappId", + "type": 11, + }, + { + "fid": 2, + "name": "language", + "type": 11, + }, + ], + "GetChatappResponse": [ + { + "fid": 1, + "name": "app", + "struct": "Chatapp", + }, + ], + "GetChatsRequest": [ + { + "fid": 1, + "name": "chatMids", + "list": 11, + }, + { + "fid": 2, + "name": "withMembers", + "type": 2, + }, + { + "fid": 3, + "name": "withInvitees", + "type": 2, + }, + ], + "GetChatsResponse": [ + { + "fid": 1, + "name": "chats", + "list": "Chat", + }, + ], + "GetCoinHistoryRequest": [ + { + "fid": 1, + "name": "appStoreCode", + "struct": "jO0_EnumC27533B", + }, + { + "fid": 2, + "name": "country", + "type": 11, + }, + { + "fid": 3, + "name": "language", + "type": 11, + }, + { + "fid": 4, + "name": "searchEndDate", + "type": 11, + }, + { + "fid": 5, + "name": "offset", + "type": 8, + }, + { + "fid": 6, + "name": "limit", + "type": 8, + }, + ], + "GetCoinHistoryResponse": [ + { + "fid": 1, + "name": "histories", + "list": "CoinHistory", + }, + { + "fid": 2, + "name": "balance", + "struct": "Coin", + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "hasNext", + "type": 2, + }, + ], + "GetCoinProductsRequest": [ + { + "fid": 1, + "name": "appStoreCode", + "struct": "jO0_EnumC27533B", + }, + { + "fid": 2, + "name": "country", + "type": 11, + }, + { + "fid": 3, + "name": "language", + "type": 11, + }, + { + "fid": 4, + "name": "pgCode", + "struct": "jO0_EnumC27559z", + }, + ], + "GetCoinProductsResponse": [ + { + "fid": 1, + "name": "items", + "list": "CoinProductItem", + }, + ], + "GetContactCalendarEventResponse": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "userType", + "struct": "LN0_X0", + }, + { + "fid": 3, + "name": "ContactCalendarEvents", + "struct": "ContactCalendarEvents", + }, + { + "fid": 4, + "name": "snapshotTimeMillis", + "type": 10, + }, + ], + "GetContactCalendarEventTarget": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + ], + "GetContactCalendarEventsRequest": [ + { + "fid": 1, + "name": "targetUsers", + "list": "GetContactCalendarEventTarget", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + { + "fid": 3, + "name": "requiredContactCalendarEvents", + "set": "Pb1_EnumC13096n3", + }, + ], + "GetContactCalendarEventsResponse": [ + { + "fid": 1, + "name": "responses", + "list": "GetContactCalendarEventResponse", + }, + ], + "GetContactV3Response": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "userType", + "struct": "LN0_X0", + }, + { + "fid": 3, + "name": "targetProfileDetail", + "struct": "TargetProfileDetail", + }, + { + "fid": 4, + "name": "friendDetail", + "struct": "LN0_Z", + }, + { + "fid": 5, + "name": "blockDetail", + "struct": "LN0_V", + }, + { + "fid": 6, + "name": "recommendationDetail", + "struct": "LN0_y0", + }, + { + "fid": 7, + "name": "notificationSettingEntry", + "struct": "NotificationSettingEntry", + }, + ], + "GetContactV3Target": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + ], + "GetContactsV3Request": [ + { + "fid": 1, + "name": "targetUsers", + "list": "GetContactV3Target", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + { + "fid": 3, + "name": "checkUserStatusStrictly", + "type": 2, + }, + ], + "GetContactsV3Response": [ + { + "fid": 1, + "name": "responses", + "list": "GetContactV3Response", + }, + ], + "I80_C26413m": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "simCard", + "struct": "I80_B0", + }, + ], + "I80_C26414n": [ + { + "fid": 1, + "name": "countryCode", + "type": 11, + }, + { + "fid": 2, + "name": "countryInEEA", + "type": 2, + }, + { + "fid": 3, + "name": "countrySetOfEEA", + "set": 11, + }, + ], + "GetCountryInfoResponse": [ + { + "fid": 1, + "name": "countryCode", + "type": 11, + }, + { + "fid": 2, + "name": "countryInEEA", + "type": 2, + }, + { + "fid": 3, + "name": "countrySetOfEEA", + "set": 11, + }, + ], + "GetDisasterCasesResponse": [ + { + "fid": 1, + "name": "disasters", + "list": "DisasterInfo", + }, + { + "fid": 2, + "name": "messageTemplate", + "list": 11, + }, + { + "fid": 3, + "name": "ttlInMillis", + "type": 10, + }, + ], + "GetE2EEKeyBackupCertificatesResponse": [ + { + "fid": 1, + "name": "urlHashList", + "list": 11, + }, + ], + "GetE2EEKeyBackupInfoResponse": [ + { + "fid": 1, + "name": "blobHeaderHash", + "type": 11, + }, + { + "fid": 2, + "name": "blobPayloadHash", + "type": 11, + }, + { + "fid": 3, + "name": "missingKeyIds", + "set": 8, + }, + { + "fid": 4, + "name": "startTimeMillis", + "type": 10, + }, + { + "fid": 5, + "name": "endTimeMillis", + "type": 10, + }, + ], + "GetExchangeKeyRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "GetExchangeKeyResponse": [ + { + "fid": 2, + "name": "exchangeKey", + "map": 11, + "key": 11, + }, + ], + "GetFollowBlacklistRequest": [ + { + "fid": 1, + "name": "cursor", + "type": 11, + }, + ], + "GetFollowBlacklistResponse": [ + { + "fid": 1, + "name": "profiles", + "list": "FollowProfile", + }, + { + "fid": 2, + "name": "cursor", + "type": 11, + }, + ], + "GetFollowersRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + { + "fid": 2, + "name": "cursor", + "type": 11, + }, + ], + "GetFollowersResponse": [ + { + "fid": 1, + "name": "profiles", + "list": "FollowProfile", + }, + { + "fid": 2, + "name": "cursor", + "type": 11, + }, + { + "fid": 3, + "name": "followingCount", + "type": 10, + }, + { + "fid": 4, + "name": "followerCount", + "type": 10, + }, + ], + "GetFollowingsRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + { + "fid": 2, + "name": "cursor", + "type": 11, + }, + ], + "GetFollowingsResponse": [ + { + "fid": 1, + "name": "profiles", + "list": "FollowProfile", + }, + { + "fid": 2, + "name": "cursor", + "type": 11, + }, + { + "fid": 3, + "name": "followingCount", + "type": 10, + }, + { + "fid": 4, + "name": "followerCount", + "type": 10, + }, + ], + "GetFontMetasRequest": [ + { + "fid": 1, + "name": "requestCause", + "struct": "VR0_l", + }, + ], + "GetFontMetasResponse": [ + { + "fid": 1, + "name": "fontMetas", + "list": "FontMeta", + }, + { + "fid": 2, + "name": "ttlInSeconds", + "type": 8, + }, + ], + "GetFriendDetailResponse": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "friendDetail", + "struct": "LN0_Z", + }, + ], + "GetFriendDetailTarget": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + ], + "GetFriendDetailsRequest": [ + { + "fid": 1, + "name": "targetUsers", + "list": "GetFriendDetailTarget", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetFriendDetailsResponse": [ + { + "fid": 1, + "name": "responses", + "list": "GetFriendDetailResponse", + }, + ], + "GetGnbBadgeStatusRequest": [ + { + "fid": 1, + "name": "uenRevision", + "type": 11, + }, + ], + "GetGnbBadgeStatusResponse": [ + { + "fid": 1, + "name": "uenRevision", + "type": 11, + }, + { + "fid": 2, + "name": "badgeStatus", + "struct": "NZ0_EnumC12170h", + }, + ], + "GetGoogleAdOptionsRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "adScreen", + "struct": "AdScreen", + }, + ], + "GetGoogleAdOptionsResponse": [ + { + "fid": 1, + "name": "showAd", + "type": 2, + }, + { + "fid": 2, + "name": "contentUrls", + "list": 11, + }, + { + "fid": 3, + "name": "customTargeting", + "key": 11, + }, + { + "fid": 4, + "name": "clientCacheTtlSeconds", + "type": 8, + }, + ], + "GetGroupCallUrlInfoRequest": [ + { + "fid": 1, + "name": "urlId", + "type": 11, + }, + ], + "GetGroupCallUrlInfoResponse": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + { + "fid": 2, + "name": "createdTimeMillis", + "type": 10, + }, + ], + "GetGroupCallUrlsResponse": [ + { + "fid": 1, + "name": "urls", + "list": "GroupCallUrl", + }, + ], + "GetHomeFlexContentRequest": [ + { + "fid": 1, + "name": "supportedFlexVersion", + "type": 8, + }, + ], + "GetHomeFlexContentResponse": [ + { + "fid": 1, + "name": "placements", + "list": "HomeTabPlacement", + }, + { + "fid": 2, + "name": "expireTimeMillis", + "type": 10, + }, + { + "fid": 3, + "name": "gnbBadgeId", + "type": 11, + }, + { + "fid": 4, + "name": "gnbBadgeExpireTimeMillis", + "type": 10, + }, + ], + "GetHomeServiceListResponse": [ + { + "fid": 1, + "name": "services", + "list": "HomeService", + }, + { + "fid": 2, + "name": "fixedServiceIds", + "list": 8, + }, + { + "fid": 3, + "name": "pinnedServiceCandidateIds", + "list": 8, + }, + { + "fid": 4, + "name": "categories", + "list": "HomeCategory", + }, + { + "fid": 5, + "name": "fixedServiceIdsV3", + "list": 8, + }, + { + "fid": 6, + "name": "specificServiceId", + "type": 8, + }, + ], + "GetHomeServicesRequest": [ + { + "fid": 1, + "name": "ids", + "list": 8, + }, + ], + "GetHomeServicesResponse": [ + { + "fid": 1, + "name": "services", + "list": "HomeService", + }, + ], + "GetIncentiveStatusResponse": [ + { + "fid": 1, + "name": "paypayPoint", + "type": 8, + }, + { + "fid": 2, + "name": "incentiveCode", + "type": 11, + }, + { + "fid": 3, + "name": "subscribedFromViral", + "type": 2, + }, + ], + "GetInvitationTicketUrlRequest": [ + { + "fid": 2, + "name": "mid", + "type": 11, + }, + ], + "GetInvitationTicketUrlResponse": [ + { + "fid": 1, + "name": "invitationURL", + "type": 11, + }, + ], + "GetJoinableSquareChatsRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 10, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 11, + "name": "limit", + "type": 8, + }, + ], + "GetJoinableSquareChatsResponse": [ + { + "fid": 1, + "name": "squareChats", + "list": "SquareChat", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalSquareChatCount", + "type": 8, + }, + { + "fid": 4, + "name": "squareChatStatuses", + "map": "SquareChatStatus", + "key": 11, + }, + ], + "GetJoinedMembershipByBotMidRequest": [ + { + "fid": 1, + "name": "botMid", + "type": 11, + }, + ], + "GetJoinedMembershipRequest": [ + { + "fid": 1, + "name": "uniqueKey", + "type": 11, + }, + ], + "GetJoinedSquareChatsRequest": [ + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + ], + "GetJoinedSquareChatsResponse": [ + { + "fid": 1, + "name": "chats", + "list": "SquareChat", + }, + { + "fid": 2, + "name": "chatMembers", + "map": "SquareChatMember", + "key": 11, + }, + { + "fid": 3, + "name": "statuses", + "map": "SquareChatStatus", + "key": 11, + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + ], + "GetJoinedSquaresRequest": [ + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + ], + "GetJoinedSquaresResponse": [ + { + "fid": 1, + "name": "squares", + "list": "Square", + }, + { + "fid": 2, + "name": "members", + "map": "SquareMember", + "key": 11, + }, + { + "fid": 3, + "name": "authorities", + "map": "SquareAuthority", + "key": 11, + }, + { + "fid": 4, + "name": "statuses", + "map": "SquareStatus", + "key": 11, + }, + { + "fid": 5, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 6, + "name": "noteStatuses", + "map": "NoteStatus", + "key": 11, + }, + ], + "GetKeyBackupCertificatesV2Response": [ + { + "fid": 1, + "name": "urlHashList", + "list": 11, + }, + ], + "GetLFLSuggestionResponse": [ + { + "fid": 1, + "name": "majorVersion", + "type": 11, + }, + { + "fid": 2, + "name": "minorVersion", + "type": 11, + }, + { + "fid": 3, + "name": "clusterLink", + "type": 11, + }, + ], + "GetLiveTalkInfoForNonMemberRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "speakers", + "list": 11, + }, + ], + "GetLiveTalkInfoForNonMemberResponse": [ + { + "fid": 1, + "name": "chatName", + "type": 11, + }, + { + "fid": 2, + "name": "chatImageObsHash", + "type": 11, + }, + { + "fid": 3, + "name": "liveTalk", + "struct": "LiveTalk", + }, + { + "fid": 4, + "name": "speakers", + "list": "LiveTalkSpeaker", + }, + { + "fid": 5, + "name": "chatInvitationTicket", + "type": 11, + }, + ], + "GetLiveTalkInvitationUrlRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "GetLiveTalkInvitationUrlResponse": [ + { + "fid": 1, + "name": "invitationUrl", + "type": 11, + }, + ], + "GetLiveTalkSpeakersForNonMemberRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "speakers", + "list": 11, + }, + ], + "GetLiveTalkSpeakersForNonMemberResponse": [ + { + "fid": 1, + "name": "speakers", + "list": "LiveTalkSpeaker", + }, + ], + "GetLoginActorContextRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "GetLoginActorContextResponse": [ + { + "fid": 1, + "name": "applicationType", + "type": 11, + }, + { + "fid": 2, + "name": "ipAddress", + "type": 11, + }, + { + "fid": 3, + "name": "location", + "type": 11, + }, + ], + "GetMappedProfileIdsRequest": [ + { + "fid": 1, + "name": "targetUserMids", + "list": 11, + }, + ], + "GetMappedProfileIdsResponse": [ + { + "fid": 1, + "name": "mappings", + "map": 11, + "key": 11, + }, + ], + "I80_C26415o": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "I80_C26416p": [ + { + "fid": 1, + "name": "maskedEmail", + "type": 11, + }, + ], + "GetMaskedEmailResponse": [ + { + "fid": 1, + "name": "maskedEmail", + "type": 11, + }, + ], + "GetMessageReactionsRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "MessageReactionType", + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 5, + "name": "limit", + "type": 8, + }, + { + "fid": 6, + "name": "threadMid", + "type": 11, + }, + ], + "GetMessageReactionsResponse": [ + { + "fid": 1, + "name": "reactions", + "list": "SquareMessageReaction", + }, + { + "fid": 2, + "name": "status", + "struct": "SquareMessageReactionStatus", + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + ], + "GetModuleLayoutV4Request": [ + { + "fid": 2, + "name": "etag", + "type": 11, + }, + ], + "GetModulesRequestV2": [ + { + "fid": 1, + "name": "etag", + "type": 11, + }, + { + "fid": 2, + "name": "deviceAdId", + "type": 11, + }, + ], + "GetModulesRequestV3": [ + { + "fid": 1, + "name": "etag", + "type": 11, + }, + { + "fid": 2, + "name": "tabIdentifier", + "struct": "NZ0_EnumC12169g1", + }, + { + "fid": 3, + "name": "deviceAdId", + "type": 11, + }, + { + "fid": 4, + "name": "agreedWithTargetingAdByMid", + "type": 2, + }, + ], + "GetModulesV4WithStatusRequest": [ + { + "fid": 1, + "name": "etag", + "type": 11, + }, + { + "fid": 2, + "name": "subTabId", + "type": 11, + }, + { + "fid": 3, + "name": "deviceAdId", + "type": 11, + }, + { + "fid": 4, + "name": "agreedWithTargetingAdByMid", + "type": 2, + }, + { + "fid": 5, + "name": "deviceId", + "type": 11, + }, + ], + "GetMusicSubscriptionStatusResponse": [ + { + "fid": 1, + "name": "validUntil", + "type": 10, + }, + { + "fid": 2, + "name": "expired", + "type": 2, + }, + { + "fid": 3, + "name": "isStickersPremiumEnabled", + "type": 2, + }, + ], + "GetMyAssetInformationV2Request": [ + { + "fid": 1, + "name": "refresh", + "type": 2, + }, + ], + "GetMyAssetInformationV2Response": [ + { + "fid": 1, + "name": "headerInfo", + "struct": "HeaderInfo", + }, + { + "fid": 2, + "name": "assetServiceInfos", + "list": "AssetServiceInfo", + }, + { + "fid": 3, + "name": "serviceDisclaimerInfo", + "struct": "ServiceDisclaimerInfo", + }, + { + "fid": 4, + "name": "pointInfo", + "struct": "PointInfo", + }, + { + "fid": 5, + "name": "linkRewardInfo", + "struct": "LinkRewardInfo", + }, + { + "fid": 6, + "name": "pocketMoneyInfo", + "struct": "PocketMoneyInfo", + }, + { + "fid": 7, + "name": "scoreInfo", + "struct": "ScoreInfo", + }, + { + "fid": 8, + "name": "timestamp", + "type": 10, + }, + ], + "GetMyChatappsRequest": [ + { + "fid": 1, + "name": "language", + "type": 11, + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + ], + "GetMyChatappsResponse": [ + { + "fid": 1, + "name": "apps", + "list": "MyChatapp", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + ], + "GetMyDashboardRequest": [ + { + "fid": 1, + "name": "tabIdentifier", + "struct": "NZ0_EnumC12169g1", + }, + ], + "GetMyDashboardResponse": [ + { + "fid": 1, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + { + "fid": 2, + "name": "messages", + "list": "MyDashboardItem", + }, + { + "fid": 3, + "name": "cacheTimeSec", + "type": 8, + }, + { + "fid": 4, + "name": "cautionText", + "type": 11, + }, + ], + "GetNoteStatusRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + ], + "GetNoteStatusResponse": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "status", + "struct": "NoteStatus", + }, + ], + "GetNotificationSettingsRequest": [ + { + "fid": 1, + "name": "chatMids", + "set": 11, + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetNotificationSettingsResponse": [ + { + "fid": 1, + "name": "notificationSettingEntries", + "map": "NotificationSettingEntry", + "key": 11, + }, + ], + "I80_C26417q": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "GetPasswordHashingParametersForPwdRegRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "GetPasswordHashingParametersForPwdRegResponse": [ + { + "fid": 1, + "name": "params", + "struct": "PasswordHashingParameters", + }, + { + "fid": 2, + "name": "passwordValidationRule", + "list": "PasswordValidationRule", + }, + ], + "I80_C26418r": [ + { + "fid": 1, + "name": "params", + "struct": "PasswordHashingParameters", + }, + { + "fid": 2, + "name": "passwordValidationRule", + "list": "PasswordValidationRule", + }, + ], + "GetPasswordHashingParametersForPwdVerifRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "I80_C26419s": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "GetPasswordHashingParametersForPwdVerifResponse": [ + { + "fid": 1, + "name": "isV1HashRequired", + "type": 2, + }, + { + "fid": 2, + "name": "v1HashParams", + "struct": "V1PasswordHashingParameters", + }, + { + "fid": 3, + "name": "hashParams", + "struct": "PasswordHashingParameters", + }, + ], + "I80_C26420t": [ + { + "fid": 1, + "name": "isV1HashRequired", + "type": 2, + }, + { + "fid": 2, + "name": "v1HashParams", + "struct": "V1PasswordHashingParameters", + }, + { + "fid": 3, + "name": "hashParams", + "struct": "PasswordHashingParameters", + }, + ], + "GetPasswordHashingParametersRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + ], + "GetPasswordHashingParametersResponse": [ + { + "fid": 1, + "name": "hmacKey", + "type": 11, + }, + { + "fid": 2, + "name": "scryptParams", + "struct": "ScryptParams", + }, + { + "fid": 3, + "name": "passwordValidationRule", + "list": "PasswordValidationRule", + }, + ], + "GetPhoneVerifMethodForRegistrationRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "device", + "struct": "Device", + }, + { + "fid": 3, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + ], + "GetPhoneVerifMethodForRegistrationResponse": [ + { + "fid": 1, + "name": "availableMethods", + "list": 8, + }, + { + "fid": 2, + "name": "prettifiedPhoneNumber", + "type": 11, + }, + ], + "GetPhoneVerifMethodV2Request": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "device", + "struct": "Device", + }, + { + "fid": 3, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + ], + "I80_C26421u": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + ], + "I80_C26422v": [ + { + "fid": 1, + "name": "availableMethods", + "list": 8, + }, + { + "fid": 3, + "name": "prettifiedPhoneNumber", + "type": 11, + }, + ], + "GetPhoneVerifMethodV2Response": [ + { + "fid": 1, + "name": "availableMethods", + "list": 8, + }, + { + "fid": 3, + "name": "prettifiedPhoneNumber", + "type": 11, + }, + ], + "GetPhotoboothBalanceResponse": [ + { + "fid": 1, + "name": "availableTickets", + "type": 8, + }, + { + "fid": 2, + "name": "nextTicketAvailableAt", + "type": 10, + }, + ], + "GetPopularKeywordsResponse": [ + { + "fid": 1, + "name": "popularKeywords", + "list": "PopularKeyword", + }, + { + "fid": 2, + "name": "expiredAt", + "type": 10, + }, + ], + "GetPredefinedScenarioSetsRequest": [ + { + "fid": 1, + "name": "deviceIds", + "list": 11, + }, + ], + "GetPredefinedScenarioSetsResponse": [ + { + "fid": 1, + "name": "scenarioSets", + "map": "ScenarioSet", + "key": 11, + }, + ], + "GetPremiumContextForMigResponse": [ + { + "fid": 1, + "name": "isPremiumActive", + "type": 2, + }, + { + "fid": 2, + "name": "isPremiumBackupActive", + "type": 2, + }, + { + "fid": 3, + "name": "premiumType", + "struct": "T70_L", + }, + { + "fid": 4, + "name": "availablePremiumTypes", + "list": 8, + }, + ], + "GetPremiumDataRetentionResponse": [ + { + "fid": 1, + "name": "dataRetentions", + "list": "DataRetention", + }, + { + "fid": 2, + "name": "noSyncUntil", + "type": 10, + }, + ], + "GetPremiumStatusResponse": [ + { + "fid": 1, + "name": "active", + "type": 2, + }, + { + "fid": 2, + "name": "validUntil", + "type": 10, + }, + { + "fid": 3, + "name": "updatedTime", + "type": 10, + }, + { + "fid": 4, + "name": "freeTrialUsed", + "type": 2, + }, + { + "fid": 5, + "name": "willExpire", + "type": 2, + }, + { + "fid": 6, + "name": "newToYahooShopping", + "type": 2, + }, + { + "fid": 8, + "name": "idLinked", + "type": 2, + }, + { + "fid": 9, + "name": "onFreeTrial", + "type": 2, + }, + { + "fid": 10, + "name": "duplicated", + "type": 2, + }, + { + "fid": 11, + "name": "planType", + "struct": "fN0_p", + }, + { + "fid": 12, + "name": "noSyncUntil", + "type": 10, + }, + { + "fid": 13, + "name": "productId", + "type": 11, + }, + { + "fid": 14, + "name": "currency", + "type": 11, + }, + { + "fid": 15, + "name": "price", + "type": 11, + }, + { + "fid": 16, + "name": "status", + "struct": "fN0_H", + }, + { + "fid": 17, + "name": "invitedByFriend", + "type": 2, + }, + { + "fid": 18, + "name": "canceledProviders", + "list": 8, + }, + { + "fid": 19, + "name": "nextPaymentTime", + "type": 10, + }, + ], + "GetPreviousMessagesV2Request": [ + { + "fid": 1, + "name": "messageBoxId", + "type": 11, + }, + { + "fid": 2, + "name": "endMessageId", + "struct": "MessageBoxV2MessageId", + }, + { + "fid": 3, + "name": "messagesCount", + "type": 8, + }, + { + "fid": 4, + "name": "withReadCount", + "type": 2, + }, + { + "fid": 5, + "name": "receivedOnly", + "type": 2, + }, + ], + "GetProductLatestVersionForUserRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + ], + "GetProductLatestVersionForUserResponse": [ + { + "fid": 1, + "name": "latestVersion", + "type": 10, + }, + { + "fid": 2, + "name": "latestVersionString", + "type": 11, + }, + ], + "GetProductRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "carrierCode", + "type": 11, + }, + { + "fid": 4, + "name": "saveBrowsingHistory", + "type": 2, + }, + ], + "GetProductResponse": [ + { + "fid": 1, + "name": "productDetail", + "struct": "ProductDetail", + }, + ], + "GetProfileRequest": [ + { + "fid": 1, + "name": "profileId", + "type": 11, + }, + ], + "GetProfileResponse": [ + { + "fid": 1, + "name": "profile", + "struct": "Profile", + }, + ], + "GetProfilesRequest": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetProfilesResponse": [ + { + "fid": 1, + "name": "profiles", + "list": "Profile", + }, + ], + "GetPublishedMembershipsRequest": [ + { + "fid": 1, + "name": "basicSearchId", + "type": 11, + }, + ], + "GetQuickMenuResponse": [ + { + "fid": 1, + "name": "pointInfo", + "struct": "QuickMenuPointInfo", + }, + { + "fid": 2, + "name": "couponInfo", + "struct": "QuickMenuCouponInfo", + }, + { + "fid": 3, + "name": "myCardInfo", + "struct": "QuickMenuMyCardInfo", + }, + ], + "GetRecommendationDetailResponse": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "recommendationOrNot", + "struct": "LN0_y0", + }, + ], + "GetRecommendationDetailTarget": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + ], + "GetRecommendationDetailsRequest": [ + { + "fid": 1, + "name": "targetUsers", + "list": "GetRecommendationDetailTarget", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetRecommendationDetailsResponse": [ + { + "fid": 1, + "name": "responses", + "list": "GetRecommendationDetailResponse", + }, + ], + "GetRecommendationResponse": [ + { + "fid": 1, + "name": "results", + "list": "ProductSearchSummary", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalSize", + "type": 10, + }, + ], + "GetRepairElementsRequest": [ + { + "fid": 1, + "name": "profile", + "type": 2, + }, + { + "fid": 2, + "name": "settings", + "type": 2, + }, + { + "fid": 3, + "name": "configurations", + "struct": "ConfigurationsParams", + }, + { + "fid": 4, + "name": "numLocalJoinedGroups", + "type": 8, + }, + { + "fid": 5, + "name": "numLocalInvitedGroups", + "type": 8, + }, + { + "fid": 6, + "name": "numLocalFriends", + "type": 8, + }, + { + "fid": 7, + "name": "numLocalRecommendations", + "type": 8, + }, + { + "fid": 8, + "name": "numLocalBlockedFriends", + "type": 8, + }, + { + "fid": 9, + "name": "numLocalBlockedRecommendations", + "type": 8, + }, + { + "fid": 10, + "name": "localGroupMembers", + "map": "RepairGroupMembers", + "key": 11, + }, + { + "fid": 11, + "name": "syncReason", + "struct": "Pb1_V7", + }, + { + "fid": 12, + "name": "localProfileMappings", + "map": 8, + "key": 11, + }, + ], + "GetRepairElementsResponse": [ + { + "fid": 1, + "name": "profile", + "struct": "RepairTriggerProfileElement", + }, + { + "fid": 2, + "name": "settings", + "struct": "RepairTriggerSettingsElement", + }, + { + "fid": 3, + "name": "configurations", + "struct": "RepairTriggerConfigurationsElement", + }, + { + "fid": 4, + "name": "numJoinedGroups", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 5, + "name": "numInvitedGroups", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 6, + "name": "numFriends", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 7, + "name": "numRecommendations", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 8, + "name": "numBlockedFriends", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 9, + "name": "numBlockedRecommendations", + "struct": "RepairTriggerNumElement", + }, + { + "fid": 10, + "name": "groupMembers", + "struct": "RepairTriggerGroupMembersElement", + }, + { + "fid": 11, + "name": "profileMappings", + "struct": "RepairTriggerProfileMappingListElement", + }, + ], + "GetRequest": [ + { + "fid": 1, + "name": "keyName", + "type": 11, + }, + { + "fid": 2, + "name": "ns", + "struct": "t80_h", + }, + ], + "GetResourceFileReponse": [ + { + "fid": 1, + "name": "tagClusterFileResponse", + "struct": "GetTagClusterFileResponse", + }, + ], + "GetResourceFileRequest": [ + { + "fid": 1, + "name": "tagClusterFileRequest", + "struct": "Ob1_C12642m0", + }, + { + "fid": 2, + "name": "staging", + "type": 2, + }, + ], + "GetResponse": [ + { + "fid": 1, + "name": "value", + "struct": "SettingValue", + }, + ], + "GetResponseStatusRequest": [ + { + "fid": 1, + "name": "botMid", + "type": 11, + }, + ], + "GetResponseStatusResponse": [ + { + "fid": 1, + "name": "displayedResponseStatus", + "struct": "jf_EnumC27712a", + }, + ], + "GetSCCRequest": [ + { + "fid": 1, + "name": "basicSearchId", + "type": 11, + }, + ], + "I80_C26423w": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "I80_C26424x": [ + { + "fid": 1, + "name": "encryptionKey", + "struct": "I80_y0", + }, + ], + "GetSeasonalEffectsResponse": [ + { + "fid": 1, + "name": "effects", + "list": "HomeEffect", + }, + ], + "GetSecondAuthMethodResponse": [ + { + "fid": 1, + "name": "secondAuthMethod", + "struct": "T70_e1", + }, + ], + "GetServiceShortcutMenuResponse": [ + { + "fid": 1, + "name": "revision", + "type": 11, + }, + { + "fid": 2, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 3, + "name": "expandable", + "type": 2, + }, + { + "fid": 4, + "name": "serviceShortcuts", + "list": "ServiceShortcut", + }, + { + "fid": 5, + "name": "menuDescription", + "type": 11, + }, + { + "fid": 6, + "name": "numberOfItemsInRow", + "type": 8, + }, + ], + "GetSessionContentBeforeMigCompletionResponse": [ + { + "fid": 1, + "name": "appTypeDifferentFromPrevDevice", + "type": 2, + }, + { + "fid": 2, + "name": "e2eeKeyBackupServiceConfig", + "type": 2, + }, + { + "fid": 4, + "name": "e2eeKeyBackupPeriodServiceConfig", + "type": 8, + }, + ], + "GetSmartChannelRecommendationsRequest": [ + { + "fid": 1, + "name": "maxResults", + "type": 8, + }, + { + "fid": 2, + "name": "placement", + "type": 11, + }, + { + "fid": 3, + "name": "testMode", + "type": 2, + }, + ], + "GetSmartChannelRecommendationsResponse": [ + { + "fid": 1, + "name": "smartChannelRecommendations", + "list": "SmartChannelRecommendation", + }, + { + "fid": 2, + "name": "minInterval", + "type": 8, + }, + { + "fid": 3, + "name": "requestId", + "type": 11, + }, + ], + "GetSquareAuthoritiesRequest": [ + { + "fid": 2, + "name": "squareMids", + "set": 11, + }, + ], + "GetSquareAuthoritiesResponse": [ + { + "fid": 1, + "name": "authorities", + "map": "SquareAuthority", + "key": 11, + }, + ], + "GetSquareAuthorityRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + ], + "GetSquareAuthorityResponse": [ + { + "fid": 1, + "name": "authority", + "struct": "SquareAuthority", + }, + ], + "GetSquareBotRequest": [ + { + "fid": 1, + "name": "botMid", + "type": 11, + }, + ], + "GetSquareBotResponse": [ + { + "fid": 1, + "name": "squareBot", + "struct": "SquareBot", + }, + ], + "GetSquareCategoriesResponse": [ + { + "fid": 1, + "name": "categoryList", + "list": "Category", + }, + ], + "GetSquareChatAnnouncementsRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatAnnouncementsResponse": [ + { + "fid": 1, + "name": "announcements", + "list": "SquareChatAnnouncement", + }, + ], + "GetSquareChatEmidRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatEmidResponse": [ + { + "fid": 1, + "name": "squareChatEmid", + "type": 11, + }, + ], + "GetSquareChatFeatureSetRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatFeatureSetResponse": [ + { + "fid": 1, + "name": "squareChatFeatureSet", + "struct": "SquareChatFeatureSet", + }, + ], + "GetSquareChatMemberRequest": [ + { + "fid": 2, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatMemberResponse": [ + { + "fid": 1, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + ], + "GetSquareChatMembersRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + ], + "GetSquareChatMembersResponse": [ + { + "fid": 1, + "name": "squareChatMembers", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "contentsAttributes", + "map": 8, + "key": 11, + }, + ], + "GetSquareChatRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatResponse": [ + { + "fid": 1, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 2, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + { + "fid": 3, + "name": "squareChatStatus", + "struct": "SquareChatStatus", + }, + ], + "GetSquareChatStatusRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareChatStatusResponse": [ + { + "fid": 1, + "name": "chatStatus", + "struct": "SquareChatStatus", + }, + ], + "GetSquareEmidRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + ], + "GetSquareEmidResponse": [ + { + "fid": 1, + "name": "squareEmid", + "type": 11, + }, + ], + "GetSquareFeatureSetRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + ], + "GetSquareFeatureSetResponse": [ + { + "fid": 1, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + ], + "GetSquareInfoByChatMidRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + ], + "GetSquareInfoByChatMidResponse": [ + { + "fid": 1, + "name": "defaultChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareName", + "type": 11, + }, + { + "fid": 3, + "name": "squareDesc", + "type": 11, + }, + ], + "GetSquareMemberRelationRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetSquareMemberMid", + "type": 11, + }, + ], + "GetSquareMemberRelationResponse": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "targetSquareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "relation", + "struct": "SquareMemberRelation", + }, + ], + "GetSquareMemberRelationsRequest": [ + { + "fid": 2, + "name": "state", + "struct": "SquareMemberRelationState", + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + ], + "GetSquareMemberRelationsResponse": [ + { + "fid": 1, + "name": "squareMembers", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "relations", + "map": "SquareMemberRelation", + "key": 11, + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + ], + "GetSquareMemberRequest": [ + { + "fid": 2, + "name": "squareMemberMid", + "type": 11, + }, + ], + "GetSquareMemberResponse": [ + { + "fid": 1, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 2, + "name": "relation", + "struct": "SquareMemberRelation", + }, + { + "fid": 3, + "name": "oneOnOneChatMid", + "type": 11, + }, + { + "fid": 4, + "name": "contentsAttribute", + "struct": "ContentsAttribute", + }, + ], + "GetSquareMembersBySquareRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareMemberMids", + "set": 11, + }, + ], + "GetSquareMembersBySquareResponse": [ + { + "fid": 1, + "name": "members", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "contentsAttributes", + "map": 8, + "key": 11, + }, + ], + "GetSquareMembersRequest": [ + { + "fid": 2, + "name": "mids", + "set": 11, + }, + ], + "GetSquareMembersResponse": [ + { + "fid": 1, + "name": "members", + "map": "SquareMember", + "key": 11, + }, + ], + "GetSquareRequest": [ + { + "fid": 2, + "name": "mid", + "type": 11, + }, + ], + "GetSquareResponse": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "myMembership", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 4, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + { + "fid": 7, + "name": "extraInfo", + "struct": "SquareExtraInfo", + }, + ], + "GetSquareStatusRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + ], + "GetSquareStatusResponse": [ + { + "fid": 1, + "name": "squareStatus", + "struct": "SquareStatus", + }, + ], + "GetSquareThreadMidRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + ], + "GetSquareThreadMidResponse": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + ], + "GetSquareThreadRequest": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + { + "fid": 2, + "name": "includeRootMessage", + "type": 2, + }, + ], + "GetSquareThreadResponse": [ + { + "fid": 1, + "name": "squareThread", + "struct": "SquareThread", + }, + { + "fid": 2, + "name": "myThreadMember", + "struct": "SquareThreadMember", + }, + { + "fid": 3, + "name": "rootMessage", + "struct": "SquareMessage", + }, + ], + "GetStudentInformationResponse": [ + { + "fid": 1, + "name": "studentInformation", + "struct": "StudentInformation", + }, + { + "fid": 2, + "name": "isValid", + "type": 2, + }, + ], + "GetSubscriptionPlansRequest": [ + { + "fid": 1, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 2, + "name": "storeCode", + "struct": "Ob1_K1", + }, + ], + "GetSubscriptionPlansResponse": [ + { + "fid": 1, + "name": "plans", + "list": "SubscriptionPlan", + }, + ], + "GetSubscriptionStatusRequest": [ + { + "fid": 1, + "name": "includeOtherOwnedSubscriptions", + "type": 2, + }, + ], + "GetSubscriptionStatusResponse": [ + { + "fid": 1, + "name": "subscriptions", + "map": "SubscriptionStatus", + "key": 8, + }, + { + "fid": 2, + "name": "hasValidStudentInformation", + "type": 2, + }, + { + "fid": 3, + "name": "otherOwnedSubscriptions", + "key": 8, + }, + ], + "GetSuggestDictionarySettingResponse": [ + { + "fid": 1, + "name": "results", + "list": "SuggestDictionarySetting", + }, + ], + "GetSuggestResourcesV2Request": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productIds", + "list": 11, + }, + ], + "GetSuggestResourcesV2Response": [ + { + "fid": 1, + "name": "suggestResources", + "map": "SuggestResource", + "key": 11, + }, + ], + "GetSuggestTrialRecommendationResponse": [ + { + "fid": 1, + "name": "recommendations", + "list": "SuggestTrialRecommendation", + }, + { + "fid": 2, + "name": "expiresAt", + "type": 10, + }, + { + "fid": 3, + "name": "recommendationGrouping", + "type": 11, + }, + ], + "GetTagClusterFileResponse": [ + { + "fid": 1, + "name": "path", + "type": 11, + }, + { + "fid": 2, + "name": "updatedTimeMillis", + "type": 10, + }, + ], + "GetTaiwanBankBalanceRequest": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + { + "fid": 2, + "name": "authorizationCode", + "type": 11, + }, + { + "fid": 3, + "name": "codeVerifier", + "type": 11, + }, + ], + "GetTaiwanBankBalanceResponse": [ + { + "fid": 1, + "name": "maintenaceText", + "type": 11, + }, + { + "fid": 2, + "name": "lineBankPromotions", + "list": "LineBankPromotion", + }, + { + "fid": 3, + "name": "taiwanBankBalanceInfo", + "struct": "TaiwanBankBalanceInfo", + }, + { + "fid": 4, + "name": "lineBankShortcutInfo", + "struct": "LineBankShortcutInfo", + }, + { + "fid": 5, + "name": "loginParameters", + "struct": "TaiwanBankLoginParameters", + }, + ], + "GetTargetProfileResponse": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "userType", + "struct": "LN0_X0", + }, + { + "fid": 3, + "name": "targetProfileDetail", + "struct": "TargetProfileDetail", + }, + ], + "GetTargetProfileTarget": [ + { + "fid": 1, + "name": "targetUserMid", + "type": 11, + }, + ], + "GetTargetProfilesRequest": [ + { + "fid": 1, + "name": "targetUsers", + "list": "GetTargetProfileTarget", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetTargetProfilesResponse": [ + { + "fid": 1, + "name": "responses", + "list": "GetTargetProfileResponse", + }, + ], + "GetTargetingPopupResponse": [ + { + "fid": 1, + "name": "targetingPopups", + "list": "PopupProperty", + }, + { + "fid": 2, + "name": "intervalTimeSec", + "type": 8, + }, + ], + "GetThaiBankBalanceRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + ], + "GetThaiBankBalanceResponse": [ + { + "fid": 1, + "name": "maintenaceText", + "type": 11, + }, + { + "fid": 2, + "name": "thaiBankBalanceInfo", + "struct": "ThaiBankBalanceInfo", + }, + { + "fid": 3, + "name": "lineBankPromotions", + "list": "LineBankPromotion", + }, + { + "fid": 4, + "name": "lineBankShortcutInfo", + "struct": "LineBankShortcutInfo", + }, + ], + "GetTotalCoinBalanceRequest": [ + { + "fid": 1, + "name": "appStoreCode", + "struct": "jO0_EnumC27533B", + }, + ], + "GetTotalCoinBalanceResponse": [ + { + "fid": 1, + "name": "totalBalance", + "type": 11, + }, + { + "fid": 2, + "name": "paidCoinBalance", + "type": 11, + }, + { + "fid": 3, + "name": "freeCoinBalance", + "type": 11, + }, + { + "fid": 4, + "name": "rewardCoinBalance", + "type": 11, + }, + { + "fid": 5, + "name": "expectedAutoExchangedCoinBalance", + "type": 11, + }, + ], + "GetUserCollectionsRequest": [ + { + "fid": 1, + "name": "lastUpdatedTimeMillis", + "type": 10, + }, + { + "fid": 2, + "name": "includeSummary", + "type": 2, + }, + { + "fid": 3, + "name": "productType", + "struct": "Ob1_O0", + }, + ], + "GetUserCollectionsResponse": [ + { + "fid": 1, + "name": "collections", + "list": "Collection", + }, + { + "fid": 2, + "name": "updated", + "type": 2, + }, + ], + "GetUserProfileResponse": [ + { + "fid": 1, + "name": "userProfile", + "struct": "UserProfile", + }, + ], + "GetUserSettingsRequest": [ + { + "fid": 1, + "name": "requestedAttrs", + "set": "SquareUserSettingsAttribute", + }, + ], + "GetUserSettingsResponse": [ + { + "fid": 1, + "name": "requestedAttrs", + "set": 8, + }, + { + "fid": 2, + "name": "userSettings", + "struct": "SquareUserSettings", + }, + ], + "GetUserVectorRequest": [ + { + "fid": 1, + "name": "majorVersion", + "type": 11, + }, + ], + "GetUserVectorResponse": [ + { + "fid": 1, + "name": "userVector", + "list": 4, + }, + { + "fid": 2, + "name": "majorVersion", + "type": 11, + }, + { + "fid": 3, + "name": "minorVersion", + "type": 11, + }, + ], + "GetUsersMappedByProfileRequest": [ + { + "fid": 1, + "name": "profileId", + "type": 11, + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "GetUsersMappedByProfileResponse": [ + { + "fid": 1, + "name": "mappedMids", + "list": 11, + }, + ], + "GlobalEvent": [ + { + "fid": 1, + "name": "type", + "struct": "Pb1_EnumC13209v5", + }, + { + "fid": 2, + "name": "minDelayInMinutes", + "type": 8, + }, + { + "fid": 3, + "name": "maxDelayInMinutes", + "type": 8, + }, + { + "fid": 4, + "name": "createTimeMillis", + "type": 10, + }, + { + "fid": 5, + "name": "maxDelayHardLimit", + "type": 2, + }, + ], + "GroupCall": [ + { + "fid": 1, + "name": "online", + "type": 2, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "hostMid", + "type": 11, + }, + { + "fid": 4, + "name": "memberMids", + "list": 11, + }, + { + "fid": 5, + "name": "started", + "type": 10, + }, + { + "fid": 6, + "name": "mediaType", + "struct": "Pb1_EnumC13237x5", + }, + { + "fid": 7, + "name": "protocol", + "struct": "Pb1_EnumC13251y5", + }, + { + "fid": 8, + "name": "maxAllowableMembers", + "type": 8, + }, + ], + "GroupCallRoute": [ + { + "fid": 1, + "name": "token", + "type": 11, + }, + { + "fid": 2, + "name": "cscf", + "struct": "CallHost", + }, + { + "fid": 3, + "name": "mix", + "struct": "CallHost", + }, + { + "fid": 4, + "name": "hostMid", + "type": 11, + }, + { + "fid": 5, + "name": "capabilities", + "list": 11, + }, + { + "fid": 6, + "name": "proto", + "struct": "Pb1_EnumC13251y5", + }, + { + "fid": 7, + "name": "voipAddress", + "type": 11, + }, + { + "fid": 8, + "name": "voipUdpPort", + "type": 8, + }, + { + "fid": 9, + "name": "voipTcpPort", + "type": 8, + }, + { + "fid": 10, + "name": "fromZone", + "type": 11, + }, + { + "fid": 11, + "name": "commParam", + "type": 11, + }, + { + "fid": 12, + "name": "polarisAddress", + "type": 11, + }, + { + "fid": 13, + "name": "polarisUdpPort", + "type": 8, + }, + { + "fid": 14, + "name": "polarisZone", + "type": 11, + }, + { + "fid": 15, + "name": "orionAddress", + "type": 11, + }, + { + "fid": 16, + "name": "voipAddress6", + "type": 11, + }, + { + "fid": 17, + "name": "stnpk", + "type": 11, + }, + ], + "GroupCallUrl": [ + { + "fid": 1, + "name": "urlId", + "type": 11, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "createdTimeMillis", + "type": 10, + }, + ], + "GroupExtra": [ + { + "fid": 1, + "name": "creator", + "type": 11, + }, + { + "fid": 2, + "name": "preventedJoinByTicket", + "type": 2, + }, + { + "fid": 3, + "name": "invitationTicket", + "type": 11, + }, + { + "fid": 4, + "name": "memberMids", + "map": 10, + "key": 11, + }, + { + "fid": 5, + "name": "inviteeMids", + "map": 10, + "key": 11, + }, + { + "fid": 6, + "name": "addFriendDisabled", + "type": 2, + }, + { + "fid": 7, + "name": "ticketDisabled", + "type": 2, + }, + { + "fid": 8, + "name": "autoName", + "type": 2, + }, + ], + "HeaderContent": [ + { + "fid": 1, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 2, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 3, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 4, + "name": "title", + "type": 11, + }, + { + "fid": 5, + "name": "animationImageUrl", + "type": 11, + }, + { + "fid": 6, + "name": "tooltipText", + "type": 11, + }, + ], + "HeaderInfo": [ + { + "fid": 1, + "name": "totalBalance", + "type": 11, + }, + { + "fid": 2, + "name": "currencyProperty", + "struct": "CurrencyProperty", + }, + ], + "HideSquareMemberContentsRequest": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + ], + "HomeCategory": [ + { + "fid": 1, + "name": "id", + "type": 8, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "ids", + "list": 8, + }, + ], + "HomeEffect": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "resourceUrl", + "type": 11, + }, + { + "fid": 3, + "name": "checksum", + "type": 11, + }, + { + "fid": 4, + "name": "startDate", + "type": 10, + }, + { + "fid": 5, + "name": "endDate", + "type": 10, + }, + ], + "HomeService": [ + { + "fid": 1, + "name": "id", + "type": 8, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "serviceEntryUrl", + "type": 11, + }, + { + "fid": 4, + "name": "storeUrl", + "type": 11, + }, + { + "fid": 5, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 6, + "name": "pictogramIconUrl", + "type": 11, + }, + { + "fid": 7, + "name": "badgeUpdatedTimeMillis", + "type": 10, + }, + { + "fid": 8, + "name": "badgeType", + "struct": "Eg_EnumC8927a", + }, + { + "fid": 9, + "name": "serviceDescription", + "type": 11, + }, + { + "fid": 10, + "name": "iconThemeDisabled", + "type": 2, + }, + ], + "HomeTabPlacement": [ + { + "fid": 1, + "name": "placementTemplateId", + "type": 11, + }, + { + "fid": 2, + "name": "placementService", + "type": 11, + }, + { + "fid": 3, + "name": "placementLogic", + "type": 11, + }, + { + "fid": 4, + "name": "contents", + "type": 11, + }, + { + "fid": 5, + "name": "crsPlacementImpressionTrackingUrl", + "type": 11, + }, + ], + "Icon": [ + { + "fid": 1, + "name": "darkModeUrl", + "type": 11, + }, + { + "fid": 2, + "name": "lightModeUrl", + "type": 11, + }, + ], + "IconDisplayRule": [ + { + "fid": 1, + "name": "rule", + "type": 11, + }, + { + "fid": 2, + "name": "offset", + "type": 8, + }, + ], + "IdentifierConfirmationRequest": [ + { + "fid": 1, + "name": "metaData", + "map": 11, + "key": 11, + }, + { + "fid": 2, + "name": "forceRegistration", + "type": 2, + }, + { + "fid": 3, + "name": "verificationCode", + "type": 11, + }, + ], + "IdentityCredentialRequest": [ + { + "fid": 1, + "name": "metaData", + "map": 11, + "key": 11, + }, + { + "fid": 2, + "name": "identityProvider", + "struct": "IdentityProvider", + }, + { + "fid": 3, + "name": "cipherKeyId", + "type": 11, + }, + { + "fid": 4, + "name": "cipherText", + "type": 11, + }, + { + "fid": 5, + "name": "confirmationRequest", + "struct": "IdentifierConfirmationRequest", + }, + ], + "IdentityCredentialResponse": [ + { + "fid": 1, + "name": "metaData", + "map": 11, + "key": 11, + }, + { + "fid": 2, + "name": "responseType", + "struct": "Pb1_F5", + }, + { + "fid": 3, + "name": "confirmationVerifier", + "type": 11, + }, + { + "fid": 4, + "name": "timeoutInSeconds", + "type": 10, + }, + ], + "Image": [ + { + "fid": 1, + "name": "url", + "type": 11, + }, + { + "fid": 2, + "name": "height", + "type": 8, + }, + { + "fid": 3, + "name": "width", + "type": 8, + }, + ], + "ImageTextProperty": [ + { + "fid": 1, + "name": "status", + "struct": "Ob1_EnumC12656r0", + }, + { + "fid": 2, + "name": "plainText", + "type": 11, + }, + { + "fid": 3, + "name": "nameTextMaxCharacterCount", + "type": 8, + }, + { + "fid": 4, + "name": "encryptedText", + "type": 11, + }, + ], + "InstantNews": [ + { + "fid": 1, + "name": "newsId", + "type": 10, + }, + { + "fid": 2, + "name": "newsService", + "type": 11, + }, + { + "fid": 3, + "name": "ttlMillis", + "type": 10, + }, + { + "fid": 4, + "name": "category", + "type": 11, + }, + { + "fid": 5, + "name": "categoryBgColor", + "type": 11, + }, + { + "fid": 6, + "name": "categoryColor", + "type": 11, + }, + { + "fid": 7, + "name": "title", + "type": 11, + }, + { + "fid": 8, + "name": "url", + "type": 11, + }, + { + "fid": 9, + "name": "image", + "type": 11, + }, + ], + "InviteFriendsRequest": [ + { + "fid": 1, + "name": "campaignId", + "type": 11, + }, + { + "fid": 2, + "name": "invitees", + "list": 11, + }, + ], + "InviteFriendsResponse": [ + { + "fid": 1, + "name": "result", + "struct": "fN0_EnumC24469a", + }, + ], + "InviteIntoChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetUserMids", + "set": 11, + }, + ], + "InviteIntoSquareChatRequest": [ + { + "fid": 1, + "name": "inviteeMids", + "list": 11, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + ], + "InviteIntoSquareChatResponse": [ + { + "fid": 1, + "name": "inviteeMids", + "list": 11, + }, + ], + "InviteToChangeRoleRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "targetMid", + "type": 11, + }, + { + "fid": 4, + "name": "targetRole", + "struct": "LiveTalkRole", + }, + ], + "InviteToListenRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "targetMid", + "type": 11, + }, + ], + "InviteToLiveTalkRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "invitees", + "list": 11, + }, + ], + "InviteToSpeakRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "targetMid", + "type": 11, + }, + ], + "InviteToSpeakResponse": [ + { + "fid": 1, + "name": "inviteRequestId", + "type": 11, + }, + ], + "InviteToSquareRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "invitees", + "list": 11, + }, + { + "fid": 4, + "name": "squareChatMid", + "type": 11, + }, + ], + "IpassTokenProperty": [ + { + "fid": 1, + "name": "token", + "type": 11, + }, + { + "fid": 2, + "name": "tokenIssuedTimestamp", + "type": 11, + }, + ], + "IsProductForCollectionsRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + ], + "IsProductForCollectionsResponse": [ + { + "fid": 1, + "name": "isAvailable", + "type": 2, + }, + ], + "IsStickerAvailableForCombinationStickerRequest": [ + { + "fid": 1, + "name": "packageId", + "type": 11, + }, + ], + "IsStickerAvailableForCombinationStickerResponse": [ + { + "fid": 1, + "name": "availableForCombinationSticker", + "type": 2, + }, + ], + "IssueBirthdayGiftTokenRequest": [ + { + "fid": 1, + "name": "recipientUserMid", + "type": 11, + }, + ], + "IssueBirthdayGiftTokenResponse": [ + { + "fid": 1, + "name": "giftAssociationToken", + "type": 11, + }, + ], + "IssueV3TokenForPrimaryRequest": [ + { + "fid": 1, + "name": "udid", + "type": 11, + }, + { + "fid": 2, + "name": "systemDisplayName", + "type": 11, + }, + { + "fid": 3, + "name": "modelName", + "type": 11, + }, + ], + "IssueV3TokenForPrimaryResponse": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + { + "fid": 2, + "name": "refreshToken", + "type": 11, + }, + { + "fid": 3, + "name": "durationUntilRefreshInSec", + "type": 10, + }, + { + "fid": 4, + "name": "refreshApiRetryPolicy", + "struct": "RefreshApiRetryPolicy", + }, + { + "fid": 5, + "name": "loginSessionId", + "type": 11, + }, + { + "fid": 6, + "name": "tokenIssueTimeEpochSec", + "type": 10, + }, + { + "fid": 7, + "name": "mid", + "type": 11, + }, + ], + "IssueWebAuthDetailsForSecondAuthResponse": [ + { + "fid": 1, + "name": "webAuthDetails", + "struct": "WebAuthDetails", + }, + ], + "JoinChatByCallUrlRequest": [ + { + "fid": 1, + "name": "urlId", + "type": 11, + }, + { + "fid": 2, + "name": "reqSeq", + "type": 8, + }, + ], + "JoinChatByCallUrlResponse": [ + { + "fid": 1, + "name": "chat", + "struct": "Chat", + }, + ], + "JoinLiveTalkRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "wantToSpeak", + "type": 2, + }, + { + "fid": 4, + "name": "claimAdult", + "struct": "BooleanState", + }, + ], + "JoinLiveTalkResponse": [ + { + "fid": 1, + "name": "hostMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "memberSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "token", + "type": 11, + }, + { + "fid": 4, + "name": "proto", + "type": 11, + }, + { + "fid": 5, + "name": "voipAddress", + "type": 11, + }, + { + "fid": 6, + "name": "voipAddress6", + "type": 11, + }, + { + "fid": 7, + "name": "voipUdpPort", + "type": 8, + }, + { + "fid": 8, + "name": "voipTcpPort", + "type": 8, + }, + { + "fid": 9, + "name": "fromZone", + "type": 11, + }, + { + "fid": 10, + "name": "commParam", + "type": 11, + }, + { + "fid": 11, + "name": "orionAddress", + "type": 11, + }, + { + "fid": 12, + "name": "polarisAddress", + "type": 11, + }, + { + "fid": 13, + "name": "polarisZone", + "type": 11, + }, + { + "fid": 14, + "name": "polarisUdpPort", + "type": 8, + }, + { + "fid": 15, + "name": "speaker", + "type": 2, + }, + ], + "JoinSquareChatRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + ], + "JoinSquareChatResponse": [ + { + "fid": 1, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 2, + "name": "squareChatStatus", + "struct": "SquareChatStatus", + }, + { + "fid": 3, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + ], + "JoinSquareRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "member", + "struct": "SquareMember", + }, + { + "fid": 4, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 5, + "name": "joinValue", + "struct": "SquareJoinMethodValue", + }, + { + "fid": 6, + "name": "claimAdult", + "struct": "BooleanState", + }, + ], + "JoinSquareResponse": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 3, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 4, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + { + "fid": 7, + "name": "squareChat", + "struct": "SquareChat", + }, + { + "fid": 8, + "name": "squareChatStatus", + "struct": "SquareChatStatus", + }, + { + "fid": 9, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + ], + "JoinSquareThreadRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "threadMid", + "type": 11, + }, + ], + "JoinSquareThreadResponse": [ + { + "fid": 1, + "name": "threadMember", + "struct": "SquareThreadMember", + }, + ], + "JoinedMemberships": [ + { + "fid": 1, + "name": "subscribing", + "list": "MemberInfo", + }, + { + "fid": 2, + "name": "expired", + "list": "MemberInfo", + }, + ], + "KickOutLiveTalkParticipantsRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "target", + "struct": "LiveTalkKickOutTarget", + }, + ], + "KickoutFromGroupCallRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "targetMids", + "list": 11, + }, + ], + "LFLClusterV2": [ + { + "fid": 1, + "name": "majorVersion", + "type": 11, + }, + { + "fid": 2, + "name": "minorVersion", + "type": 11, + }, + { + "fid": 3, + "name": "tags", + "list": "Tag", + }, + { + "fid": 4, + "name": "products", + "list": "Product", + }, + ], + "LIFFMenuColor": [ + { + "fid": 1, + "name": "iconColor", + "type": 8, + }, + { + "fid": 2, + "name": "statusBarColor", + "struct": "Qj_EnumC13585b", + }, + { + "fid": 3, + "name": "titleTextColor", + "type": 8, + }, + { + "fid": 4, + "name": "titleSubtextColor", + "type": 8, + }, + { + "fid": 5, + "name": "titleButtonColor", + "type": 8, + }, + { + "fid": 6, + "name": "titleBackgroundColor", + "type": 8, + }, + { + "fid": 7, + "name": "progressBarColor", + "type": 8, + }, + { + "fid": 8, + "name": "progressBackgroundColor", + "type": 8, + }, + { + "fid": 9, + "name": "titleButtonAreaBackgroundColor", + "type": 8, + }, + { + "fid": 10, + "name": "titleButtonAreaBorderColor", + "type": 8, + }, + ], + "LIFFMenuColorSetting": [ + { + "fid": 1, + "name": "lightModeColor", + "struct": "LIFFMenuColor", + }, + { + "fid": 2, + "name": "darkModeColor", + "struct": "LIFFMenuColor", + }, + ], + "LN0_A": [], + "LN0_A0": [], + "LN0_B": [], + "LN0_B0": [], + "LN0_C0": [], + "LN0_C11270b": [], + "LN0_C11274d": [ + { + "fid": 1, + "name": "invalid", + "struct": "AddMetaInvalid", + }, + { + "fid": 2, + "name": "byPhone", + "struct": "AddMetaByPhone", + }, + { + "fid": 3, + "name": "bySearchId", + "struct": "AddMetaBySearchId", + }, + { + "fid": 4, + "name": "byUserTicket", + "struct": "AddMetaByUserTicket", + }, + { + "fid": 5, + "name": "groupMemberList", + "struct": "AddMetaGroupMemberList", + }, + { + "fid": 6, + "name": "timelineCPF", + "struct": "LN0_P", + }, + { + "fid": 7, + "name": "smartChannelCPF", + "struct": "LN0_L", + }, + { + "fid": 8, + "name": "openchatCPF", + "struct": "LN0_G", + }, + { + "fid": 9, + "name": "beaconBanner", + "struct": "LN0_C11282h", + }, + { + "fid": 10, + "name": "friendRecommendation", + "struct": "LN0_C11300q", + }, + { + "fid": 11, + "name": "homeRecommendation", + "struct": "LN0_C11307u", + }, + { + "fid": 12, + "name": "shareContact", + "struct": "AddMetaShareContact", + }, + { + "fid": 13, + "name": "strangerMessage", + "struct": "AddMetaStrangerMessage", + }, + { + "fid": 14, + "name": "strangerCall", + "struct": "AddMetaStrangerCall", + }, + { + "fid": 15, + "name": "mentionInChat", + "struct": "AddMetaMentionInChat", + }, + { + "fid": 16, + "name": "timeline", + "struct": "LN0_O", + }, + { + "fid": 17, + "name": "unifiedSearch", + "struct": "LN0_Q", + }, + { + "fid": 18, + "name": "lineLab", + "struct": "LN0_C11313x", + }, + { + "fid": 19, + "name": "lineToCall", + "struct": "LN0_A", + }, + { + "fid": 20, + "name": "groupVideo", + "struct": "AddMetaGroupVideoCall", + }, + { + "fid": 21, + "name": "friendRequest", + "struct": "LN0_r", + }, + { + "fid": 22, + "name": "liveViewer", + "struct": "LN0_C11315y", + }, + { + "fid": 23, + "name": "lineThings", + "struct": "LN0_C11316z", + }, + { + "fid": 24, + "name": "mediaCapture", + "struct": "LN0_B", + }, + { + "fid": 25, + "name": "avatarOASetting", + "struct": "LN0_C11280g", + }, + { + "fid": 26, + "name": "urlScheme", + "struct": "LN0_T", + }, + { + "fid": 27, + "name": "addressBook", + "struct": "LN0_C11276e", + }, + { + "fid": 28, + "name": "unifiedSearchOATab", + "struct": "LN0_S", + }, + { + "fid": 29, + "name": "profileUndefined", + "struct": "AddMetaProfileUndefined", + }, + { + "fid": 30, + "name": "DEPRECATED_oaChatHeader", + "struct": "LN0_F", + }, + { + "fid": 31, + "name": "chatMenu", + "struct": "LN0_C11294n", + }, + { + "fid": 32, + "name": "chatHeader", + "struct": "LN0_C11290l", + }, + { + "fid": 33, + "name": "homeTabCPF", + "struct": "LN0_C11309v", + }, + { + "fid": 34, + "name": "chatList", + "struct": "LN0_C11292m", + }, + { + "fid": 35, + "name": "chatNote", + "struct": "AddMetaChatNote", + }, + { + "fid": 36, + "name": "chatNoteMenu", + "struct": "AddMetaChatNoteMenu", + }, + { + "fid": 37, + "name": "walletTabCPF", + "struct": "LN0_U", + }, + { + "fid": 38, + "name": "oaCall", + "struct": "LN0_E", + }, + { + "fid": 39, + "name": "searchIdInUnifiedSearch", + "struct": "AddMetaSearchIdInUnifiedSearch", + }, + { + "fid": 40, + "name": "newsDigestADCPF", + "struct": "LN0_D", + }, + { + "fid": 41, + "name": "albumCPF", + "struct": "LN0_C11278f", + }, + { + "fid": 42, + "name": "premiumAgreement", + "struct": "LN0_H", + }, + ], + "LN0_C11276e": [], + "LN0_C11278f": [], + "LN0_C11280g": [], + "LN0_C11282h": [], + "LN0_C11290l": [], + "LN0_C11292m": [], + "LN0_C11294n": [], + "LN0_C11300q": [], + "LN0_C11307u": [], + "LN0_C11308u0": [], + "LN0_C11309v": [], + "LN0_C11310v0": [], + "LN0_C11312w0": [], + "LN0_C11313x": [], + "LN0_C11315y": [], + "LN0_C11316z": [], + "LN0_D": [], + "LN0_E": [], + "LN0_F": [], + "LN0_G": [], + "LN0_H": [], + "LN0_L": [], + "LN0_O": [], + "LN0_P": [], + "LN0_Q": [], + "LN0_S": [], + "LN0_T": [], + "LN0_U": [], + "LN0_V": [ + { + "fid": 1, + "name": "user", + "struct": "UserBlockDetail", + }, + { + "fid": 2, + "name": "bot", + "struct": "BotBlockDetail", + }, + { + "fid": 3, + "name": "notBlocked", + "struct": "LN0_C11308u0", + }, + ], + "LN0_Z": [ + { + "fid": 1, + "name": "user", + "struct": "UserFriendDetail", + }, + { + "fid": 2, + "name": "bot", + "struct": "BotFriendDetail", + }, + { + "fid": 3, + "name": "notFriend", + "struct": "LN0_C11310v0", + }, + ], + "LN0_r": [], + "LN0_y0": [ + { + "fid": 1, + "name": "recommendationDetail", + "struct": "RecommendationDetail", + }, + { + "fid": 2, + "name": "notRecommended", + "struct": "LN0_C11312w0", + }, + ], + "LN0_z0": [ + { + "fid": 1, + "name": "sharedChat", + "struct": "RecommendationReasonSharedChat", + }, + { + "fid": 2, + "name": "reverseFriendByUserId", + "struct": "LN0_C0", + }, + { + "fid": 3, + "name": "reverseFriendByQrCode", + "struct": "LN0_B0", + }, + { + "fid": 4, + "name": "reverseFriendByPhone", + "struct": "LN0_A0", + }, + ], + "LatestProductByAuthorItem": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "version", + "type": 10, + }, + { + "fid": 4, + "name": "newFlag", + "type": 2, + }, + { + "fid": 5, + "name": "productResourceType", + "struct": "Ob1_I0", + }, + { + "fid": 6, + "name": "popupLayer", + "struct": "Ob1_B0", + }, + ], + "LatestProductsByAuthorRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "authorId", + "type": 10, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + ], + "LatestProductsByAuthorResponse": [ + { + "fid": 1, + "name": "authorId", + "type": 10, + }, + { + "fid": 2, + "name": "author", + "type": 11, + }, + { + "fid": 3, + "name": "items", + "list": "LatestProductByAuthorItem", + }, + ], + "LeaveSquareChatRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "sayGoodbye", + "type": 2, + }, + { + "fid": 4, + "name": "squareChatMemberRevision", + "type": 10, + }, + ], + "LeaveSquareRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + ], + "LeaveSquareThreadRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "threadMid", + "type": 11, + }, + ], + "LeaveSquareThreadResponse": [ + { + "fid": 1, + "name": "threadMember", + "struct": "SquareThreadMember", + }, + ], + "LeftSquareMember": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "updatedAt", + "type": 10, + }, + ], + "LiffAdvertisingId": [ + { + "fid": 1, + "name": "advertisingId", + "type": 11, + }, + { + "fid": 2, + "name": "tracking", + "type": 2, + }, + { + "fid": 3, + "name": "att", + "struct": "Qj_EnumC13584a", + }, + { + "fid": 4, + "name": "skAdNetwork", + "struct": "SKAdNetwork", + }, + ], + "LiffChatContext": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "LiffDeviceSetting": [ + { + "fid": 1, + "name": "videoAutoPlayAllowed", + "type": 2, + }, + { + "fid": 2, + "name": "advertisingId", + "struct": "LiffAdvertisingId", + }, + ], + "LiffErrorConsentRequired": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + { + "fid": 2, + "name": "consentUrl", + "type": 11, + }, + ], + "LiffErrorPermanentLinkInvalidRequest": [ + { + "fid": 1, + "name": "liffId", + "type": 11, + }, + { + "fid": 2, + "name": "fallbackUrl", + "type": 11, + }, + ], + "LiffFIDOExternalService": [ + { + "fid": 1, + "name": "rpId", + "type": 11, + }, + { + "fid": 2, + "name": "rpApiBaseUrl", + "type": 11, + }, + ], + "LiffSquareChatContext": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + ], + "LiffView": [ + { + "fid": 1, + "name": "type", + "type": 11, + }, + { + "fid": 2, + "name": "url", + "type": 11, + }, + { + "fid": 4, + "name": "titleTextColor", + "type": 8, + }, + { + "fid": 5, + "name": "titleBackgroundColor", + "type": 8, + }, + { + "fid": 6, + "name": "titleIconUrl", + "type": 11, + }, + { + "fid": 7, + "name": "titleSubtextColor", + "type": 8, + }, + { + "fid": 8, + "name": "titleButtonColor", + "type": 8, + }, + { + "fid": 9, + "name": "progressBarColor", + "type": 8, + }, + { + "fid": 10, + "name": "progressBackgroundColor", + "type": 8, + }, + { + "fid": 11, + "name": "trustedDomain", + "type": 2, + }, + { + "fid": 12, + "name": "suspendable", + "type": 2, + }, + { + "fid": 13, + "name": "maxBrightness", + "type": 2, + }, + { + "fid": 14, + "name": "titleButtonAreaBackgroundColor", + "type": 8, + }, + { + "fid": 15, + "name": "titleButtonAreaBorderColor", + "type": 8, + }, + { + "fid": 16, + "name": "suspendableV2", + "type": 2, + }, + { + "fid": 17, + "name": "menuStyle", + "struct": "Qj_EnumC13606x", + }, + { + "fid": 18, + "name": "moduleMode", + "type": 2, + }, + { + "fid": 19, + "name": "pinToHomeServiceId", + "type": 8, + }, + { + "fid": 20, + "name": "menuColorSetting", + "struct": "LIFFMenuColorSetting", + }, + { + "fid": 21, + "name": "showPinInduction", + "type": 2, + }, + { + "fid": 22, + "name": "appName", + "type": 11, + }, + { + "fid": 23, + "name": "adaptableColorSchemes", + "set": 8, + }, + { + "fid": 24, + "name": "provider", + "struct": "Provider", + }, + { + "fid": 25, + "name": "basicAuthAllowed", + "type": 2, + }, + { + "fid": 26, + "name": "siriDonationAllowed", + "type": 2, + }, + { + "fid": 27, + "name": "transitionToNonLiffWithoutPopupAllowed", + "type": 2, + }, + { + "fid": 28, + "name": "urlHistoryAllowed", + "type": 2, + }, + { + "fid": 29, + "name": "shrinkHeaderDisabled", + "type": 2, + }, + { + "fid": 30, + "name": "skipWebRTCPermissionPopupAllowed", + "type": 2, + }, + { + "fid": 31, + "name": "useGmaSdkAllowed", + "type": 2, + }, + { + "fid": 32, + "name": "useMinimizeButtonAllowed", + "type": 2, + }, + ], + "LiffViewRequest": [ + { + "fid": 1, + "name": "liffId", + "type": 11, + }, + { + "fid": 2, + "name": "context", + "struct": "Qj_C13595l", + }, + { + "fid": 3, + "name": "lang", + "type": 11, + }, + { + "fid": 4, + "name": "deviceSetting", + "struct": "LiffDeviceSetting", + }, + { + "fid": 5, + "name": "msit", + "type": 11, + }, + { + "fid": 6, + "name": "subsequentLiff", + "type": 2, + }, + { + "fid": 7, + "name": "domain", + "type": 11, + }, + ], + "LiffViewResponse": [ + { + "fid": 1, + "name": "view", + "struct": "LiffView", + }, + { + "fid": 2, + "name": "contextToken", + "type": 11, + }, + { + "fid": 3, + "name": "accessToken", + "type": 11, + }, + { + "fid": 4, + "name": "featureToken", + "type": 11, + }, + { + "fid": 5, + "name": "features", + "list": 8, + }, + { + "fid": 6, + "name": "channelId", + "type": 11, + }, + { + "fid": 7, + "name": "idToken", + "type": 11, + }, + { + "fid": 8, + "name": "scopes", + "list": 11, + }, + { + "fid": 9, + "name": "launchOptions", + "list": 8, + }, + { + "fid": 10, + "name": "permanentLinkPattern", + "struct": "Qj_a0", + }, + { + "fid": 11, + "name": "subLiffView", + "struct": "SubLiffView", + }, + { + "fid": 12, + "name": "revisions", + "map": 8, + "key": 8, + }, + { + "fid": 13, + "name": "accessTokenExpiresIn", + "type": 10, + }, + { + "fid": 14, + "name": "accessTokenExpiresInWithRoom", + "type": 10, + }, + { + "fid": 15, + "name": "liffId", + "type": 11, + }, + { + "fid": 16, + "name": "miniDomainAllowed", + "type": 2, + }, + { + "fid": 17, + "name": "miniAppId", + "type": 11, + }, + { + "fid": 18, + "name": "miniHistoryServiceId", + "type": 8, + }, + { + "fid": 19, + "name": "addToHomeV2Allowed", + "type": 2, + }, + { + "fid": 20, + "name": "addToHomeV2LineSchemeAllowed", + "type": 2, + }, + { + "fid": 21, + "name": "fido", + "struct": "Qj_C13602t", + }, + { + "fid": 22, + "name": "omitLiffReferrer", + "type": 2, + }, + ], + "LiffViewWithoutUserContextRequest": [ + { + "fid": 1, + "name": "liffId", + "type": 11, + }, + ], + "LiffWebLoginRequest": [ + { + "fid": 1, + "name": "hookedFullUrl", + "type": 11, + }, + { + "fid": 2, + "name": "sessionString", + "type": 11, + }, + { + "fid": 3, + "name": "context", + "struct": "Qj_C13595l", + }, + { + "fid": 4, + "name": "deviceSetting", + "struct": "LiffDeviceSetting", + }, + ], + "LiffWebLoginResponse": [ + { + "fid": 1, + "name": "returnUrl", + "type": 11, + }, + { + "fid": 2, + "name": "sessionString", + "type": 11, + }, + { + "fid": 3, + "name": "liffId", + "type": 11, + }, + ], + "LineBankBalanceShortcut": [ + { + "fid": 1, + "name": "iconPosition", + "type": 8, + }, + { + "fid": 2, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 3, + "name": "iconText", + "type": 11, + }, + { + "fid": 4, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 5, + "name": "iconType", + "struct": "NZ0_EnumC12154b1", + }, + { + "fid": 6, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 7, + "name": "tsTargetId", + "type": 11, + }, + { + "fid": 8, + "name": "userGuidePopupInfo", + "struct": "ShortcutUserGuidePopupInfo", + }, + ], + "LineBankPromotion": [ + { + "fid": 1, + "name": "mainText", + "type": 11, + }, + { + "fid": 2, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 3, + "name": "tsTargetId", + "type": 11, + }, + ], + "LineBankShortcutInfo": [ + { + "fid": 1, + "name": "mainShortcuts", + "list": "LineBankBalanceShortcut", + }, + { + "fid": 2, + "name": "subShortcuts", + "list": "LineBankBalanceShortcut", + }, + ], + "LinePayInfo": [ + { + "fid": 1, + "name": "balanceAmount", + "type": 11, + }, + { + "fid": 2, + "name": "currencyProperty", + "struct": "CurrencyProperty", + }, + { + "fid": 3, + "name": "payMemberStatus", + "struct": "NZ0_EnumC12195p0", + }, + { + "fid": 4, + "name": "applicationUrl", + "type": 11, + }, + { + "fid": 5, + "name": "chargeUrl", + "type": 11, + }, + { + "fid": 6, + "name": "payMemberGrade", + "struct": "NZ0_EnumC12192o0", + }, + { + "fid": 7, + "name": "country", + "type": 11, + }, + { + "fid": 8, + "name": "referenceNumber", + "type": 11, + }, + { + "fid": 9, + "name": "ipassTokenProperty", + "struct": "IpassTokenProperty", + }, + { + "fid": 10, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 11, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 12, + "name": "iconLinkUrl", + "type": 11, + }, + { + "fid": 13, + "name": "suspendedText", + "type": 11, + }, + { + "fid": 14, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + ], + "LinePayInfoV3": [ + { + "fid": 1, + "name": "availableBalance", + "type": 11, + }, + { + "fid": 2, + "name": "availableBalanceString", + "type": 11, + }, + { + "fid": 3, + "name": "currencyProperty", + "struct": "CurrencyProperty", + }, + { + "fid": 4, + "name": "payMemberStatus", + "struct": "NZ0_EnumC12195p0", + }, + { + "fid": 5, + "name": "payMemberGrade", + "struct": "NZ0_EnumC12192o0", + }, + { + "fid": 6, + "name": "country", + "type": 11, + }, + { + "fid": 7, + "name": "applicationUrl", + "type": 11, + }, + { + "fid": 8, + "name": "iconAltText", + "type": 11, + }, + { + "fid": 9, + "name": "iconLinkUrl", + "type": 11, + }, + { + "fid": 10, + "name": "suspendedText", + "type": 11, + }, + { + "fid": 11, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + ], + "LinePayPromotion": [ + { + "fid": 1, + "name": "mainText", + "type": 11, + }, + { + "fid": 2, + "name": "subText", + "type": 11, + }, + { + "fid": 3, + "name": "buttonText", + "type": 11, + }, + { + "fid": 4, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 5, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 6, + "name": "tsTargetId", + "type": 11, + }, + ], + "LinePointInfo": [ + { + "fid": 1, + "name": "balanceAmount", + "type": 11, + }, + { + "fid": 2, + "name": "applicationUrl", + "type": 11, + }, + { + "fid": 3, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 4, + "name": "displayText", + "type": 11, + }, + { + "fid": 5, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + ], + "LinkRewardInfo": [ + { + "fid": 1, + "name": "assetServiceInfo", + "struct": "AssetServiceInfo", + }, + { + "fid": 2, + "name": "autoConversion", + "type": 2, + }, + { + "fid": 3, + "name": "backgroundColorCode", + "type": 11, + }, + ], + "LiveTalk": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "title", + "type": 11, + }, + { + "fid": 4, + "name": "type", + "struct": "LiveTalkType", + }, + { + "fid": 5, + "name": "speakerSetting", + "struct": "LiveTalkSpeakerSetting", + }, + { + "fid": 6, + "name": "allowRequestToSpeak", + "type": 2, + }, + { + "fid": 7, + "name": "hostMemberMid", + "type": 11, + }, + { + "fid": 8, + "name": "announcement", + "type": 11, + }, + { + "fid": 9, + "name": "participantCount", + "type": 8, + }, + { + "fid": 10, + "name": "revision", + "type": 10, + }, + { + "fid": 11, + "name": "startedAt", + "type": 10, + }, + ], + "LiveTalkEvent": [ + { + "fid": 1, + "name": "type", + "struct": "LiveTalkEventType", + }, + { + "fid": 2, + "name": "payload", + "struct": "LiveTalkEventPayload", + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + ], + "LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak": [ + { + "fid": 1, + "name": "allowRequestToSpeak", + "type": 2, + }, + ], + "LiveTalkEventNotifiedUpdateLiveTalkAnnouncement": [ + { + "fid": 1, + "name": "announcement", + "type": 11, + }, + ], + "LiveTalkEventNotifiedUpdateLiveTalkTitle": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + ], + "LiveTalkEventNotifiedUpdateSquareMember": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "role", + "struct": "SquareMemberRole", + }, + ], + "LiveTalkEventNotifiedUpdateSquareMemberRole": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "role", + "struct": "SquareMemberRole", + }, + ], + "LiveTalkExtraInfo": [ + { + "fid": 1, + "name": "saturnResponse", + "type": 11, + }, + ], + "LiveTalkParticipant": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + ], + "LiveTalkSpeaker": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + { + "fid": 2, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 3, + "name": "role", + "struct": "SquareMemberRole", + }, + ], + "LiveTalkSubscriptionNotification": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "Locale": [ + { + "fid": 1, + "name": "language", + "type": 11, + }, + { + "fid": 2, + "name": "country", + "type": 11, + }, + ], + "Location": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + { + "fid": 2, + "name": "address", + "type": 11, + }, + { + "fid": 3, + "name": "latitude", + "type": 4, + }, + { + "fid": 4, + "name": "longitude", + "type": 4, + }, + { + "fid": 5, + "name": "phone", + "type": 11, + }, + { + "fid": 6, + "name": "categoryId", + "type": 11, + }, + { + "fid": 7, + "name": "provider", + "struct": "Pb1_D6", + }, + { + "fid": 8, + "name": "accuracy", + "struct": "GeolocationAccuracy", + }, + { + "fid": 9, + "name": "altitudeMeters", + "type": 4, + }, + ], + "LocationDebugInfo": [ + { + "fid": 1, + "name": "poiInfo", + "struct": "PoiInfo", + }, + ], + "LookupAvailableEapRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "LookupAvailableEapResponse": [ + { + "fid": 1, + "name": "availableEap", + "list": 8, + }, + ], + "LpPromotionProperty": [ + { + "fid": 1, + "name": "landingPageUrl", + "type": 11, + }, + { + "fid": 2, + "name": "label", + "type": 11, + }, + { + "fid": 3, + "name": "buttonLabel", + "type": 11, + }, + ], + "MainPopup": [ + { + "fid": 1, + "name": "imageObsHash", + "type": 11, + }, + { + "fid": 2, + "name": "button", + "struct": "Button", + }, + ], + "ManualRepairRequest": [ + { + "fid": 1, + "name": "syncToken", + "type": 11, + }, + { + "fid": 2, + "name": "limit", + "type": 8, + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + ], + "ManualRepairResponse": [ + { + "fid": 1, + "name": "events", + "list": "SquareEvent", + }, + { + "fid": 2, + "name": "syncToken", + "type": 11, + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + ], + "MapProfileToUsersRequest": [ + { + "fid": 1, + "name": "profileId", + "type": 11, + }, + { + "fid": 2, + "name": "targetMids", + "list": 11, + }, + ], + "MapProfileToUsersResponse": [ + { + "fid": 1, + "name": "mappedMids", + "list": 11, + }, + ], + "MarkAsReadRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 4, + "name": "messageId", + "type": 11, + }, + { + "fid": 5, + "name": "threadMid", + "type": 11, + }, + ], + "MarkChatsAsReadRequest": [ + { + "fid": 2, + "name": "chatMids", + "set": 11, + }, + ], + "MarkThreadsAsReadRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "MemberInfo": [ + { + "fid": 1, + "name": "membership", + "struct": "Membership", + }, + { + "fid": 2, + "name": "memberNo", + "type": 8, + }, + { + "fid": 3, + "name": "isJoining", + "type": 2, + }, + { + "fid": 4, + "name": "isSubscribing", + "type": 2, + }, + { + "fid": 5, + "name": "validUntil", + "type": 10, + }, + { + "fid": 6, + "name": "billingItemName", + "type": 11, + }, + ], + "Membership": [ + { + "fid": 1, + "name": "membershipId", + "type": 10, + }, + { + "fid": 2, + "name": "uniqueKey", + "type": 11, + }, + { + "fid": 3, + "name": "title", + "type": 11, + }, + { + "fid": 4, + "name": "membershipDescription", + "type": 11, + }, + { + "fid": 5, + "name": "benefits", + "type": 11, + }, + { + "fid": 6, + "name": "isInAppPurchase", + "type": 2, + }, + { + "fid": 7, + "name": "paymentType", + "struct": "og_G", + }, + { + "fid": 8, + "name": "isPublished", + "type": 2, + }, + { + "fid": 9, + "name": "isFullMember", + "type": 2, + }, + { + "fid": 10, + "name": "price", + "type": 11, + }, + { + "fid": 11, + "name": "currency", + "type": 11, + }, + { + "fid": 12, + "name": "membershipStatus", + "struct": "og_E", + }, + { + "fid": 13, + "name": "bot", + "struct": "Bot", + }, + { + "fid": 14, + "name": "closeDate", + "type": 10, + }, + { + "fid": 15, + "name": "membershipCardUrl", + "type": 11, + }, + { + "fid": 16, + "name": "openchatUrl", + "type": 11, + }, + ], + "MentionableBot": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "squareMid", + "type": 11, + }, + ], + "MentionableSquareMember": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "role", + "struct": "SquareMemberRole", + }, + { + "fid": 5, + "name": "squareMid", + "type": 11, + }, + ], + "Message": [ + { + "fid": 1, + "name": "from", + "type": 11, + }, + { + "fid": 2, + "name": "to", + "type": 11, + }, + { + "fid": 3, + "name": "toType", + "struct": "MIDType", + }, + { + "fid": 4, + "name": "id", + "type": 11, + }, + { + "fid": 5, + "name": "createdTime", + "type": 10, + }, + { + "fid": 6, + "name": "deliveredTime", + "type": 10, + }, + { + "fid": 10, + "name": "text", + "type": 11, + }, + { + "fid": 11, + "name": "location", + "struct": "Location", + }, + { + "fid": 14, + "name": "hasContent", + "type": 2, + }, + { + "fid": 15, + "name": "contentType", + "struct": "ContentType", + }, + { + "fid": 17, + "name": "contentPreview", + "type": 11, + }, + { + "fid": 18, + "name": "contentMetadata", + "map": 11, + "key": 11, + }, + { + "fid": 19, + "name": "sessionId", + "type": 3, + }, + { + "fid": 20, + "name": "chunks", + "list": 11, + }, + { + "fid": 21, + "name": "relatedMessageId", + "type": 11, + }, + { + "fid": 22, + "name": "messageRelationType", + "struct": "Pb1_EnumC13015h6", + }, + { + "fid": 23, + "name": "readCount", + "type": 8, + }, + { + "fid": 24, + "name": "relatedMessageServiceCode", + "struct": "Pb1_E7", + }, + { + "fid": 25, + "name": "appExtensionType", + "struct": "Pb1_B", + }, + { + "fid": 27, + "name": "reactions", + "list": "Reaction", + }, + ], + "MessageBoxList": [ + { + "fid": 1, + "name": "messageBoxes", + "list": "ExtendedMessageBox", + }, + { + "fid": 2, + "name": "hasNext", + "type": 2, + }, + ], + "MessageBoxListRequest": [ + { + "fid": 1, + "name": "minChatId", + "type": 11, + }, + { + "fid": 2, + "name": "maxChatId", + "type": 11, + }, + { + "fid": 3, + "name": "activeOnly", + "type": 2, + }, + { + "fid": 4, + "name": "messageBoxCountLimit", + "type": 8, + }, + { + "fid": 5, + "name": "withUnreadCount", + "type": 2, + }, + { + "fid": 6, + "name": "lastMessagesPerMessageBoxCount", + "type": 8, + }, + { + "fid": 7, + "name": "unreadOnly", + "type": 2, + }, + ], + "MessageBoxV2MessageId": [ + { + "fid": 1, + "name": "deliveredTime", + "type": 10, + }, + { + "fid": 2, + "name": "messageId", + "type": 10, + }, + ], + "MessageSummary": [ + { + "fid": 1, + "name": "summary", + "list": 11, + }, + { + "fid": 2, + "name": "keywords", + "list": 11, + }, + { + "fid": 3, + "name": "range", + "struct": "MessageSummaryRange", + }, + { + "fid": 4, + "name": "detailedSummary", + "list": 11, + }, + ], + "MessageSummaryContent": [ + { + "fid": 1, + "name": "summary", + "list": 11, + }, + { + "fid": 2, + "name": "keywords", + "list": 11, + }, + { + "fid": 3, + "name": "range", + "struct": "MessageSummaryRange", + }, + ], + "MessageSummaryRange": [ + { + "fid": 1, + "name": "from", + "type": 10, + }, + { + "fid": 2, + "name": "to", + "type": 10, + }, + ], + "MessageVisibility": [ + { + "fid": 1, + "name": "showJoinMessage", + "type": 2, + }, + { + "fid": 2, + "name": "showLeaveMessage", + "type": 2, + }, + { + "fid": 3, + "name": "showKickoutMessage", + "type": 2, + }, + ], + "MigratePrimaryUsingQrCodeRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "nonce", + "type": 11, + }, + { + "fid": 3, + "name": "newDevice", + "struct": "h80_Y70_a", + }, + ], + "MigratePrimaryUsingQrCodeResponse": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "tokenV3IssueResult", + "struct": "TokenV3IssueResult", + }, + { + "fid": 3, + "name": "tokenV1IssueResult", + "struct": "TokenV1IssueResult", + }, + { + "fid": 4, + "name": "accountCountryCode", + "struct": "h80_X70_a", + }, + { + "fid": 5, + "name": "formattedPhoneNumbers", + "struct": "FormattedPhoneNumbers", + }, + ], + "MigratePrimaryWithTokenV3Response": [ + { + "fid": 1, + "name": "authToken", + "type": 11, + }, + { + "fid": 2, + "name": "tokenV3IssueResult", + "struct": "TokenV3IssueResult", + }, + { + "fid": 3, + "name": "countryCode", + "type": 11, + }, + { + "fid": 4, + "name": "prettifiedFormatPhoneNumber", + "type": 11, + }, + { + "fid": 5, + "name": "localFormatPhoneNumber", + "type": 11, + }, + { + "fid": 6, + "name": "mid", + "type": 11, + }, + ], + "ModuleResponse": [ + { + "fid": 1, + "name": "moduleInstance", + "struct": "NZ0_C12206t0", + }, + ], + "ModuleWithStatusResponse": [ + { + "fid": 1, + "name": "moduleInstance", + "struct": "NZ0_C12221y0", + }, + ], + "MyChatapp": [ + { + "fid": 1, + "name": "app", + "struct": "Chatapp", + }, + { + "fid": 2, + "name": "category", + "struct": "zf_EnumC40715c", + }, + { + "fid": 3, + "name": "priority", + "type": 10, + }, + ], + "MyDashboardItem": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "messageText", + "type": 11, + }, + { + "fid": 4, + "name": "icon", + "struct": "MyDashboardMessageIcon", + }, + { + "fid": 5, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 6, + "name": "exposedAt", + "type": 10, + }, + { + "fid": 7, + "name": "expiredAt", + "type": 10, + }, + { + "fid": 8, + "name": "order", + "type": 8, + }, + { + "fid": 9, + "name": "targetWrsModelId", + "type": 11, + }, + { + "fid": 10, + "name": "templateId", + "type": 11, + }, + { + "fid": 11, + "name": "fullMessageText", + "type": 11, + }, + { + "fid": 12, + "name": "templateCautionText", + "type": 11, + }, + ], + "MyDashboardMessageIcon": [ + { + "fid": 1, + "name": "walletTabIconUrl", + "type": 11, + }, + { + "fid": 2, + "name": "assetTabIconUrl", + "type": 11, + }, + { + "fid": 3, + "name": "iconAltText", + "type": 11, + }, + ], + "NZ0_C12150a0": [], + "NZ0_C12152b": [], + "NZ0_C12155c": [], + "NZ0_C12206t0": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "templateName", + "type": 11, + }, + { + "fid": 3, + "name": "fields", + "map": 11, + "key": 11, + }, + { + "fid": 4, + "name": "elements", + "list": "_any", + }, + { + "fid": 5, + "name": "etag", + "type": 11, + }, + { + "fid": 6, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 7, + "name": "name", + "type": 11, + }, + { + "fid": 8, + "name": "recommendable", + "type": 2, + }, + { + "fid": 9, + "name": "recommendedModelId", + "type": 11, + }, + { + "fid": 10, + "name": "flexContent", + "type": 11, + }, + { + "fid": 11, + "name": "categories", + "list": "_any", + }, + { + "fid": 12, + "name": "headers", + "list": "_any", + }, + ], + "NZ0_C12208u": [], + "NZ0_C12209u0": [ + { + "fid": 1, + "name": "fixedModules", + "list": "NZ0_C12206t0", + }, + { + "fid": 2, + "name": "etag", + "type": 11, + }, + { + "fid": 3, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 4, + "name": "recommendedModules", + "list": "NZ0_C12206t0", + }, + ], + "NZ0_C12212v0": [ + { + "fid": 1, + "name": "topTab", + "struct": "TopTab", + }, + { + "fid": 2, + "name": "subTabs", + "list": "SubTab", + }, + { + "fid": 3, + "name": "forceSelectedSubTabInfo", + "struct": "ForceSelectedSubTabInfo", + }, + { + "fid": 4, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 6, + "name": "etag", + "type": 11, + }, + ], + "NZ0_C12214w": [], + "NZ0_C12221y0": [ + { + "fid": 1, + "name": "status", + "struct": "NZ0_EnumC12218x0", + }, + { + "fid": 2, + "name": "id", + "type": 11, + }, + { + "fid": 3, + "name": "templateName", + "type": 11, + }, + { + "fid": 4, + "name": "etag", + "type": 11, + }, + { + "fid": 5, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 6, + "name": "name", + "type": 11, + }, + { + "fid": 7, + "name": "recommendable", + "type": 2, + }, + { + "fid": 8, + "name": "recommendedModelId", + "type": 11, + }, + { + "fid": 9, + "name": "fields", + "map": 11, + "key": 11, + }, + { + "fid": 10, + "name": "elements", + "list": "_any", + }, + { + "fid": 11, + "name": "categories", + "list": "_any", + }, + { + "fid": 12, + "name": "headers", + "list": "_any", + }, + ], + "NZ0_C12224z0": [ + { + "fid": 1, + "name": "etag", + "type": 11, + }, + { + "fid": 2, + "name": "refreshTimeSec", + "type": 8, + }, + { + "fid": 3, + "name": "fixedModules", + "list": "NZ0_C12221y0", + }, + { + "fid": 4, + "name": "recommendedModules", + "list": "NZ0_C12221y0", + }, + ], + "NZ0_D": [ + { + "fid": 1, + "name": "moduleLayoutV4", + "struct": "NZ0_C12212v0", + }, + { + "fid": 2, + "name": "notModified", + "struct": "NZ0_G0", + }, + { + "fid": 3, + "name": "notFound", + "struct": "NZ0_F0", + }, + ], + "NZ0_E": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "etag", + "type": 11, + }, + { + "fid": 3, + "name": "recommendedModelId", + "type": 11, + }, + { + "fid": 4, + "name": "deviceAdId", + "type": 11, + }, + { + "fid": 5, + "name": "agreedWithTargetingAdByMid", + "type": 2, + }, + { + "fid": 6, + "name": "deviceId", + "type": 11, + }, + ], + "NZ0_F": [ + { + "fid": 1, + "name": "moduleResponse", + "struct": "ModuleResponse", + }, + { + "fid": 2, + "name": "notModified", + "struct": "NZ0_G0", + }, + { + "fid": 3, + "name": "notFound", + "struct": "NZ0_F0", + }, + ], + "NZ0_F0": [], + "NZ0_G": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "etag", + "type": 11, + }, + { + "fid": 3, + "name": "recommendedModelId", + "type": 11, + }, + { + "fid": 4, + "name": "deviceAdId", + "type": 11, + }, + { + "fid": 5, + "name": "agreedWithTargetingAdByMid", + "type": 2, + }, + { + "fid": 6, + "name": "deviceId", + "type": 11, + }, + ], + "NZ0_G0": [], + "NZ0_H": [ + { + "fid": 1, + "name": "moduleResponse", + "struct": "ModuleWithStatusResponse", + }, + { + "fid": 2, + "name": "notModified", + "struct": "NZ0_G0", + }, + { + "fid": 3, + "name": "notFound", + "struct": "NZ0_F0", + }, + ], + "NZ0_K": [ + { + "fid": 1, + "name": "moduleAggregationResponse", + "struct": "NZ0_C12209u0", + }, + { + "fid": 2, + "name": "notModified", + "struct": "NZ0_G0", + }, + ], + "NZ0_M": [ + { + "fid": 1, + "name": "moduleAggregationResponse", + "struct": "NZ0_C12224z0", + }, + { + "fid": 2, + "name": "notModified", + "struct": "NZ0_G0", + }, + ], + "NZ0_S": [], + "NZ0_U": [], + "NearbyEntry": [ + { + "fid": 1, + "name": "emid", + "type": 11, + }, + { + "fid": 2, + "name": "distance", + "type": 4, + }, + { + "fid": 3, + "name": "lastUpdatedInSec", + "type": 8, + }, + { + "fid": 4, + "name": "property", + "map": 11, + "key": 11, + }, + { + "fid": 5, + "name": "profile", + "struct": "Profile", + }, + ], + "NoBidCallback": [ + { + "fid": 1, + "name": "impEventUrl", + "type": 11, + }, + { + "fid": 2, + "name": "vimpEventUrl", + "type": 11, + }, + { + "fid": 3, + "name": "imp100pEventUrl", + "type": 11, + }, + ], + "NoteStatus": [ + { + "fid": 1, + "name": "noteCount", + "type": 8, + }, + { + "fid": 2, + "name": "latestCreatedAt", + "type": 10, + }, + ], + "NotificationSetting": [ + { + "fid": 1, + "name": "mute", + "type": 2, + }, + ], + "NotificationSettingEntry": [ + { + "fid": 1, + "name": "notificationSetting", + "struct": "NotificationSetting", + }, + ], + "NotifyChatAdEntryRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "scenarioId", + "type": 11, + }, + { + "fid": 3, + "name": "sdata", + "type": 11, + }, + ], + "NotifyDeviceConnectionRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + { + "fid": 2, + "name": "connectionId", + "type": 11, + }, + { + "fid": 3, + "name": "connectionType", + "struct": "do0_EnumC23148f", + }, + { + "fid": 4, + "name": "code", + "struct": "do0_EnumC23147e", + }, + { + "fid": 5, + "name": "errorReason", + "type": 11, + }, + { + "fid": 6, + "name": "startTime", + "type": 10, + }, + { + "fid": 7, + "name": "endTime", + "type": 10, + }, + ], + "NotifyDeviceConnectionResponse": [ + { + "fid": 1, + "name": "latestOffset", + "type": 10, + }, + ], + "NotifyDeviceDisconnectionRequest": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + { + "fid": 2, + "name": "connectionId", + "type": 11, + }, + { + "fid": 4, + "name": "disconnectedTime", + "type": 10, + }, + ], + "NotifyOATalkroomEventsRequest": [ + { + "fid": 1, + "name": "events", + "list": "OATalkroomEvent", + }, + ], + "NotifyScenarioExecutedRequest": [ + { + "fid": 2, + "name": "scenarioResults", + "list": "do0_F", + }, + ], + "OATalkroomEvent": [ + { + "fid": 1, + "name": "eventId", + "type": 11, + }, + { + "fid": 2, + "name": "type", + "struct": "kf_p", + }, + { + "fid": 3, + "name": "context", + "struct": "OATalkroomEventContext", + }, + { + "fid": 4, + "name": "content", + "struct": "kf_m", + }, + ], + "OATalkroomEventContext": [ + { + "fid": 1, + "name": "timestampMillis", + "type": 10, + }, + { + "fid": 2, + "name": "botMid", + "type": 11, + }, + { + "fid": 3, + "name": "userMid", + "type": 11, + }, + { + "fid": 4, + "name": "os", + "struct": "kf_o", + }, + { + "fid": 5, + "name": "osVersion", + "type": 11, + }, + { + "fid": 6, + "name": "appVersion", + "type": 11, + }, + { + "fid": 7, + "name": "region", + "type": 11, + }, + ], + "OaAddFriendArea": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + ], + "Ob1_C12606a0": [], + "Ob1_C12608b": [], + "Ob1_C12618e0": [ + { + "fid": 1, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + { + "fid": 4, + "name": "productType", + "struct": "Ob1_O0", + }, + ], + "Ob1_C12621f0": [ + { + "fid": 1, + "name": "history", + "list": "SubscriptionSlotHistory", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalSize", + "type": 10, + }, + ], + "Ob1_C12630i0": [], + "Ob1_C12637k1": [], + "Ob1_C12642m0": [], + "Ob1_C12649o1": [], + "Ob1_C12660s1": [], + "Ob1_E": [ + { + "fid": 1, + "name": "stickerSummary", + "struct": "_any", + }, + ], + "Ob1_G": [], + "Ob1_H0": [ + { + "fid": 1, + "name": "lpPromotionProperty", + "struct": "_any", + }, + ], + "Ob1_I0": [ + { + "fid": 1, + "name": "stickerResourceType", + "type": 8, + }, + { + "fid": 2, + "name": "themeResourceType", + "type": 8, + }, + { + "fid": 3, + "name": "sticonResourceType", + "type": 8, + }, + ], + "Ob1_L": [ + { + "fid": 1, + "name": "productTypes", + "set": "Ob1_O0", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + { + "fid": 4, + "name": "shopFilter", + "struct": "ShopFilter", + }, + ], + "Ob1_M": [ + { + "fid": 1, + "name": "browsingHistory", + "list": "BrowsingHistory", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalSize", + "type": 8, + }, + ], + "Ob1_N": [], + "Ob1_P0": [ + { + "fid": 1, + "name": "stickerSummary", + "struct": "StickerSummary", + }, + { + "fid": 2, + "name": "themeSummary", + "struct": "ThemeSummary", + }, + { + "fid": 3, + "name": "sticonSummary", + "struct": "SticonSummary", + }, + ], + "Ob1_U": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "limit", + "type": 8, + }, + { + "fid": 4, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 5, + "name": "sortType", + "struct": "Ob1_V1", + }, + ], + "Ob1_V": [ + { + "fid": 1, + "name": "products", + "list": "ProductSummary", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalSize", + "type": 10, + }, + { + "fid": 4, + "name": "maxSlotCount", + "type": 8, + }, + ], + "Ob1_W": [ + { + "fid": 1, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 2, + "name": "limit", + "type": 8, + }, + { + "fid": 3, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 4, + "name": "recommendationType", + "struct": "Ob1_EnumC12631i1", + }, + { + "fid": 5, + "name": "productId", + "type": 11, + }, + { + "fid": 6, + "name": "subtypes", + "set": 8, + }, + { + "fid": 7, + "name": "shouldShuffle", + "type": 2, + }, + { + "fid": 8, + "name": "includeStickerIds", + "type": 2, + }, + { + "fid": 9, + "name": "shopFilter", + "struct": "ShopFilter", + }, + ], + "Ob1_W0": [ + { + "fid": 1, + "name": "promotionBuddyInfo", + "struct": "PromotionBuddyInfo", + }, + { + "fid": 2, + "name": "promotionInstallInfo", + "struct": "PromotionInstallInfo", + }, + { + "fid": 3, + "name": "promotionMissionInfo", + "struct": "PromotionMissionInfo", + }, + ], + "OkButton": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + ], + "OpenSessionRequest": [ + { + "fid": 1, + "name": "metaData", + "map": 11, + "key": 11, + }, + ], + "OpenSessionResponse": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "OperationResponse": [ + { + "fid": 1, + "name": "operations", + "list": "Pb1_C13154r6", + }, + { + "fid": 2, + "name": "hasMoreOps", + "type": 2, + }, + { + "fid": 3, + "name": "globalEvents", + "struct": "TGlobalEvents", + }, + { + "fid": 4, + "name": "individualEvents", + "struct": "TIndividualEvents", + }, + ], + "OrderInfo": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "orderId", + "type": 11, + }, + { + "fid": 3, + "name": "confirmUrl", + "type": 11, + }, + { + "fid": 4, + "name": "bot", + "struct": "Bot", + }, + ], + "P70_k": [], + "PaidCallDialing": [ + { + "fid": 1, + "name": "type", + "struct": "PaidCallType", + }, + { + "fid": 2, + "name": "dialedNumber", + "type": 11, + }, + { + "fid": 3, + "name": "serviceDomain", + "type": 11, + }, + { + "fid": 4, + "name": "productType", + "struct": "Pb1_EnumC13196u6", + }, + { + "fid": 5, + "name": "productName", + "type": 11, + }, + { + "fid": 6, + "name": "multipleProduct", + "type": 2, + }, + { + "fid": 7, + "name": "callerIdStatus", + "struct": "Pb1_EnumC13238x6", + }, + { + "fid": 10, + "name": "balance", + "type": 8, + }, + { + "fid": 11, + "name": "unit", + "type": 11, + }, + { + "fid": 12, + "name": "rate", + "type": 8, + }, + { + "fid": 13, + "name": "displayCode", + "type": 11, + }, + { + "fid": 14, + "name": "calledNumber", + "type": 11, + }, + { + "fid": 15, + "name": "calleeNationalNumber", + "type": 11, + }, + { + "fid": 16, + "name": "calleeCallingCode", + "type": 11, + }, + { + "fid": 17, + "name": "rateDivision", + "type": 11, + }, + { + "fid": 20, + "name": "adMaxMin", + "type": 8, + }, + { + "fid": 21, + "name": "adRemains", + "type": 8, + }, + { + "fid": 22, + "name": "adSessionId", + "type": 11, + }, + ], + "PaidCallResponse": [ + { + "fid": 1, + "name": "host", + "struct": "CallHost", + }, + { + "fid": 2, + "name": "dialing", + "struct": "PaidCallDialing", + }, + { + "fid": 3, + "name": "token", + "type": 11, + }, + { + "fid": 4, + "name": "spotItems", + "list": "SpotItem", + }, + ], + "PartialFullSyncResponse": [ + { + "fid": 1, + "name": "targetCategories", + "map": 10, + "key": 8, + }, + ], + "PasswordHashingParameters": [ + { + "fid": 1, + "name": "hmacKey", + "type": 11, + }, + { + "fid": 2, + "name": "scryptParams", + "struct": "ScryptParams", + }, + ], + "PasswordValidationRule": [ + { + "fid": 1, + "name": "type", + "struct": "c80_EnumC18292e", + }, + { + "fid": 2, + "name": "pattern", + "list": 11, + }, + { + "fid": 3, + "name": "clientNoticeMessage", + "type": 11, + }, + ], + "PaymentAuthenticationInfo": [ + { + "fid": 1, + "name": "authToken", + "type": 11, + }, + { + "fid": 2, + "name": "confirmMessage", + "type": 11, + }, + ], + "PaymentEligibleFriendStatus": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "status", + "struct": "r80_EnumC34367g", + }, + ], + "PaymentLineCardInfo": [ + { + "fid": 1, + "name": "designCode", + "type": 11, + }, + { + "fid": 2, + "name": "imageUrl", + "type": 11, + }, + ], + "PaymentLineCardIssueForm": [ + { + "fid": 1, + "name": "requiredTermsOfServiceBundle", + "struct": "r80_e0", + }, + { + "fid": 2, + "name": "availableLineCards", + "list": "PaymentLineCardInfo", + }, + ], + "PaymentRequiredAgreementsInfo": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + { + "fid": 2, + "name": "desc", + "type": 11, + }, + { + "fid": 3, + "name": "linkName", + "type": 11, + }, + { + "fid": 4, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 5, + "name": "newAgreements", + "list": 11, + }, + ], + "PaymentReservationResult": [ + { + "fid": 1, + "name": "orderId", + "type": 11, + }, + { + "fid": 2, + "name": "confirmUrl", + "type": 11, + }, + { + "fid": 3, + "name": "extras", + "map": 11, + "key": 11, + }, + ], + "PaymentTradeInfo": [ + { + "fid": 1, + "name": "chargeRequestId", + "type": 11, + }, + { + "fid": 2, + "name": "chargeRequestType", + "struct": "r80_g0", + }, + { + "fid": 3, + "name": "chargeRequestYmdt", + "type": 10, + }, + { + "fid": 4, + "name": "tradeNumber", + "type": 11, + }, + { + "fid": 7, + "name": "agencyNo", + "type": 11, + }, + { + "fid": 8, + "name": "confirmNo", + "type": 11, + }, + { + "fid": 9, + "name": "expireYmd", + "type": 10, + }, + { + "fid": 10, + "name": "moneyAmount", + "struct": "DisplayMoney", + }, + { + "fid": 11, + "name": "completeYmdt", + "type": 10, + }, + { + "fid": 12, + "name": "paymentProcessCorp", + "type": 11, + }, + { + "fid": 13, + "name": "status", + "struct": "r80_h0", + }, + { + "fid": 14, + "name": "helpUrl", + "type": 11, + }, + { + "fid": 15, + "name": "guideMessage", + "type": 11, + }, + ], + "Pb1_A4": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "eMid", + "type": 11, + }, + ], + "Pb1_A6": [], + "Pb1_B3": [], + "Pb1_C12916a5": [ + { + "fid": 1, + "name": "wrappedNonce", + "type": 11, + }, + { + "fid": 2, + "name": "kdfParameter1", + "type": 11, + }, + { + "fid": 3, + "name": "kdfParameter2", + "type": 11, + }, + ], + "Pb1_C12938c": [ + { + "fid": 1, + "name": "message", + "struct": "AbuseReport", + }, + { + "fid": 2, + "name": "lineMeeting", + "struct": "AbuseReportLineMeeting", + }, + ], + "Pb1_C12946c7": [], + "Pb1_C12953d0": [ + { + "fid": 2, + "name": "verifier", + "type": 11, + }, + { + "fid": 3, + "name": "pinCode", + "type": 11, + }, + { + "fid": 4, + "name": "errorCode", + "struct": "ErrorCode", + }, + { + "fid": 5, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + { + "fid": 6, + "name": "encryptedKeyChain", + "type": 11, + }, + { + "fid": 7, + "name": "hashKeyChain", + "type": 11, + }, + ], + "Pb1_C12980f": [], + "Pb1_C12996g1": [], + "Pb1_C13008h": [], + "Pb1_C13019ha": [], + "Pb1_C13042j5": [], + "Pb1_C13070l5": [], + "Pb1_C13097n4": [ + { + "fid": 1, + "name": "version", + "type": 8, + }, + { + "fid": 2, + "name": "keyId", + "type": 8, + }, + { + "fid": 4, + "name": "keyData", + "type": 11, + }, + { + "fid": 5, + "name": "createdTime", + "type": 10, + }, + ], + "Pb1_C13113o6": [ + { + "fid": 1, + "name": "callRoute", + "struct": "CallRoute", + }, + { + "fid": 2, + "name": "paidCallResponse", + "struct": "PaidCallResponse", + }, + ], + "Pb1_C13114o7": [], + "Pb1_C13126p5": [], + "Pb1_C13131pa": [], + "Pb1_C13150r2": [], + "Pb1_C13154r6": [ + { + "fid": 1, + "name": "revision", + "type": 10, + }, + { + "fid": 2, + "name": "createdTime", + "type": 10, + }, + { + "fid": 3, + "name": "type", + "struct": "OpType", + }, + { + "fid": 4, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 5, + "name": "checksum", + "type": 11, + }, + { + "fid": 7, + "name": "status", + "struct": "Pb1_EnumC13127p6", + }, + { + "fid": 10, + "name": "param1", + "type": 11, + }, + { + "fid": 11, + "name": "param2", + "type": 11, + }, + { + "fid": 12, + "name": "param3", + "type": 11, + }, + { + "fid": 20, + "name": "message", + "struct": "Message", + }, + ], + "Pb1_C13155r7": [ + { + "fid": 1, + "name": "restoreClaim", + "type": 11, + }, + ], + "Pb1_C13169s7": [ + { + "fid": 1, + "name": "recoveryKey", + "type": 11, + }, + { + "fid": 2, + "name": "blobPayload", + "type": 11, + }, + ], + "Pb1_C13183t7": [], + "Pb1_C13190u0": [ + { + "fid": 1, + "name": "rich", + "struct": "BuddyRichMenuChatBarItem", + }, + { + "fid": 2, + "name": "widgetList", + "struct": "BuddyWidgetListCharBarItem", + }, + { + "fid": 3, + "name": "web", + "struct": "BuddyWebChatBarItem", + }, + ], + "Pb1_C13202uc": [], + "Pb1_C13208v4": [ + { + "fid": 1, + "name": "groupExtra", + "struct": "GroupExtra", + }, + { + "fid": 2, + "name": "peerExtra", + "struct": "Pb1_A6", + }, + ], + "Pb1_C13254y8": [], + "Pb1_C13263z3": [ + { + "fid": 1, + "name": "blobHeader", + "type": 11, + }, + { + "fid": 2, + "name": "blobPayload", + "type": 11, + }, + { + "fid": 3, + "name": "reason", + "struct": "Pb1_A3", + }, + ], + "Pb1_Ca": [], + "Pb1_E3": [ + { + "fid": 1, + "name": "blobHeader", + "type": 11, + }, + { + "fid": 2, + "name": "payloadDataList", + "list": "Pb1_X5", + }, + ], + "Pb1_Ea": [], + "Pb1_F3": [], + "Pb1_H3": [], + "Pb1_I3": [], + "Pb1_Ia": [], + "Pb1_J5": [], + "Pb1_K3": [], + "Pb1_M3": [], + "Pb1_O": [], + "Pb1_O3": [], + "Pb1_P9": [], + "Pb1_Q8": [], + "Pb1_S5": [], + "Pb1_Sb": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "encryptedKeyChain", + "type": 11, + }, + { + "fid": 3, + "name": "hashKeyChain", + "type": 11, + }, + ], + "Pb1_U1": [], + "Pb1_U3": [ + { + "fid": 1, + "name": "keyVersion", + "type": 8, + }, + { + "fid": 2, + "name": "groupKeyId", + "type": 8, + }, + { + "fid": 3, + "name": "creator", + "type": 11, + }, + { + "fid": 4, + "name": "creatorKeyId", + "type": 8, + }, + { + "fid": 5, + "name": "receiver", + "type": 11, + }, + { + "fid": 6, + "name": "receiverKeyId", + "type": 8, + }, + { + "fid": 7, + "name": "encryptedSharedKey", + "type": 11, + }, + { + "fid": 8, + "name": "allowedTypes", + "set": 8, + }, + { + "fid": 9, + "name": "specVersion", + "type": 8, + }, + ], + "Pb1_V3": [ + { + "fid": 1, + "name": "version", + "type": 8, + }, + { + "fid": 2, + "name": "keyId", + "type": 8, + }, + { + "fid": 4, + "name": "publicKey", + "type": 11, + }, + { + "fid": 5, + "name": "privateKey", + "type": 11, + }, + { + "fid": 6, + "name": "createdTime", + "type": 10, + }, + ], + "Pb1_W4": [], + "Pb1_W5": [ + { + "fid": 1, + "name": "e2ee", + "struct": "E2EEMetadata", + }, + { + "fid": 2, + "name": "singleValue", + "struct": "SingleValueMetadata", + }, + ], + "Pb1_W6": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + { + "fid": 3, + "name": "blobPayload", + "type": 11, + }, + ], + "Pb1_X": [ + { + "fid": 1, + "name": "verifier", + "type": 11, + }, + { + "fid": 2, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + { + "fid": 3, + "name": "encryptedKeyChain", + "type": 11, + }, + { + "fid": 4, + "name": "hashKeyChain", + "type": 11, + }, + { + "fid": 5, + "name": "errorCode", + "struct": "ErrorCode", + }, + ], + "Pb1_X5": [ + { + "fid": 1, + "name": "metadata", + "struct": "Pb1_W5", + }, + { + "fid": 2, + "name": "blobPayload", + "type": 11, + }, + ], + "Pb1_X7": [ + { + "fid": 1, + "name": "operationResponse", + "struct": "OperationResponse", + }, + { + "fid": 2, + "name": "fullSyncResponse", + "struct": "FullSyncResponse", + }, + { + "fid": 3, + "name": "partialFullSyncResponse", + "struct": "PartialFullSyncResponse", + }, + ], + "Pb1_Y4": [], + "Pb1_Za": [], + "Pb1_Zc": [], + "Pb1_ad": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + ], + "Pb1_cd": [], + "PendingAgreementsResponse": [ + { + "fid": 1, + "name": "pendingAgreements", + "list": 8, + }, + ], + "PermitLoginRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "metaData", + "map": 11, + "key": 11, + }, + ], + "PermitLoginResponse": [ + { + "fid": 1, + "name": "oneTimeToken", + "type": 11, + }, + ], + "PhoneVerificationResult": [ + { + "fid": 1, + "name": "verificationResult", + "struct": "VerificationResult", + }, + { + "fid": 2, + "name": "accountMigrationCheckType", + "struct": "Pb1_EnumC13022i", + }, + { + "fid": 3, + "name": "recommendAddFriends", + "type": 2, + }, + ], + "PocketMoneyInfo": [ + { + "fid": 1, + "name": "assetServiceInfo", + "struct": "AssetServiceInfo", + }, + { + "fid": 2, + "name": "displayType", + "struct": "NZ0_I0", + }, + { + "fid": 3, + "name": "productType", + "struct": "NZ0_K0", + }, + { + "fid": 4, + "name": "refinanceText", + "type": 11, + }, + ], + "PoiInfo": [ + { + "fid": 1, + "name": "poiId", + "type": 11, + }, + { + "fid": 2, + "name": "poiRealm", + "struct": "Pb1_F6", + }, + ], + "PointInfo": [ + { + "fid": 1, + "name": "assetServiceInfo", + "struct": "AssetServiceInfo", + }, + ], + "PopularKeyword": [ + { + "fid": 1, + "name": "value", + "type": 11, + }, + { + "fid": 2, + "name": "highlighted", + "type": 2, + }, + { + "fid": 3, + "name": "id", + "type": 10, + }, + ], + "Popup": [ + { + "fid": 1, + "name": "id", + "type": 10, + }, + { + "fid": 2, + "name": "country", + "type": 11, + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "type", + "struct": "PopupType", + }, + { + "fid": 5, + "name": "content", + "struct": "PopupContent", + }, + { + "fid": 6, + "name": "activated", + "type": 2, + }, + { + "fid": 7, + "name": "revision", + "type": 10, + }, + { + "fid": 8, + "name": "startsAt", + "type": 10, + }, + { + "fid": 9, + "name": "endsAt", + "type": 10, + }, + { + "fid": 10, + "name": "createdAt", + "type": 10, + }, + ], + "PopupContent": [ + { + "fid": 1, + "name": "mainPopUp", + "struct": "MainPopup", + }, + { + "fid": 2, + "name": "chatroomPopup", + "struct": "ChatroomPopup", + }, + ], + "PopupProperty": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "startDateTimeMillis", + "type": 10, + }, + { + "fid": 4, + "name": "endDateTimeMillis", + "type": 10, + }, + { + "fid": 5, + "name": "popupContents", + "list": "PopupContent", + }, + { + "fid": 6, + "name": "wrsCampaignId", + "type": 11, + }, + { + "fid": 7, + "name": "optOut", + "type": 2, + }, + { + "fid": 8, + "name": "layoutSize", + "struct": "NZ0_N0", + }, + ], + "Price": [ + { + "fid": 1, + "name": "currency", + "type": 11, + }, + { + "fid": 2, + "name": "amount", + "type": 11, + }, + { + "fid": 3, + "name": "priceString", + "type": 11, + }, + ], + "Priority": [ + { + "fid": 1, + "name": "value", + "type": 10, + }, + ], + "Product": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "productVersion", + "type": 10, + }, + { + "fid": 3, + "name": "productDetails", + "struct": "AR0_o", + }, + ], + "ProductDetail": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "type": 11, + }, + { + "fid": 4, + "name": "subtype", + "struct": "Ob1_X1", + }, + { + "fid": 5, + "name": "billingCpId", + "type": 11, + }, + { + "fid": 11, + "name": "name", + "type": 11, + }, + { + "fid": 12, + "name": "author", + "type": 11, + }, + { + "fid": 13, + "name": "details", + "type": 11, + }, + { + "fid": 14, + "name": "copyright", + "type": 11, + }, + { + "fid": 15, + "name": "notice", + "type": 11, + }, + { + "fid": 16, + "name": "promotionInfo", + "struct": "PromotionInfo", + }, + { + "fid": 21, + "name": "latestVersion", + "type": 10, + }, + { + "fid": 22, + "name": "latestVersionString", + "type": 11, + }, + { + "fid": 23, + "name": "version", + "type": 10, + }, + { + "fid": 24, + "name": "versionString", + "type": 11, + }, + { + "fid": 25, + "name": "applicationVersionRange", + "struct": "ApplicationVersionRange", + }, + { + "fid": 31, + "name": "owned", + "type": 2, + }, + { + "fid": 32, + "name": "grantedByDefault", + "type": 2, + }, + { + "fid": 41, + "name": "validFor", + "type": 8, + }, + { + "fid": 42, + "name": "validUntil", + "type": 10, + }, + { + "fid": 51, + "name": "onSale", + "type": 2, + }, + { + "fid": 52, + "name": "salesFlags", + "set": 11, + }, + { + "fid": 53, + "name": "availableForPresent", + "type": 2, + }, + { + "fid": 54, + "name": "availableForMyself", + "type": 2, + }, + { + "fid": 61, + "name": "priceTier", + "type": 8, + }, + { + "fid": 62, + "name": "price", + "struct": "Price", + }, + { + "fid": 63, + "name": "priceInLineCoin", + "type": 11, + }, + { + "fid": 64, + "name": "localizedPrice", + "struct": "Price", + }, + { + "fid": 91, + "name": "images", + "key": 11, + }, + { + "fid": 92, + "name": "attributes", + "map": 11, + "key": 11, + }, + { + "fid": 93, + "name": "authorId", + "type": 11, + }, + { + "fid": 94, + "name": "stickerResourceType", + "struct": "StickerResourceType", + }, + { + "fid": 95, + "name": "productProperty", + "struct": "jp_naver_line_shop_protocol_thrift_ProductProperty", + }, + { + "fid": 96, + "name": "productSalesState", + "struct": "Ob1_J0", + }, + { + "fid": 97, + "name": "installedTime", + "type": 10, + }, + { + "fid": 101, + "name": "wishProperty", + "struct": "ProductWishProperty", + }, + { + "fid": 102, + "name": "subscriptionProperty", + "struct": "ProductSubscriptionProperty", + }, + { + "fid": 103, + "name": "productPromotionProperty", + "struct": "Ob1_H0", + }, + { + "fid": 104, + "name": "availableInCountry", + "type": 2, + }, + { + "fid": 105, + "name": "editorsPickBanners", + "list": "EditorsPickBannerForClient", + }, + { + "fid": 106, + "name": "ableToBeGivenAsPresent", + "type": 2, + }, + { + "fid": 107, + "name": "madeWithStickerMaker", + "type": 2, + }, + { + "fid": 108, + "name": "customDownloadButtonLabel", + "type": 11, + }, + ], + "ProductList": [ + { + "fid": 1, + "name": "productList", + "list": "ProductDetail", + }, + { + "fid": 2, + "name": "offset", + "type": 8, + }, + { + "fid": 3, + "name": "totalSize", + "type": 8, + }, + { + "fid": 11, + "name": "title", + "type": 11, + }, + ], + "ProductListByAuthorRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "authorId", + "type": 11, + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "shopFilter", + "struct": "ShopFilter", + }, + { + "fid": 6, + "name": "includeStickerIds", + "type": 2, + }, + { + "fid": 7, + "name": "additionalProductTypes", + "list": 8, + }, + { + "fid": 8, + "name": "showcaseType", + "struct": "Ob1_EnumC12666u1", + }, + ], + "ProductSearchSummary": [], + "ProductSubscriptionProperty": [ + { + "fid": 1, + "name": "availableForSubscribe", + "type": 2, + }, + { + "fid": 2, + "name": "subscriptionAvailability", + "struct": "Ob1_D0", + }, + ], + "ProductSummary": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 11, + "name": "name", + "type": 11, + }, + { + "fid": 21, + "name": "latestVersion", + "type": 10, + }, + { + "fid": 25, + "name": "applicationVersionRange", + "struct": "ApplicationVersionRange", + }, + { + "fid": 32, + "name": "grantedByDefault", + "type": 2, + }, + { + "fid": 92, + "name": "attributes", + "map": 11, + "key": 11, + }, + { + "fid": 93, + "name": "productTypeSummary", + "struct": "Ob1_P0", + }, + { + "fid": 94, + "name": "validUntil", + "type": 10, + }, + { + "fid": 95, + "name": "validFor", + "type": 8, + }, + { + "fid": 96, + "name": "installedTime", + "type": 10, + }, + { + "fid": 97, + "name": "availability", + "struct": "Ob1_D0", + }, + { + "fid": 98, + "name": "authorId", + "type": 11, + }, + { + "fid": 99, + "name": "canAutoDownload", + "type": 2, + }, + { + "fid": 100, + "name": "promotionInfo", + "struct": "PromotionInfo", + }, + ], + "ProductSummaryForAutoSuggest": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "version", + "type": 10, + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "stickerResourceType", + "struct": "StickerResourceType", + }, + { + "fid": 5, + "name": "suggestVersion", + "type": 10, + }, + { + "fid": 6, + "name": "popupLayer", + "struct": "Ob1_B0", + }, + { + "fid": 7, + "name": "type", + "struct": "Ob1_O0", + }, + { + "fid": 8, + "name": "resourceType", + "struct": "Ob1_I0", + }, + { + "fid": 9, + "name": "stickerSize", + "struct": "Ob1_C1", + }, + ], + "ProductSummaryList": [ + { + "fid": 1, + "name": "productList", + "list": "ProductSummary", + }, + { + "fid": 2, + "name": "offset", + "type": 8, + }, + { + "fid": 3, + "name": "totalSize", + "type": 8, + }, + ], + "ProductValidationRequest": [ + { + "fid": 1, + "name": "validationScheme", + "struct": "ProductValidationScheme", + }, + { + "fid": 10, + "name": "authCode", + "type": 11, + }, + ], + "ProductValidationResult": [ + { + "fid": 1, + "name": "validated", + "type": 2, + }, + ], + "ProductValidationScheme": [ + { + "fid": 10, + "name": "key", + "type": 11, + }, + { + "fid": 11, + "name": "offset", + "type": 10, + }, + { + "fid": 12, + "name": "size", + "type": 10, + }, + ], + "ProductWishProperty": [ + { + "fid": 1, + "name": "totalCount", + "type": 10, + }, + ], + "Profile": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "userid", + "type": 11, + }, + { + "fid": 10, + "name": "phone", + "type": 11, + }, + { + "fid": 11, + "name": "email", + "type": 11, + }, + { + "fid": 12, + "name": "regionCode", + "type": 11, + }, + { + "fid": 20, + "name": "displayName", + "type": 11, + }, + { + "fid": 21, + "name": "phoneticName", + "type": 11, + }, + { + "fid": 22, + "name": "pictureStatus", + "type": 11, + }, + { + "fid": 23, + "name": "thumbnailUrl", + "type": 11, + }, + { + "fid": 24, + "name": "statusMessage", + "type": 11, + }, + { + "fid": 31, + "name": "allowSearchByUserid", + "type": 2, + }, + { + "fid": 32, + "name": "allowSearchByEmail", + "type": 2, + }, + { + "fid": 33, + "name": "picturePath", + "type": 11, + }, + { + "fid": 34, + "name": "musicProfile", + "type": 11, + }, + { + "fid": 35, + "name": "videoProfile", + "type": 11, + }, + { + "fid": 36, + "name": "statusMessageContentMetadata", + "map": 11, + "key": 11, + }, + { + "fid": 37, + "name": "avatarProfile", + "struct": "AvatarProfile", + }, + { + "fid": 38, + "name": "nftProfile", + "type": 2, + }, + { + "fid": 39, + "name": "pictureSource", + "struct": "Pb1_N6", + }, + { + "fid": 40, + "name": "profileId", + "type": 11, + }, + { + "fid": 41, + "name": "profileType", + "struct": "Pb1_O6", + }, + { + "fid": 42, + "name": "createdTimeMillis", + "type": 10, + }, + ], + "ProfileContent": [ + { + "fid": 1, + "name": "value", + "type": 11, + }, + { + "fid": 2, + "name": "meta", + "map": 11, + "key": 11, + }, + ], + "ProfileRefererContent": [ + { + "fid": 1, + "name": "oatQueryParameters", + "map": 11, + "key": 11, + }, + ], + "PromotionBuddyDetail": [ + { + "fid": 1, + "name": "searchId", + "type": 11, + }, + { + "fid": 2, + "name": "contactStatus", + "struct": "ContactStatus", + }, + { + "fid": 3, + "name": "name", + "type": 11, + }, + { + "fid": 4, + "name": "pictureUrl", + "type": 11, + }, + { + "fid": 5, + "name": "statusMessage", + "type": 11, + }, + { + "fid": 6, + "name": "brandType", + "struct": "Ob1_EnumC12641m", + }, + ], + "PromotionBuddyInfo": [ + { + "fid": 1, + "name": "buddyMid", + "type": 11, + }, + { + "fid": 2, + "name": "promotionBuddyDetail", + "struct": "PromotionBuddyDetail", + }, + { + "fid": 3, + "name": "showBanner", + "type": 2, + }, + ], + "PromotionInfo": [ + { + "fid": 1, + "name": "promotionType", + "struct": "Ob1_EnumC12610b1", + }, + { + "fid": 2, + "name": "promotionDetail", + "struct": "Ob1_W0", + }, + { + "fid": 51, + "name": "buddyInfo", + "struct": "PromotionBuddyInfo", + }, + ], + "PromotionInstallInfo": [ + { + "fid": 1, + "name": "downloadUrl", + "type": 11, + }, + { + "fid": 2, + "name": "customUrlSchema", + "type": 11, + }, + ], + "PromotionMissionInfo": [ + { + "fid": 1, + "name": "promotionMissionType", + "struct": "Ob1_EnumC12607a1", + }, + { + "fid": 2, + "name": "missionCompleted", + "type": 2, + }, + { + "fid": 3, + "name": "downloadUrl", + "type": 11, + }, + { + "fid": 4, + "name": "customUrlSchema", + "type": 11, + }, + { + "fid": 5, + "name": "oaMid", + "type": 11, + }, + ], + "Provider": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "providerPageUrl", + "type": 11, + }, + ], + "PublicKeyCredentialCreationOptions": [ + { + "fid": 1, + "name": "rp", + "struct": "PublicKeyCredentialRpEntity", + }, + { + "fid": 2, + "name": "user", + "struct": "PublicKeyCredentialUserEntity", + }, + { + "fid": 3, + "name": "challenge", + "type": 11, + }, + { + "fid": 4, + "name": "pubKeyCredParams", + "list": "PublicKeyCredentialParameters", + }, + { + "fid": 5, + "name": "timeout", + "type": 10, + }, + { + "fid": 6, + "name": "excludeCredentials", + "set": "PublicKeyCredentialDescriptor", + }, + { + "fid": 7, + "name": "authenticatorSelection", + "struct": "AuthenticatorSelectionCriteria", + }, + { + "fid": 8, + "name": "attestation", + "type": 11, + }, + { + "fid": 9, + "name": "extensions", + "struct": "AuthenticationExtensionsClientInputs", + }, + ], + "PublicKeyCredentialDescriptor": [ + { + "fid": 1, + "name": "type", + "type": 11, + }, + { + "fid": 2, + "name": "id", + "type": 11, + }, + { + "fid": 3, + "name": "transports", + "set": 11, + }, + ], + "PublicKeyCredentialParameters": [ + { + "fid": 1, + "name": "type", + "type": 11, + }, + { + "fid": 2, + "name": "alg", + "type": 8, + }, + ], + "PublicKeyCredentialRequestOptions": [ + { + "fid": 1, + "name": "challenge", + "type": 11, + }, + { + "fid": 2, + "name": "timeout", + "type": 10, + }, + { + "fid": 3, + "name": "rpId", + "type": 11, + }, + { + "fid": 4, + "name": "allowCredentials", + "set": "PublicKeyCredentialDescriptor", + }, + { + "fid": 5, + "name": "userVerification", + "type": 11, + }, + { + "fid": 6, + "name": "extensions", + "struct": "AuthenticationExtensionsClientInputs", + }, + ], + "PublicKeyCredentialRpEntity": [ + { + "fid": 1, + "name": "name", + "type": 11, + }, + { + "fid": 2, + "name": "icon", + "type": 11, + }, + { + "fid": 3, + "name": "id", + "type": 11, + }, + ], + "PublicKeyCredentialUserEntity": [ + { + "fid": 1, + "name": "name", + "type": 11, + }, + { + "fid": 2, + "name": "icon", + "type": 11, + }, + { + "fid": 3, + "name": "id", + "type": 11, + }, + { + "fid": 4, + "name": "displayName", + "type": 11, + }, + ], + "PurchaseEnabledRequest": [ + { + "fid": 1, + "name": "uniqueKey", + "type": 11, + }, + ], + "PurchaseOrder": [ + { + "fid": 1, + "name": "shopId", + "type": 11, + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 5, + "name": "recipientMid", + "type": 11, + }, + { + "fid": 11, + "name": "price", + "struct": "Price", + }, + { + "fid": 12, + "name": "enableLinePointAutoExchange", + "type": 2, + }, + { + "fid": 21, + "name": "locale", + "struct": "Locale", + }, + { + "fid": 31, + "name": "presentAttributes", + "map": 11, + "key": 11, + }, + ], + "PurchaseOrderResponse": [ + { + "fid": 1, + "name": "orderId", + "type": 11, + }, + { + "fid": 11, + "name": "attributes", + "map": 11, + "key": 11, + }, + { + "fid": 12, + "name": "billingConfirmUrl", + "type": 11, + }, + ], + "PurchaseRecord": [ + { + "fid": 1, + "name": "productDetail", + "struct": "ProductDetail", + }, + { + "fid": 11, + "name": "purchasedTime", + "type": 10, + }, + { + "fid": 21, + "name": "giver", + "type": 11, + }, + { + "fid": 22, + "name": "recipient", + "type": 11, + }, + { + "fid": 31, + "name": "purchasedPrice", + "struct": "Price", + }, + ], + "PurchaseRecordList": [ + { + "fid": 1, + "name": "purchaseRecords", + "list": "PurchaseRecord", + }, + { + "fid": 2, + "name": "offset", + "type": 8, + }, + { + "fid": 3, + "name": "totalSize", + "type": 8, + }, + ], + "PurchaseSubscriptionRequest": [ + { + "fid": 1, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 2, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 3, + "name": "storeCode", + "struct": "Ob1_K1", + }, + { + "fid": 4, + "name": "storeOrderId", + "type": 11, + }, + { + "fid": 5, + "name": "outsideAppPurchase", + "type": 2, + }, + { + "fid": 6, + "name": "unavailableItemPurchase", + "type": 2, + }, + ], + "PurchaseSubscriptionResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_M1", + }, + { + "fid": 2, + "name": "orderId", + "type": 11, + }, + { + "fid": 3, + "name": "confirmUrl", + "type": 11, + }, + ], + "PushRecvReport": [ + { + "fid": 1, + "name": "pushTrackingId", + "type": 11, + }, + { + "fid": 2, + "name": "recvTimestamp", + "type": 10, + }, + { + "fid": 3, + "name": "battery", + "type": 8, + }, + { + "fid": 4, + "name": "batteryMode", + "struct": "Pb1_EnumC13009h0", + }, + { + "fid": 5, + "name": "clientNetworkType", + "struct": "Pb1_EnumC12998g3", + }, + { + "fid": 6, + "name": "carrierCode", + "type": 11, + }, + { + "fid": 7, + "name": "displayTimestamp", + "type": 10, + }, + ], + "PutE2eeKeyRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "e2eeKey", + "map": 11, + "key": 11, + }, + ], + "Q70_l": [], + "Q70_o": [], + "Qj_C13595l": [ + { + "fid": 1, + "name": "none", + "struct": "_any", + }, + { + "fid": 2, + "name": "chat", + "struct": "LiffChatContext", + }, + { + "fid": 3, + "name": "squareChat", + "struct": "LiffSquareChatContext", + }, + ], + "Qj_C13599p": [ + { + "fid": 3, + "name": "consentRequired", + "struct": "LiffErrorConsentRequired", + }, + { + "fid": 4, + "name": "permanentLinkInvalidRequest", + "struct": "LiffErrorPermanentLinkInvalidRequest", + }, + ], + "Qj_C13602t": [ + { + "fid": 1, + "name": "externalService", + "struct": "_any", + }, + ], + "Qj_C13607y": [], + "QuickMenuCouponInfo": [ + { + "fid": 1, + "name": "couponCount", + "type": 11, + }, + { + "fid": 2, + "name": "mainText", + "type": 11, + }, + { + "fid": 3, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 4, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 5, + "name": "targetId", + "type": 11, + }, + { + "fid": 6, + "name": "targetName", + "type": 11, + }, + { + "fid": 7, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + { + "fid": 8, + "name": "darkModeIconUrl", + "type": 11, + }, + ], + "QuickMenuMyCardInfo": [ + { + "fid": 1, + "name": "myCardItems", + "list": "QuickMenuMyCardItem", + }, + { + "fid": 2, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + ], + "QuickMenuMyCardItem": [ + { + "fid": 1, + "name": "itemType", + "struct": "NZ0_S0", + }, + { + "fid": 2, + "name": "mainText", + "type": 11, + }, + { + "fid": 3, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 4, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 5, + "name": "targetId", + "type": 11, + }, + { + "fid": 6, + "name": "targetName", + "type": 11, + }, + { + "fid": 7, + "name": "darkModeIconUrl", + "type": 11, + }, + ], + "QuickMenuPointInfo": [ + { + "fid": 1, + "name": "balance", + "type": 11, + }, + { + "fid": 2, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 3, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 4, + "name": "targetId", + "type": 11, + }, + { + "fid": 5, + "name": "targetName", + "type": 11, + }, + { + "fid": 6, + "name": "responseStatus", + "struct": "NZ0_W0", + }, + ], + "R70_a": [], + "R70_c": [], + "R70_d": [], + "R70_t": [], + "RSAEncryptedLoginInfo": [ + { + "fid": 1, + "name": "loginId", + "type": 11, + }, + { + "fid": 2, + "name": "loginPassword", + "type": 11, + }, + ], + "RSAEncryptedPassword": [ + { + "fid": 1, + "name": "encrypted", + "type": 11, + }, + { + "fid": 2, + "name": "keyName", + "type": 11, + }, + ], + "RSAKey": [ + { + "fid": 1, + "name": "keynm", + "type": 11, + }, + { + "fid": 2, + "name": "nvalue", + "type": 11, + }, + { + "fid": 3, + "name": "evalue", + "type": 11, + }, + { + "fid": 4, + "name": "sessionKey", + "type": 11, + }, + ], + "ReactRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "messageId", + "type": 10, + }, + { + "fid": 3, + "name": "reactionType", + "struct": "ReactionType", + }, + ], + "ReactToMessageRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "messageId", + "type": 11, + }, + { + "fid": 4, + "name": "reactionType", + "struct": "MessageReactionType", + }, + { + "fid": 5, + "name": "threadMid", + "type": 11, + }, + ], + "ReactToMessageResponse": [ + { + "fid": 1, + "name": "reaction", + "struct": "SquareMessageReaction", + }, + { + "fid": 2, + "name": "status", + "struct": "SquareMessageReactionStatus", + }, + ], + "Reaction": [ + { + "fid": 1, + "name": "fromUserMid", + "type": 11, + }, + { + "fid": 2, + "name": "atMillis", + "type": 10, + }, + { + "fid": 3, + "name": "reactionType", + "struct": "ReactionType", + }, + ], + "ReactionType": [ + { + "fid": 1, + "name": "predefinedReactionType", + "struct": "MessageReactionType", + }, + ], + "RecommendationDetail": [ + { + "fid": 1, + "name": "createdTime", + "type": 10, + }, + { + "fid": 2, + "name": "reasons", + "list": "LN0_z0", + }, + { + "fid": 4, + "name": "hidden", + "type": 2, + }, + ], + "RecommendationReasonSharedChat": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "RefreshAccessTokenRequest": [ + { + "fid": 1, + "name": "refreshToken", + "type": 11, + }, + ], + "RefreshAccessTokenResponse": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + { + "fid": 2, + "name": "durationUntilRefreshInSec", + "type": 10, + }, + { + "fid": 3, + "name": "retryPolicy", + "struct": "RetryPolicy", + }, + { + "fid": 4, + "name": "tokenIssueTimeEpochSec", + "type": 10, + }, + { + "fid": 5, + "name": "refreshToken", + "type": 11, + }, + ], + "RefreshApiRetryPolicy": [ + { + "fid": 1, + "name": "initialDelayInMillis", + "type": 10, + }, + { + "fid": 2, + "name": "maxDelayInMillis", + "type": 10, + }, + { + "fid": 3, + "name": "multiplier", + "type": 4, + }, + { + "fid": 4, + "name": "jitterRate", + "type": 4, + }, + ], + "RefreshSubscriptionsRequest": [ + { + "fid": 2, + "name": "subscriptions", + "list": 10, + }, + ], + "RefreshSubscriptionsResponse": [ + { + "fid": 1, + "name": "ttlMillis", + "type": 10, + }, + { + "fid": 2, + "name": "subscriptionStates", + "map": "SubscriptionState", + "key": 10, + }, + ], + "RegPublicKeyCredential": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "type", + "type": 11, + }, + { + "fid": 3, + "name": "response", + "struct": "AuthenticatorAttestationResponse", + }, + { + "fid": 4, + "name": "extensionResults", + "struct": "AuthenticationExtensionsClientOutputs", + }, + ], + "RegisterCampaignRewardRequest": [ + { + "fid": 1, + "name": "campaignId", + "type": 11, + }, + ], + "RegisterCampaignRewardResponse": [ + { + "fid": 1, + "name": "campaignStatus", + "struct": "NZ0_EnumC12188n", + }, + { + "fid": 2, + "name": "resultPopupProperty", + "struct": "ResultPopupProperty", + }, + { + "fid": 3, + "name": "errorMessage", + "type": 11, + }, + { + "fid": 4, + "name": "registeredId", + "type": 11, + }, + { + "fid": 5, + "name": "registeredDateTimeMillis", + "type": 10, + }, + { + "fid": 6, + "name": "redirectUrlWithoutResultPopup", + "type": 11, + }, + ], + "RegisterE2EEPublicKeyV2Response": [ + { + "fid": 1, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + { + "fid": 2, + "name": "isMasterKeyConflict", + "type": 2, + }, + ], + "RegisterPrimaryCredentialRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "credential", + "struct": "R70_p80_m", + }, + ], + "RegisterPrimaryWithTokenV3Response": [ + { + "fid": 1, + "name": "authToken", + "type": 11, + }, + { + "fid": 2, + "name": "tokenV3IssueResult", + "struct": "TokenV3IssueResult", + }, + { + "fid": 3, + "name": "mid", + "type": 11, + }, + ], + "I80_q0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "encryptionKey", + "struct": "I80_y0", + }, + ], + "RegularBadge": [ + { + "fid": 1, + "name": "label", + "type": 11, + }, + { + "fid": 2, + "name": "color", + "type": 11, + }, + ], + "ReissueChatTicketRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "groupMid", + "type": 11, + }, + ], + "ReissueChatTicketResponse": [ + { + "fid": 1, + "name": "ticketId", + "type": 11, + }, + ], + "RejectChatInvitationRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + ], + "RejectSpeakersRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "targetMids", + "set": 11, + }, + ], + "RejectSquareMembersRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "requestedMemberMids", + "list": 11, + }, + ], + "RejectSquareMembersResponse": [ + { + "fid": 1, + "name": "rejectedMembers", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "status", + "struct": "SquareStatus", + }, + ], + "RejectToSpeakRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "inviteRequestId", + "type": 11, + }, + ], + "RemoveFollowerRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + ], + "RemoveFromFollowBlacklistRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + ], + "RemoveItemFromCollectionRequest": [ + { + "fid": 1, + "name": "collectionId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "itemId", + "type": 11, + }, + ], + "RemoveLiveTalkSubscriptionRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "RemoveProductFromSubscriptionSlotRequest": [ + { + "fid": 1, + "name": "productType", + "struct": "Ob1_O0", + }, + { + "fid": 2, + "name": "productId", + "type": 11, + }, + { + "fid": 3, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 4, + "name": "productIds", + "set": 11, + }, + ], + "RemoveProductFromSubscriptionSlotResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_U1", + }, + ], + "RemoveSubscriptionsRequest": [ + { + "fid": 2, + "name": "unsubscriptions", + "list": 10, + }, + ], + "RepairGroupMembers": [ + { + "fid": 1, + "name": "numMembers", + "type": 8, + }, + { + "fid": 3, + "name": "invalidGroup", + "type": 2, + }, + ], + "RepairProfileMappingMembers": [ + { + "fid": 1, + "name": "matched", + "type": 2, + }, + { + "fid": 2, + "name": "numMembers", + "type": 8, + }, + ], + "RepairTriggerConfigurationsElement": [ + { + "fid": 1, + "name": "serverConfigurations", + "struct": "Configurations", + }, + { + "fid": 2, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + ], + "RepairTriggerGroupMembersElement": [ + { + "fid": 1, + "name": "matchedGroups", + "map": "RepairGroupMembers", + "key": 11, + }, + { + "fid": 2, + "name": "mismatchedGroups", + "map": "RepairGroupMembers", + "key": 11, + }, + { + "fid": 3, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + ], + "RepairTriggerNumElement": [ + { + "fid": 1, + "name": "matched", + "type": 2, + }, + { + "fid": 2, + "name": "numValue", + "type": 8, + }, + { + "fid": 3, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + ], + "RepairTriggerProfileElement": [ + { + "fid": 1, + "name": "serverProfile", + "struct": "Profile", + }, + { + "fid": 2, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + { + "fid": 3, + "name": "serverMultiProfiles", + "list": "Profile", + }, + ], + "RepairTriggerProfileMappingListElement": [ + { + "fid": 1, + "name": "profileMappings", + "map": "RepairProfileMappingMembers", + "key": 11, + }, + { + "fid": 2, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + ], + "RepairTriggerSettingsElement": [ + { + "fid": 1, + "name": "serverSettings", + "struct": "Settings", + }, + { + "fid": 2, + "name": "nextCallIntervalMinutes", + "type": 8, + }, + ], + "ReportAbuseExRequest": [ + { + "fid": 1, + "name": "abuseReportEntry", + "struct": "Pb1_C12938c", + }, + ], + "ReportLiveTalkRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "reportType", + "struct": "LiveTalkReportType", + }, + ], + "ReportLiveTalkSpeakerRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "speakerMemberMid", + "type": 11, + }, + { + "fid": 4, + "name": "reportType", + "struct": "LiveTalkReportType", + }, + ], + "ReportMessageSummaryRequest": [ + { + "fid": 1, + "name": "chatEmid", + "type": 11, + }, + { + "fid": 2, + "name": "messageSummaryRangeTo", + "type": 10, + }, + { + "fid": 3, + "name": "reportType", + "struct": "MessageSummaryReportType", + }, + ], + "ReportRefreshedAccessTokenRequest": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + ], + "ReportSquareChatRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 5, + "name": "reportType", + "struct": "ReportType", + }, + { + "fid": 6, + "name": "otherReason", + "type": 11, + }, + ], + "ReportSquareMemberRequest": [ + { + "fid": 2, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "reportType", + "struct": "ReportType", + }, + { + "fid": 4, + "name": "otherReason", + "type": 11, + }, + { + "fid": 5, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 6, + "name": "threadMid", + "type": 11, + }, + ], + "ReportSquareMessageRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 4, + "name": "squareMessageId", + "type": 11, + }, + { + "fid": 5, + "name": "reportType", + "struct": "ReportType", + }, + { + "fid": 6, + "name": "otherReason", + "type": 11, + }, + { + "fid": 7, + "name": "threadMid", + "type": 11, + }, + ], + "ReportSquareRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "reportType", + "struct": "ReportType", + }, + { + "fid": 4, + "name": "otherReason", + "type": 11, + }, + ], + "ReqToSendPhonePinCodeRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + { + "fid": 3, + "name": "verifMethod", + "struct": "T70_K", + }, + ], + "I80_s0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + { + "fid": 3, + "name": "verifMethod", + "struct": "I80_EnumC26425y", + }, + ], + "I80_t0": [ + { + "fid": 1, + "name": "availableMethods", + "list": 8, + }, + ], + "ReqToSendPhonePinCodeResponse": [ + { + "fid": 1, + "name": "availableMethods", + "list": 8, + }, + ], + "RequestToListenRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "I80_u0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "email", + "type": 11, + }, + ], + "RequestToSendPasswordSetVerificationEmailResponse": [ + { + "fid": 1, + "name": "timeoutMinutes", + "type": 10, + }, + ], + "RequestToSpeakRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "RequestTokenResponse": [ + { + "fid": 1, + "name": "requestToken", + "type": 11, + }, + { + "fid": 2, + "name": "returnUrl", + "type": 11, + }, + ], + "ReserveInfo": [ + { + "fid": 1, + "name": "purchaseEnabledStatus", + "struct": "og_I", + }, + { + "fid": 2, + "name": "orderInfo", + "struct": "OrderInfo", + }, + ], + "ReserveRequest": [ + { + "fid": 1, + "name": "uniqueKey", + "type": 11, + }, + ], + "ReserveSubscriptionPurchaseRequest": [ + { + "fid": 1, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 2, + "name": "storeCode", + "struct": "fN0_G", + }, + { + "fid": 3, + "name": "addOaFriend", + "type": 2, + }, + { + "fid": 4, + "name": "entryPoint", + "type": 11, + }, + { + "fid": 5, + "name": "campaignId", + "type": 11, + }, + { + "fid": 6, + "name": "invitationId", + "type": 11, + }, + ], + "ReserveSubscriptionPurchaseResponse": [ + { + "fid": 1, + "name": "result", + "struct": "fN0_F", + }, + { + "fid": 2, + "name": "orderId", + "type": 11, + }, + { + "fid": 3, + "name": "confirmUrl", + "type": 11, + }, + ], + "I80_w0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "I80_x0": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "tokenV3IssueResult", + "struct": "TokenV3IssueResult", + }, + { + "fid": 3, + "name": "tokenV1IssueResult", + "struct": "TokenV1IssueResult", + }, + { + "fid": 4, + "name": "accountCountryCode", + "struct": "I80_X70_a", + }, + { + "fid": 5, + "name": "formattedPhoneNumbers", + "struct": "FormattedPhoneNumbers", + }, + ], + "ResultPopupProperty": [ + { + "fid": 1, + "name": "iconUrl", + "type": 11, + }, + { + "fid": 2, + "name": "text", + "type": 11, + }, + { + "fid": 3, + "name": "closeButtonText", + "type": 11, + }, + { + "fid": 4, + "name": "linkButtonText", + "type": 11, + }, + { + "fid": 5, + "name": "linkButtonForwardUrl", + "type": 11, + }, + { + "fid": 6, + "name": "eventButton", + "struct": "EventButton", + }, + { + "fid": 7, + "name": "oaAddfreindArea", + "struct": "OaAddFriendArea", + }, + ], + "RetrieveRequestTokenWithDocomoV2Response": [ + { + "fid": 1, + "name": "loginRedirectUrl", + "type": 11, + }, + ], + "RetryPolicy": [ + { + "fid": 1, + "name": "initialDelayInMillis", + "type": 10, + }, + { + "fid": 2, + "name": "maxDelayInMillis", + "type": 10, + }, + { + "fid": 3, + "name": "multiplier", + "type": 4, + }, + { + "fid": 4, + "name": "jitterRate", + "type": 4, + }, + ], + "RevokeTokensRequest": [ + { + "fid": 1, + "name": "accessTokens", + "list": 11, + }, + ], + "RichContent": [ + { + "fid": 1, + "name": "callback", + "struct": "Callback", + }, + { + "fid": 2, + "name": "noBidCallback", + "struct": "NoBidCallback", + }, + { + "fid": 3, + "name": "ttl", + "type": 10, + }, + { + "fid": 4, + "name": "muteSupported", + "type": 2, + }, + { + "fid": 5, + "name": "voteSupported", + "type": 2, + }, + { + "fid": 6, + "name": "priority", + "struct": "Priority", + }, + { + "fid": 7, + "name": "richFormatPayload", + "struct": "Uf_t", + }, + ], + "RichImage": [ + { + "fid": 1, + "name": "url", + "type": 11, + }, + ], + "RichItem": [ + { + "fid": 1, + "name": "eyeCatchMessage", + "type": 11, + }, + { + "fid": 2, + "name": "message", + "type": 11, + }, + { + "fid": 3, + "name": "animationLayer", + "struct": "AnimationLayer", + }, + { + "fid": 4, + "name": "thumbnailLayer", + "struct": "ThumbnailLayer", + }, + { + "fid": 5, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 6, + "name": "fallbackUrl", + "type": 11, + }, + ], + "RichString": [ + { + "fid": 1, + "name": "content", + "type": 11, + }, + { + "fid": 2, + "name": "meta", + "map": 11, + "key": 11, + }, + ], + "RichmenuCoordinates": [ + { + "fid": 1, + "name": "x", + "type": 4, + }, + { + "fid": 2, + "name": "y", + "type": 4, + }, + ], + "RichmenuEvent": [ + { + "fid": 1, + "name": "type", + "struct": "kf_u", + }, + { + "fid": 2, + "name": "richmenuId", + "type": 11, + }, + { + "fid": 3, + "name": "coordinates", + "struct": "RichmenuCoordinates", + }, + { + "fid": 4, + "name": "areaIndex", + "type": 8, + }, + { + "fid": 5, + "name": "clickUrl", + "type": 11, + }, + { + "fid": 6, + "name": "clickAction", + "struct": "kf_r", + }, + ], + "RingbackTone": [ + { + "fid": 1, + "name": "uuid", + "type": 11, + }, + { + "fid": 2, + "name": "trackId", + "type": 11, + }, + { + "fid": 3, + "name": "title", + "type": 11, + }, + { + "fid": 4, + "name": "oid", + "type": 11, + }, + { + "fid": 5, + "name": "tids", + "map": 11, + "key": 11, + }, + { + "fid": 6, + "name": "sid", + "type": 11, + }, + { + "fid": 7, + "name": "artist", + "type": 11, + }, + { + "fid": 8, + "name": "channelId", + "type": 11, + }, + ], + "Ringtone": [ + { + "fid": 1, + "name": "title", + "type": 11, + }, + { + "fid": 2, + "name": "artist", + "type": 11, + }, + { + "fid": 3, + "name": "oid", + "type": 11, + }, + { + "fid": 4, + "name": "channelId", + "type": 11, + }, + ], + "Room": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "createdTime", + "type": 10, + }, + { + "fid": 10, + "name": "contacts", + "list": "Contact", + }, + { + "fid": 31, + "name": "notificationDisabled", + "type": 2, + }, + { + "fid": 40, + "name": "memberMids", + "list": 11, + }, + ], + "Rssi": [ + { + "fid": 1, + "name": "value", + "type": 8, + }, + ], + "S70_b": [], + "S70_k": [], + "SCC": [ + { + "fid": 1, + "name": "businessName", + "type": 11, + }, + { + "fid": 2, + "name": "tel", + "type": 11, + }, + { + "fid": 3, + "name": "email", + "type": 11, + }, + { + "fid": 4, + "name": "url", + "type": 11, + }, + { + "fid": 5, + "name": "address", + "type": 11, + }, + { + "fid": 6, + "name": "personName", + "type": 11, + }, + { + "fid": 7, + "name": "memo", + "type": 11, + }, + ], + "SIMInfo": [ + { + "fid": 1, + "name": "phoneNumber", + "type": 11, + }, + { + "fid": 2, + "name": "countryCode", + "type": 11, + }, + ], + "SKAdNetwork": [ + { + "fid": 1, + "name": "identifiers", + "type": 11, + }, + { + "fid": 2, + "name": "version", + "type": 11, + }, + ], + "I80_y0": [ + { + "fid": 1, + "name": "keyMaterial", + "type": 11, + }, + ], + "SaveStudentInformationRequest": [ + { + "fid": 1, + "name": "studentInformation", + "struct": "StudentInformation", + }, + ], + "Scenario": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "trigger", + "struct": "do0_I", + }, + { + "fid": 3, + "name": "actions", + "list": "do0_C23141D", + }, + ], + "ScenarioSet": [ + { + "fid": 1, + "name": "scenarios", + "list": "Scenario", + }, + { + "fid": 2, + "name": "autoClose", + "type": 2, + }, + { + "fid": 3, + "name": "suppressionInterval", + "type": 10, + }, + { + "fid": 4, + "name": "revision", + "type": 10, + }, + { + "fid": 5, + "name": "modifiedTime", + "type": 10, + }, + ], + "ScoreInfo": [ + { + "fid": 1, + "name": "assetServiceInfo", + "struct": "AssetServiceInfo", + }, + ], + "ScryptParams": [ + { + "fid": 1, + "name": "salt", + "type": 11, + }, + { + "fid": 2, + "name": "nrp", + "type": 11, + }, + { + "fid": 3, + "name": "dkLen", + "type": 10, + }, + ], + "SearchSquareChatMembersRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "searchOption", + "struct": "SquareChatMemberSearchOption", + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + ], + "SearchSquareChatMembersResponse": [ + { + "fid": 1, + "name": "members", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 3, + "name": "totalCount", + "type": 8, + }, + ], + "SearchSquareChatMentionablesRequest": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "searchOption", + "struct": "SquareChatMentionableSearchOption", + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + ], + "SearchSquareChatMentionablesResponse": [ + { + "fid": 1, + "name": "mentionables", + "list": "Mentionable", + }, + { + "fid": 2, + "name": "continuationToken", + "type": 11, + }, + ], + "SearchSquareMembersRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "searchOption", + "struct": "SquareMemberSearchOption", + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 5, + "name": "limit", + "type": 8, + }, + ], + "SearchSquareMembersResponse": [ + { + "fid": 1, + "name": "members", + "list": "SquareMember", + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 4, + "name": "totalCount", + "type": 8, + }, + ], + "SearchSquaresRequest": [ + { + "fid": 2, + "name": "query", + "type": 11, + }, + { + "fid": 3, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + ], + "SearchSquaresResponse": [ + { + "fid": 1, + "name": "squares", + "list": "Square", + }, + { + "fid": 2, + "name": "squareStatuses", + "map": "SquareStatus", + "key": 11, + }, + { + "fid": 3, + "name": "myMemberships", + "map": "SquareMember", + "key": 11, + }, + { + "fid": 4, + "name": "continuationToken", + "type": 11, + }, + { + "fid": 5, + "name": "noteStatuses", + "map": "NoteStatus", + "key": 11, + }, + ], + "SecurityCenterResult": [ + { + "fid": 1, + "name": "uri", + "type": 11, + }, + { + "fid": 2, + "name": "token", + "type": 11, + }, + { + "fid": 3, + "name": "cookiePath", + "type": 11, + }, + { + "fid": 4, + "name": "skip", + "type": 2, + }, + ], + "SendEncryptedE2EEKeyRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "encryptedSecureChannelPayload", + "struct": "h80_Z70_a", + }, + ], + "SendMessageRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareMessage", + "struct": "SquareMessage", + }, + ], + "SendMessageResponse": [ + { + "fid": 1, + "name": "createdSquareMessage", + "struct": "SquareMessage", + }, + ], + "SendPostbackRequest": [ + { + "fid": 1, + "name": "messageId", + "type": 11, + }, + { + "fid": 2, + "name": "url", + "type": 11, + }, + { + "fid": 3, + "name": "chatMID", + "type": 11, + }, + { + "fid": 4, + "name": "originMID", + "type": 11, + }, + ], + "SendSquareThreadMessageRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "threadMid", + "type": 11, + }, + { + "fid": 4, + "name": "threadMessage", + "struct": "SquareMessage", + }, + ], + "SendSquareThreadMessageResponse": [ + { + "fid": 1, + "name": "createdThreadMessage", + "struct": "SquareMessage", + }, + ], + "ServiceDisclaimerInfo": [ + { + "fid": 1, + "name": "disclaimerText", + "type": 11, + }, + { + "fid": 2, + "name": "popupTitle", + "type": 11, + }, + { + "fid": 3, + "name": "popupText", + "type": 11, + }, + ], + "ServiceShortcut": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "serviceEntryUrl", + "type": 11, + }, + { + "fid": 4, + "name": "pictogramIconUrl", + "type": 11, + }, + { + "fid": 5, + "name": "storeUrl", + "type": 11, + }, + { + "fid": 6, + "name": "badgeActiveUntilTimestamp", + "type": 11, + }, + { + "fid": 7, + "name": "recommendedModelId", + "type": 11, + }, + { + "fid": 8, + "name": "eventIcon", + "struct": "Icon", + }, + { + "fid": 9, + "name": "coloredPictogramIcon", + "struct": "Icon", + }, + { + "fid": 10, + "name": "customBadgeLabel", + "struct": "CustomBadgeLabel", + }, + ], + "SetChatHiddenStatusRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "lastMessageId", + "type": 10, + }, + { + "fid": 4, + "name": "hidden", + "type": 2, + }, + ], + "I80_z0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "password", + "type": 11, + }, + ], + "SetHashedPasswordRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "password", + "type": 11, + }, + ], + "SetPasswordRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "hashedPassword", + "type": 11, + }, + ], + "SetRequest": [ + { + "fid": 1, + "name": "keyName", + "type": 11, + }, + { + "fid": 2, + "name": "value", + "struct": "t80_p", + }, + { + "fid": 3, + "name": "clientTimestampMillis", + "type": 10, + }, + { + "fid": 4, + "name": "ns", + "struct": "t80_h", + }, + { + "fid": 5, + "name": "transactionId", + "type": 11, + }, + { + "fid": 6, + "name": "updateReason", + "struct": "UpdateReason", + }, + ], + "SetResponse": [ + { + "fid": 1, + "name": "value", + "struct": "SettingValue", + }, + { + "fid": 2, + "name": "updateTransactionId", + "type": 11, + }, + ], + "SettingValue": [ + { + "fid": 1, + "name": "value", + "struct": "t80_p", + }, + { + "fid": 2, + "name": "updateTimeMillis", + "type": 10, + }, + { + "fid": 3, + "name": "scope", + "struct": "t80_i", + }, + { + "fid": 4, + "name": "scopeKey", + "type": 11, + }, + ], + "Settings": [ + { + "fid": 10, + "name": "notificationEnable", + "type": 2, + }, + { + "fid": 11, + "name": "notificationMuteExpiration", + "type": 10, + }, + { + "fid": 12, + "name": "notificationNewMessage", + "type": 2, + }, + { + "fid": 13, + "name": "notificationGroupInvitation", + "type": 2, + }, + { + "fid": 14, + "name": "notificationShowMessage", + "type": 2, + }, + { + "fid": 15, + "name": "notificationIncomingCall", + "type": 2, + }, + { + "fid": 16, + "name": "notificationSoundMessage", + "type": 11, + }, + { + "fid": 17, + "name": "notificationSoundGroup", + "type": 11, + }, + { + "fid": 18, + "name": "notificationDisabledWithSub", + "type": 2, + }, + { + "fid": 19, + "name": "notificationPayment", + "type": 2, + }, + { + "fid": 20, + "name": "privacySyncContacts", + "type": 2, + }, + { + "fid": 21, + "name": "privacySearchByPhoneNumber", + "type": 2, + }, + { + "fid": 22, + "name": "privacySearchByUserid", + "type": 2, + }, + { + "fid": 23, + "name": "privacySearchByEmail", + "type": 2, + }, + { + "fid": 24, + "name": "privacyAllowSecondaryDeviceLogin", + "type": 2, + }, + { + "fid": 25, + "name": "privacyProfileImagePostToMyhome", + "type": 2, + }, + { + "fid": 26, + "name": "privacyReceiveMessagesFromNotFriend", + "type": 2, + }, + { + "fid": 27, + "name": "privacyAgreeUseLineCoinToPaidCall", + "type": 2, + }, + { + "fid": 28, + "name": "privacyAgreeUsePaidCall", + "type": 2, + }, + { + "fid": 29, + "name": "privacyAllowFriendRequest", + "type": 2, + }, + { + "fid": 30, + "name": "contactMyTicket", + "type": 11, + }, + { + "fid": 40, + "name": "identityProvider", + "struct": "IdentityProvider", + }, + { + "fid": 41, + "name": "identityIdentifier", + "type": 11, + }, + { + "fid": 42, + "name": "snsAccounts", + "map": 11, + "key": 8, + }, + { + "fid": 43, + "name": "phoneRegistration", + "type": 2, + }, + { + "fid": 44, + "name": "emailConfirmationStatus", + "struct": "EmailConfirmationStatus", + }, + { + "fid": 45, + "name": "accountMigrationPincodeType", + "struct": "AccountMigrationPincodeType", + }, + { + "fid": 46, + "name": "enforcedInputAccountMigrationPincode", + "type": 2, + }, + { + "fid": 47, + "name": "securityCenterSettingsType", + "struct": "AccountMigrationPincodeType", + }, + { + "fid": 48, + "name": "allowUnregistrationSecondaryDevice", + "type": 2, + }, + { + "fid": 49, + "name": "pwlessPrimaryCredentialRegistration", + "type": 2, + }, + { + "fid": 50, + "name": "preferenceLocale", + "type": 11, + }, + { + "fid": 60, + "name": "customModes", + "map": 11, + "key": 8, + }, + { + "fid": 61, + "name": "e2eeEnable", + "type": 2, + }, + { + "fid": 62, + "name": "hitokotoBackupRequested", + "type": 2, + }, + { + "fid": 63, + "name": "privacyProfileMusicPostToMyhome", + "type": 2, + }, + { + "fid": 65, + "name": "privacyAllowNearby", + "type": 2, + }, + { + "fid": 66, + "name": "agreementNearbyTime", + "type": 10, + }, + { + "fid": 67, + "name": "agreementSquareTime", + "type": 10, + }, + { + "fid": 68, + "name": "notificationMention", + "type": 2, + }, + { + "fid": 69, + "name": "botUseAgreementAcceptedAt", + "type": 10, + }, + { + "fid": 70, + "name": "agreementShakeFunction", + "type": 10, + }, + { + "fid": 71, + "name": "agreementMobileContactName", + "type": 10, + }, + { + "fid": 72, + "name": "notificationThumbnail", + "type": 2, + }, + { + "fid": 73, + "name": "agreementSoundToText", + "type": 10, + }, + { + "fid": 74, + "name": "privacyPolicyVersion", + "type": 11, + }, + { + "fid": 75, + "name": "agreementAdByWebAccess", + "type": 10, + }, + { + "fid": 76, + "name": "agreementPhoneNumberMatching", + "type": 10, + }, + { + "fid": 77, + "name": "agreementCommunicationInfo", + "type": 10, + }, + { + "fid": 78, + "name": "privacySharePersonalInfoToFriends", + "struct": "Pb1_I6", + }, + { + "fid": 79, + "name": "agreementThingsWirelessCommunication", + "type": 10, + }, + { + "fid": 80, + "name": "agreementGdpr", + "type": 10, + }, + { + "fid": 81, + "name": "privacyStatusMessageHistory", + "struct": "Pb1_S7", + }, + { + "fid": 82, + "name": "agreementProvideLocation", + "type": 10, + }, + { + "fid": 83, + "name": "agreementBeacon", + "type": 10, + }, + { + "fid": 85, + "name": "privacyAllowProfileHistory", + "struct": "Pb1_M6", + }, + { + "fid": 86, + "name": "agreementContentsSuggest", + "type": 10, + }, + { + "fid": 87, + "name": "agreementContentsSuggestDataCollection", + "type": 10, + }, + { + "fid": 88, + "name": "privacyAgeResult", + "struct": "Pb1_gd", + }, + { + "fid": 89, + "name": "privacyAgeResultReceived", + "type": 2, + }, + { + "fid": 90, + "name": "agreementOcrImageCollection", + "type": 10, + }, + { + "fid": 91, + "name": "privacyAllowFollow", + "type": 2, + }, + { + "fid": 92, + "name": "privacyShowFollowList", + "type": 2, + }, + { + "fid": 93, + "name": "notificationBadgeTalkOnly", + "type": 2, + }, + { + "fid": 94, + "name": "agreementIcna", + "type": 10, + }, + { + "fid": 95, + "name": "notificationReaction", + "type": 2, + }, + { + "fid": 96, + "name": "agreementMid", + "type": 10, + }, + { + "fid": 97, + "name": "homeNotificationNewFriend", + "type": 2, + }, + { + "fid": 98, + "name": "homeNotificationFavoriteFriendUpdate", + "type": 2, + }, + { + "fid": 99, + "name": "homeNotificationGroupMemberUpdate", + "type": 2, + }, + { + "fid": 100, + "name": "homeNotificationBirthday", + "type": 2, + }, + { + "fid": 101, + "name": "eapAllowedToConnect", + "map": 2, + "key": 8, + }, + { + "fid": 102, + "name": "agreementLineOutUse", + "type": 10, + }, + { + "fid": 103, + "name": "agreementLineOutProvideInfo", + "type": 10, + }, + { + "fid": 104, + "name": "notificationShowProfileImage", + "type": 2, + }, + { + "fid": 105, + "name": "agreementPdpa", + "type": 10, + }, + { + "fid": 106, + "name": "agreementLocationVersion", + "type": 11, + }, + { + "fid": 107, + "name": "zhdPageAllowedToShow", + "type": 2, + }, + { + "fid": 108, + "name": "agreementSnowAiAvatar", + "type": 10, + }, + { + "fid": 109, + "name": "eapOnlyAccountTargetCountry", + "type": 2, + }, + { + "fid": 110, + "name": "agreementLypPremiumAlbum", + "type": 10, + }, + { + "fid": 112, + "name": "agreementLypPremiumAlbumVersion", + "type": 10, + }, + { + "fid": 113, + "name": "agreementAlbumUsageData", + "type": 10, + }, + { + "fid": 114, + "name": "agreementAlbumUsageDataVersion", + "type": 10, + }, + { + "fid": 115, + "name": "agreementLypPremiumBackup", + "type": 10, + }, + { + "fid": 116, + "name": "agreementLypPremiumBackupVersion", + "type": 10, + }, + { + "fid": 117, + "name": "agreementOaAiAssistant", + "type": 10, + }, + { + "fid": 118, + "name": "agreementOaAiAssistantVersion", + "type": 10, + }, + { + "fid": 119, + "name": "agreementLypPremiumMultiProfile", + "type": 10, + }, + { + "fid": 120, + "name": "agreementLypPremiumMultiProfileVersion", + "type": 10, + }, + ], + "ShareTargetPickerResultRequest": [ + { + "fid": 1, + "name": "ott", + "type": 11, + }, + { + "fid": 2, + "name": "liffId", + "type": 11, + }, + { + "fid": 3, + "name": "resultCode", + "struct": "Qj_e0", + }, + { + "fid": 4, + "name": "resultDescription", + "type": 11, + }, + ], + "ShopFilter": [ + { + "fid": 1, + "name": "productAvailabilities", + "set": 8, + }, + { + "fid": 2, + "name": "stickerSizes", + "set": 8, + }, + { + "fid": 3, + "name": "popupLayers", + "set": 8, + }, + ], + "ShortcutUserGuidePopupInfo": [ + { + "fid": 1, + "name": "popupTitle", + "type": 11, + }, + { + "fid": 2, + "name": "popupText", + "type": 11, + }, + { + "fid": 3, + "name": "revisionTimeMillis", + "type": 10, + }, + ], + "ShouldShowWelcomeStickerBannerResponse": [ + { + "fid": 1, + "name": "shouldShowBanner", + "type": 2, + }, + ], + "I80_B0": [ + { + "fid": 1, + "name": "countryCode", + "type": 11, + }, + { + "fid": 2, + "name": "hni", + "type": 11, + }, + { + "fid": 3, + "name": "carrierName", + "type": 11, + }, + ], + "SimCard": [ + { + "fid": 1, + "name": "countryCode", + "type": 11, + }, + { + "fid": 2, + "name": "hni", + "type": 11, + }, + { + "fid": 3, + "name": "carrierName", + "type": 11, + }, + ], + "SingleValueMetadata": [ + { + "fid": 1, + "name": "type", + "struct": "Pb1_K7", + }, + ], + "SleepAction": [ + { + "fid": 1, + "name": "sleepMillis", + "type": 10, + }, + ], + "SmartChannelRecommendation": [ + { + "fid": 1, + "name": "minDisplayDuration", + "type": 8, + }, + { + "fid": 2, + "name": "title", + "type": 11, + }, + { + "fid": 3, + "name": "descriptionText", + "type": 11, + }, + { + "fid": 4, + "name": "labelText", + "type": 11, + }, + { + "fid": 5, + "name": "imageUrl", + "type": 11, + }, + { + "fid": 6, + "name": "bgColorCode", + "type": 11, + }, + { + "fid": 7, + "name": "linkUrl", + "type": 11, + }, + { + "fid": 8, + "name": "impEventUrl", + "type": 11, + }, + { + "fid": 9, + "name": "clickEventUrl", + "type": 11, + }, + { + "fid": 10, + "name": "muteEventUrl", + "type": 11, + }, + { + "fid": 11, + "name": "upvoteEventUrl", + "type": 11, + }, + { + "fid": 12, + "name": "downvoteEventUrl", + "type": 11, + }, + { + "fid": 13, + "name": "template", + "struct": "SmartChannelRecommendationTemplate", + }, + ], + "SmartChannelRecommendationTemplate": [ + { + "fid": 1, + "name": "type", + "type": 11, + }, + { + "fid": 2, + "name": "bgColorName", + "type": 11, + }, + ], + "SocialLogin": [ + { + "fid": 1, + "name": "type", + "struct": "T70_j1", + }, + { + "fid": 2, + "name": "accessToken", + "type": 11, + }, + { + "fid": 3, + "name": "countryCode", + "type": 11, + }, + ], + "SpotItem": [ + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "phone", + "type": 11, + }, + { + "fid": 4, + "name": "category", + "struct": "SpotCategory", + }, + { + "fid": 5, + "name": "mid", + "type": 11, + }, + { + "fid": 6, + "name": "countryAreaCode", + "type": 11, + }, + { + "fid": 10, + "name": "freePhoneCallable", + "type": 2, + }, + ], + "Square": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "welcomeMessage", + "type": 11, + }, + { + "fid": 4, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 5, + "name": "desc", + "type": 11, + }, + { + "fid": 6, + "name": "searchable", + "type": 2, + }, + { + "fid": 7, + "name": "type", + "struct": "SquareType", + }, + { + "fid": 8, + "name": "categoryId", + "type": 8, + }, + { + "fid": 9, + "name": "invitationURL", + "type": 11, + }, + { + "fid": 10, + "name": "revision", + "type": 10, + }, + { + "fid": 11, + "name": "ableToUseInvitationTicket", + "type": 2, + }, + { + "fid": 12, + "name": "state", + "struct": "SquareState", + }, + { + "fid": 13, + "name": "emblems", + "list": "SquareEmblem", + }, + { + "fid": 14, + "name": "joinMethod", + "struct": "SquareJoinMethod", + }, + { + "fid": 15, + "name": "adultOnly", + "struct": "BooleanState", + }, + { + "fid": 16, + "name": "svcTags", + "list": 11, + }, + { + "fid": 17, + "name": "createdAt", + "type": 10, + }, + ], + "SquareAuthority": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "updateSquareProfile", + "struct": "SquareMemberRole", + }, + { + "fid": 3, + "name": "inviteNewMember", + "struct": "SquareMemberRole", + }, + { + "fid": 4, + "name": "approveJoinRequest", + "struct": "SquareMemberRole", + }, + { + "fid": 5, + "name": "createPost", + "struct": "SquareMemberRole", + }, + { + "fid": 6, + "name": "createOpenSquareChat", + "struct": "SquareMemberRole", + }, + { + "fid": 7, + "name": "deleteSquareChatOrPost", + "struct": "SquareMemberRole", + }, + { + "fid": 8, + "name": "removeSquareMember", + "struct": "SquareMemberRole", + }, + { + "fid": 9, + "name": "grantRole", + "struct": "SquareMemberRole", + }, + { + "fid": 10, + "name": "enableInvitationTicket", + "struct": "SquareMemberRole", + }, + { + "fid": 11, + "name": "revision", + "type": 10, + }, + { + "fid": 12, + "name": "createSquareChatAnnouncement", + "struct": "SquareMemberRole", + }, + { + "fid": 13, + "name": "updateMaxChatMemberCount", + "struct": "SquareMemberRole", + }, + { + "fid": 14, + "name": "useReadonlyDefaultChat", + "struct": "SquareMemberRole", + }, + { + "fid": 15, + "name": "sendAllMention", + "struct": "SquareMemberRole", + }, + ], + "SquareBot": [ + { + "fid": 1, + "name": "botMid", + "type": 11, + }, + { + "fid": 2, + "name": "active", + "type": 2, + }, + { + "fid": 3, + "name": "displayName", + "type": 11, + }, + { + "fid": 4, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 5, + "name": "iconType", + "type": 8, + }, + { + "fid": 6, + "name": "lastModifiedAt", + "type": 10, + }, + { + "fid": 7, + "name": "expiredIn", + "type": 10, + }, + ], + "SquareChat": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "SquareChatType", + }, + { + "fid": 4, + "name": "name", + "type": 11, + }, + { + "fid": 5, + "name": "chatImageObsHash", + "type": 11, + }, + { + "fid": 6, + "name": "squareChatRevision", + "type": 10, + }, + { + "fid": 7, + "name": "maxMemberCount", + "type": 8, + }, + { + "fid": 8, + "name": "state", + "struct": "SquareChatState", + }, + { + "fid": 9, + "name": "invitationUrl", + "type": 11, + }, + { + "fid": 10, + "name": "messageVisibility", + "struct": "MessageVisibility", + }, + { + "fid": 11, + "name": "ableToSearchMessage", + "struct": "BooleanState", + }, + ], + "SquareChatAnnouncement": [ + { + "fid": 1, + "name": "announcementSeq", + "type": 10, + }, + { + "fid": 2, + "name": "type", + "type": 8, + }, + { + "fid": 3, + "name": "contents", + "struct": "SquareChatAnnouncementContents", + }, + { + "fid": 4, + "name": "createdAt", + "type": 10, + }, + { + "fid": 5, + "name": "creator", + "type": 11, + }, + ], + "SquareChatFeature": [ + { + "fid": 1, + "name": "controlState", + "struct": "SquareChatFeatureControlState", + }, + { + "fid": 2, + "name": "booleanValue", + "struct": "BooleanState", + }, + ], + "SquareChatFeatureSet": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + { + "fid": 11, + "name": "disableUpdateMaxChatMemberCount", + "struct": "SquareChatFeature", + }, + { + "fid": 12, + "name": "disableMarkAsReadEvent", + "struct": "SquareChatFeature", + }, + ], + "SquareChatMember": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + { + "fid": 4, + "name": "membershipState", + "struct": "SquareChatMembershipState", + }, + { + "fid": 5, + "name": "notificationForMessage", + "type": 2, + }, + { + "fid": 6, + "name": "notificationForNewMember", + "type": 2, + }, + ], + "SquareChatMemberSearchOption": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + { + "fid": 2, + "name": "includingMe", + "type": 2, + }, + ], + "SquareChatMentionableSearchOption": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + ], + "SquareChatStatus": [ + { + "fid": 3, + "name": "lastMessage", + "struct": "SquareMessage", + }, + { + "fid": 4, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 5, + "name": "otherStatus", + "struct": "SquareChatStatusWithoutMessage", + }, + ], + "SquareChatStatusWithoutMessage": [ + { + "fid": 1, + "name": "memberCount", + "type": 8, + }, + { + "fid": 2, + "name": "unreadMessageCount", + "type": 8, + }, + { + "fid": 3, + "name": "markedAsReadMessageId", + "type": 11, + }, + { + "fid": 4, + "name": "mentionedMessageId", + "type": 11, + }, + { + "fid": 5, + "name": "notifiedMessageType", + "struct": "NotifiedMessageType", + }, + { + "fid": 6, + "name": "badges", + "list": 8, + }, + ], + "SquareCleanScore": [ + { + "fid": 1, + "name": "score", + "type": 4, + }, + ], + "SquareEvent": [ + { + "fid": 2, + "name": "createdTime", + "type": 10, + }, + { + "fid": 3, + "name": "type", + "struct": "SquareEventType", + }, + { + "fid": 4, + "name": "payload", + "struct": "SquareEventPayload", + }, + { + "fid": 5, + "name": "syncToken", + "type": 11, + }, + { + "fid": 6, + "name": "eventStatus", + "struct": "SquareEventStatus", + }, + ], + "SquareEventChatPopup": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "popupId", + "type": 10, + }, + { + "fid": 3, + "name": "flexJson", + "type": 11, + }, + { + "fid": 4, + "name": "button", + "struct": "ButtonContent", + }, + ], + "SquareEventMutateMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMessage", + "struct": "SquareMessage", + }, + { + "fid": 3, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 4, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 5, + "name": "threadMid", + "type": 11, + }, + ], + "SquareEventNotificationJoinRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareName", + "type": 11, + }, + { + "fid": 3, + "name": "requestMemberName", + "type": 11, + }, + { + "fid": 4, + "name": "profileImageObsHash", + "type": 11, + }, + ], + "SquareEventNotificationLiveTalk": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "liveTalkInvitationTicket", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatName", + "type": 11, + }, + { + "fid": 4, + "name": "chatImageObsHash", + "type": 11, + }, + ], + "SquareEventNotificationMemberUpdate": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + ], + "SquareEventNotificationMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMessage", + "struct": "SquareMessage", + }, + { + "fid": 3, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 4, + "name": "unreadCount", + "type": 8, + }, + { + "fid": 5, + "name": "requiredToFetchChatEvents", + "type": 2, + }, + { + "fid": 6, + "name": "mentionedMessageId", + "type": 11, + }, + { + "fid": 7, + "name": "notifiedMessageType", + "struct": "NotifiedMessageType", + }, + { + "fid": 8, + "name": "reqSeq", + "type": 8, + }, + ], + "SquareEventNotificationMessageReaction": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatName", + "type": 11, + }, + { + "fid": 4, + "name": "reactorName", + "type": 11, + }, + { + "fid": 5, + "name": "thumbnailObsHash", + "type": 11, + }, + { + "fid": 6, + "name": "messageText", + "type": 11, + }, + { + "fid": 7, + "name": "type", + "struct": "MessageReactionType", + }, + ], + "SquareEventNotificationNewChatMember": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareChatName", + "type": 11, + }, + ], + "SquareEventNotificationPost": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "notificationPostType", + "struct": "NotificationPostType", + }, + { + "fid": 3, + "name": "thumbnailObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "text", + "type": 11, + }, + { + "fid": 5, + "name": "actionUri", + "type": 11, + }, + ], + "SquareEventNotificationPostAnnouncement": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareName", + "type": 11, + }, + { + "fid": 3, + "name": "squareProfileImageObsHash", + "type": 11, + }, + { + "fid": 4, + "name": "actionUri", + "type": 11, + }, + ], + "SquareEventNotificationSquareChatDelete": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareChatName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + ], + "SquareEventNotificationSquareDelete": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareName", + "type": 11, + }, + { + "fid": 3, + "name": "profileImageObsHash", + "type": 11, + }, + ], + "SquareEventNotificationThreadMessage": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareMessage", + "struct": "SquareMessage", + }, + { + "fid": 4, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 5, + "name": "unreadCount", + "type": 10, + }, + { + "fid": 6, + "name": "totalMessageCount", + "type": 10, + }, + { + "fid": 7, + "name": "threadRootMessageId", + "type": 11, + }, + ], + "SquareEventNotificationThreadMessageReaction": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "messageId", + "type": 11, + }, + { + "fid": 4, + "name": "squareChatName", + "type": 11, + }, + { + "fid": 5, + "name": "reactorName", + "type": 11, + }, + { + "fid": 6, + "name": "thumbnailObsHash", + "type": 11, + }, + ], + "SquareEventNotifiedAddBot": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "botMid", + "type": 11, + }, + { + "fid": 4, + "name": "botDisplayName", + "type": 11, + }, + ], + "SquareEventNotifiedCreateSquareChatMember": [ + { + "fid": 1, + "name": "chat", + "struct": "SquareChat", + }, + { + "fid": 2, + "name": "chatStatus", + "struct": "SquareChatStatus", + }, + { + "fid": 3, + "name": "chatMember", + "struct": "SquareChatMember", + }, + { + "fid": 4, + "name": "joinedAt", + "type": 10, + }, + { + "fid": 5, + "name": "peerSquareMember", + "struct": "SquareMember", + }, + { + "fid": 6, + "name": "squareChatFeatureSet", + "struct": "SquareChatFeatureSet", + }, + ], + "SquareEventNotifiedCreateSquareMember": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + { + "fid": 3, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 4, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 5, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + { + "fid": 6, + "name": "noteStatus", + "struct": "NoteStatus", + }, + ], + "SquareEventNotifiedDeleteSquareChat": [ + { + "fid": 1, + "name": "squareChat", + "struct": "SquareChat", + }, + ], + "SquareEventNotifiedDestroyMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "messageId", + "type": 11, + }, + { + "fid": 4, + "name": "threadMid", + "type": 11, + }, + ], + "SquareEventNotifiedInviteIntoSquareChat": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "invitees", + "list": "SquareMember", + }, + { + "fid": 3, + "name": "invitor", + "struct": "SquareMember", + }, + { + "fid": 4, + "name": "invitorRelation", + "struct": "SquareMemberRelation", + }, + ], + "SquareEventNotifiedJoinSquareChat": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "joinedMember", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedKickoutFromSquare": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "kickees", + "list": "SquareMember", + }, + { + "fid": 3, + "name": "kicker", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedLeaveSquareChat": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "sayGoodbye", + "type": 2, + }, + { + "fid": 4, + "name": "squareMember", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedMarkAsRead": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sMemberMid", + "type": 11, + }, + { + "fid": 4, + "name": "messageId", + "type": 11, + }, + ], + "SquareEventNotifiedRemoveBot": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "botMid", + "type": 11, + }, + { + "fid": 4, + "name": "botDisplayName", + "type": 11, + }, + ], + "SquareEventNotifiedShutdownSquare": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "square", + "struct": "Square", + }, + ], + "SquareEventNotifiedSystemMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "text", + "type": 11, + }, + { + "fid": 3, + "name": "messageKey", + "type": 11, + }, + ], + "SquareEventNotifiedUpdateLiveTalk": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "liveTalkOnAir", + "type": 2, + }, + ], + "SquareEventNotifiedUpdateLiveTalkInfo": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "liveTalk", + "struct": "LiveTalk", + }, + { + "fid": 3, + "name": "liveTalkOnAir", + "type": 2, + }, + ], + "SquareEventNotifiedUpdateMessageStatus": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + { + "fid": 3, + "name": "messageStatus", + "struct": "SquareMessageStatus", + }, + { + "fid": 4, + "name": "threadMid", + "type": 11, + }, + ], + "SquareEventNotifiedUpdateReadonlyChat": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "readonly", + "type": 2, + }, + ], + "SquareEventNotifiedUpdateSquare": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "square", + "struct": "Square", + }, + ], + "SquareEventNotifiedUpdateSquareAuthority": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareAuthority", + "struct": "SquareAuthority", + }, + ], + "SquareEventNotifiedUpdateSquareChat": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChat", + "struct": "SquareChat", + }, + ], + "SquareEventNotifiedUpdateSquareChatAnnouncement": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "announcementSeq", + "type": 10, + }, + ], + "SquareEventNotifiedUpdateSquareChatFeatureSet": [ + { + "fid": 1, + "name": "squareChatFeatureSet", + "struct": "SquareChatFeatureSet", + }, + ], + "SquareEventNotifiedUpdateSquareChatMaxMemberCount": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "maxMemberCount", + "type": 8, + }, + { + "fid": 3, + "name": "editor", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedUpdateSquareChatMember": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareChatMember", + "struct": "SquareChatMember", + }, + ], + "SquareEventNotifiedUpdateSquareChatProfileImage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "editor", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedUpdateSquareChatProfileName": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "editor", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "updatedChatName", + "type": 11, + }, + ], + "SquareEventNotifiedUpdateSquareChatStatus": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "statusWithoutMessage", + "struct": "SquareChatStatusWithoutMessage", + }, + ], + "SquareEventNotifiedUpdateSquareFeatureSet": [ + { + "fid": 1, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + ], + "SquareEventNotifiedUpdateSquareMember": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareMember", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedUpdateSquareMemberProfile": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMember", + "struct": "SquareMember", + }, + ], + "SquareEventNotifiedUpdateSquareMemberRelation": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "myMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetSquareMemberMid", + "type": 11, + }, + { + "fid": 4, + "name": "squareMemberRelation", + "struct": "SquareMemberRelation", + }, + ], + "SquareEventNotifiedUpdateSquareNoteStatus": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "noteStatus", + "struct": "NoteStatus", + }, + ], + "SquareEventNotifiedUpdateSquareStatus": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareStatus", + "struct": "SquareStatus", + }, + ], + "SquareEventNotifiedUpdateThread": [ + { + "fid": 1, + "name": "squareThread", + "struct": "SquareThread", + }, + ], + "SquareEventNotifiedUpdateThreadMember": [ + { + "fid": 1, + "name": "threadMember", + "struct": "SquareThreadMember", + }, + { + "fid": 2, + "name": "squareThread", + "struct": "SquareThread", + }, + { + "fid": 3, + "name": "threadRootMessage", + "struct": "SquareMessage", + }, + { + "fid": 4, + "name": "totalMessageCount", + "type": 10, + }, + { + "fid": 5, + "name": "lastMessage", + "struct": "SquareMessage", + }, + { + "fid": 6, + "name": "lastMessageSenderDisplayName", + "type": 11, + }, + ], + "SquareEventNotifiedUpdateThreadRootMessage": [ + { + "fid": 1, + "name": "squareThread", + "struct": "SquareThread", + }, + ], + "SquareEventNotifiedUpdateThreadRootMessageStatus": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "threadMid", + "type": 11, + }, + { + "fid": 3, + "name": "threadRootMessageId", + "type": 11, + }, + { + "fid": 4, + "name": "totalMessageCount", + "type": 10, + }, + { + "fid": 5, + "name": "lastMessageAt", + "type": 10, + }, + ], + "SquareEventNotifiedUpdateThreadStatus": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "unreadCount", + "type": 10, + }, + { + "fid": 4, + "name": "markAsReadMessageId", + "type": 11, + }, + ], + "SquareEventReceiveMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMessage", + "struct": "SquareMessage", + }, + { + "fid": 3, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 4, + "name": "messageReactionStatus", + "struct": "SquareMessageReactionStatus", + }, + { + "fid": 5, + "name": "senderRevision", + "type": 10, + }, + { + "fid": 6, + "name": "squareMid", + "type": 11, + }, + { + "fid": 7, + "name": "threadMid", + "type": 11, + }, + { + "fid": 8, + "name": "threadTotalMessageCount", + "type": 10, + }, + { + "fid": 9, + "name": "threadLastMessageAt", + "type": 10, + }, + { + "fid": 10, + "name": "contentsAttribute", + "struct": "ContentsAttribute", + }, + ], + "SquareEventSendMessage": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMessage", + "struct": "SquareMessage", + }, + { + "fid": 3, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 4, + "name": "senderDisplayName", + "type": 11, + }, + { + "fid": 5, + "name": "messageReactionStatus", + "struct": "SquareMessageReactionStatus", + }, + { + "fid": 6, + "name": "threadMid", + "type": 11, + }, + { + "fid": 7, + "name": "threadTotalMessageCount", + "type": 10, + }, + { + "fid": 8, + "name": "threadLastMessageAt", + "type": 10, + }, + ], + "SquareExtraInfo": [ + { + "fid": 1, + "name": "country", + "type": 11, + }, + ], + "SquareFeature": [ + { + "fid": 1, + "name": "controlState", + "struct": "SquareFeatureControlState", + }, + { + "fid": 2, + "name": "booleanValue", + "struct": "BooleanState", + }, + ], + "SquareFeatureSet": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + { + "fid": 11, + "name": "creatingSecretSquareChat", + "struct": "SquareFeature", + }, + { + "fid": 12, + "name": "invitingIntoOpenSquareChat", + "struct": "SquareFeature", + }, + { + "fid": 13, + "name": "creatingSquareChat", + "struct": "SquareFeature", + }, + { + "fid": 14, + "name": "readonlyDefaultChat", + "struct": "SquareFeature", + }, + { + "fid": 15, + "name": "showingAdvertisement", + "struct": "SquareFeature", + }, + { + "fid": 16, + "name": "delegateJoinToPlug", + "struct": "SquareFeature", + }, + { + "fid": 17, + "name": "delegateKickOutToPlug", + "struct": "SquareFeature", + }, + { + "fid": 18, + "name": "disableUpdateJoinMethod", + "struct": "SquareFeature", + }, + { + "fid": 19, + "name": "disableTransferAdmin", + "struct": "SquareFeature", + }, + { + "fid": 20, + "name": "creatingLiveTalk", + "struct": "SquareFeature", + }, + { + "fid": 21, + "name": "disableUpdateSearchable", + "struct": "SquareFeature", + }, + { + "fid": 22, + "name": "summarizingMessages", + "struct": "SquareFeature", + }, + { + "fid": 23, + "name": "creatingSquareThread", + "struct": "SquareFeature", + }, + { + "fid": 24, + "name": "enableSquareThread", + "struct": "SquareFeature", + }, + { + "fid": 25, + "name": "disableChangeRoleCoAdmin", + "struct": "SquareFeature", + }, + ], + "SquareInfo": [ + { + "fid": 1, + "name": "square", + "struct": "Square", + }, + { + "fid": 2, + "name": "squareStatus", + "struct": "SquareStatus", + }, + { + "fid": 3, + "name": "squareNoteStatus", + "struct": "NoteStatus", + }, + ], + "SquareJoinMethod": [ + { + "fid": 1, + "name": "type", + "struct": "SquareJoinMethodType", + }, + { + "fid": 2, + "name": "value", + "struct": "SquareJoinMethodValue", + }, + ], + "SquareJoinMethodValue": [ + { + "fid": 1, + "name": "approvalValue", + "struct": "ApprovalValue", + }, + { + "fid": 2, + "name": "codeValue", + "struct": "CodeValue", + }, + ], + "SquareMember": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "displayName", + "type": 11, + }, + { + "fid": 4, + "name": "profileImageObsHash", + "type": 11, + }, + { + "fid": 5, + "name": "ableToReceiveMessage", + "type": 2, + }, + { + "fid": 7, + "name": "membershipState", + "struct": "SquareMembershipState", + }, + { + "fid": 8, + "name": "role", + "struct": "SquareMemberRole", + }, + { + "fid": 9, + "name": "revision", + "type": 10, + }, + { + "fid": 10, + "name": "preference", + "struct": "SquarePreference", + }, + { + "fid": 11, + "name": "joinMessage", + "type": 11, + }, + { + "fid": 12, + "name": "createdAt", + "type": 10, + }, + ], + "SquareMemberRelation": [ + { + "fid": 1, + "name": "state", + "struct": "SquareMemberRelationState", + }, + { + "fid": 2, + "name": "revision", + "type": 10, + }, + ], + "SquareMemberSearchOption": [ + { + "fid": 1, + "name": "membershipState", + "struct": "SquareMembershipState", + }, + { + "fid": 2, + "name": "memberRoles", + "set": "SquareMemberRole", + }, + { + "fid": 3, + "name": "displayName", + "type": 11, + }, + { + "fid": 4, + "name": "ableToReceiveMessage", + "struct": "BooleanState", + }, + { + "fid": 5, + "name": "ableToReceiveFriendRequest", + "struct": "BooleanState", + }, + { + "fid": 6, + "name": "chatMidToExcludeMembers", + "type": 11, + }, + { + "fid": 7, + "name": "includingMe", + "type": 2, + }, + { + "fid": 8, + "name": "excludeBlockedMembers", + "type": 2, + }, + { + "fid": 9, + "name": "includingMeOnlyMatch", + "type": 2, + }, + ], + "SquareMessage": [ + { + "fid": 1, + "name": "message", + "struct": "Message", + }, + { + "fid": 3, + "name": "fromType", + "struct": "MIDType", + }, + { + "fid": 4, + "name": "squareMessageRevision", + "type": 10, + }, + { + "fid": 5, + "name": "state", + "struct": "SquareMessageState", + }, + { + "fid": 6, + "name": "threadInfo", + "struct": "SquareMessageThreadInfo", + }, + ], + "SquareMessageInfo": [ + { + "fid": 1, + "name": "message", + "struct": "SquareMessage", + }, + { + "fid": 2, + "name": "square", + "struct": "Square", + }, + { + "fid": 3, + "name": "chat", + "struct": "SquareChat", + }, + { + "fid": 4, + "name": "sender", + "struct": "SquareMember", + }, + ], + "SquareMessageReaction": [ + { + "fid": 1, + "name": "type", + "struct": "MessageReactionType", + }, + { + "fid": 2, + "name": "reactor", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "createdAt", + "type": 10, + }, + { + "fid": 4, + "name": "updatedAt", + "type": 10, + }, + ], + "SquareMessageReactionStatus": [ + { + "fid": 1, + "name": "totalCount", + "type": 8, + }, + { + "fid": 2, + "name": "countByReactionType", + "map": 8, + "key": 8, + }, + { + "fid": 3, + "name": "myReaction", + "struct": "SquareMessageReaction", + }, + ], + "SquareMessageStatus": [ + { + "fid": 1, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 2, + "name": "globalMessageId", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "MessageStatusType", + }, + { + "fid": 4, + "name": "contents", + "struct": "MessageStatusContents", + }, + { + "fid": 5, + "name": "publishedAt", + "type": 10, + }, + { + "fid": 6, + "name": "squareChatThreadMid", + "type": 11, + }, + ], + "SquareMessageThreadInfo": [ + { + "fid": 1, + "name": "chatThreadMid", + "type": 11, + }, + { + "fid": 2, + "name": "threadRoot", + "type": 2, + }, + ], + "SquareMetadata": [ + { + "fid": 1, + "name": "mid", + "type": 11, + }, + { + "fid": 2, + "name": "excluded", + "set": 8, + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + { + "fid": 4, + "name": "noAd", + "type": 2, + }, + { + "fid": 5, + "name": "updatedAt", + "type": 10, + }, + ], + "SquarePreference": [ + { + "fid": 1, + "name": "favoriteTimestamp", + "type": 10, + }, + { + "fid": 2, + "name": "notiForNewJoinRequest", + "type": 2, + }, + ], + "SquareStatus": [ + { + "fid": 1, + "name": "memberCount", + "type": 8, + }, + { + "fid": 2, + "name": "joinRequestCount", + "type": 8, + }, + { + "fid": 3, + "name": "lastJoinRequestAt", + "type": 10, + }, + { + "fid": 4, + "name": "openChatCount", + "type": 8, + }, + ], + "SquareThread": [ + { + "fid": 1, + "name": "threadMid", + "type": 11, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "squareMid", + "type": 11, + }, + { + "fid": 4, + "name": "messageId", + "type": 11, + }, + { + "fid": 5, + "name": "state", + "struct": "SquareThreadState", + }, + { + "fid": 6, + "name": "expiresAt", + "type": 10, + }, + { + "fid": 7, + "name": "readOnlyAt", + "type": 10, + }, + { + "fid": 8, + "name": "revision", + "type": 10, + }, + ], + "SquareThreadMember": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + { + "fid": 2, + "name": "threadMid", + "type": 11, + }, + { + "fid": 3, + "name": "chatMid", + "type": 11, + }, + { + "fid": 4, + "name": "revision", + "type": 10, + }, + { + "fid": 5, + "name": "membershipState", + "struct": "SquareThreadMembershipState", + }, + ], + "SquareUserSettings": [ + { + "fid": 1, + "name": "liveTalkNotification", + "struct": "BooleanState", + }, + ], + "SquareVisibility": [ + { + "fid": 1, + "name": "common", + "type": 2, + }, + { + "fid": 2, + "name": "search", + "type": 2, + }, + ], + "StartPhotoboothRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + ], + "StartPhotoboothResponse": [ + { + "fid": 1, + "name": "photoboothSessionId", + "type": 11, + }, + ], + "I80_C0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "modelName", + "type": 11, + }, + { + "fid": 3, + "name": "deviceUid", + "type": 11, + }, + ], + "I80_D0": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + { + "fid": 2, + "name": "availableAuthFactors", + "list": 8, + }, + ], + "Sticker": [ + { + "fid": 1, + "name": "stickerId", + "type": 11, + }, + { + "fid": 2, + "name": "resourceType", + "struct": "StickerResourceType", + }, + { + "fid": 3, + "name": "popupLayer", + "struct": "zR0_EnumC40578c", + }, + ], + "StickerDisplayData": [ + { + "fid": 1, + "name": "stickerHash", + "type": 11, + }, + { + "fid": 2, + "name": "stickerResourceType", + "struct": "StickerResourceType", + }, + { + "fid": 3, + "name": "nameTextProperty", + "struct": "ImageTextProperty", + }, + { + "fid": 4, + "name": "popupLayer", + "struct": "Ob1_B0", + }, + { + "fid": 5, + "name": "stickerSize", + "struct": "Ob1_C1", + }, + { + "fid": 6, + "name": "productAvailability", + "struct": "Ob1_D0", + }, + { + "fid": 7, + "name": "height", + "type": 8, + }, + { + "fid": 8, + "name": "width", + "type": 8, + }, + { + "fid": 9, + "name": "version", + "type": 10, + }, + { + "fid": 10, + "name": "availableForCombinationSticker", + "type": 2, + }, + ], + "StickerIdRange": [ + { + "fid": 1, + "name": "start", + "type": 10, + }, + { + "fid": 2, + "name": "size", + "type": 8, + }, + ], + "StickerLayout": [ + { + "fid": 1, + "name": "layoutInfo", + "struct": "StickerLayoutInfo", + }, + { + "fid": 2, + "name": "stickerInfo", + "struct": "StickerLayoutStickerInfo", + }, + ], + "StickerLayoutInfo": [ + { + "fid": 1, + "name": "width", + "type": 4, + }, + { + "fid": 2, + "name": "height", + "type": 4, + }, + { + "fid": 3, + "name": "rotation", + "type": 4, + }, + { + "fid": 4, + "name": "x", + "type": 4, + }, + { + "fid": 5, + "name": "y", + "type": 4, + }, + ], + "StickerLayoutStickerInfo": [ + { + "fid": 1, + "name": "stickerId", + "type": 10, + }, + { + "fid": 2, + "name": "productId", + "type": 10, + }, + { + "fid": 3, + "name": "stickerHash", + "type": 11, + }, + { + "fid": 4, + "name": "stickerOptions", + "type": 11, + }, + { + "fid": 5, + "name": "stickerVersion", + "type": 10, + }, + ], + "StickerProperty": [ + { + "fid": 1, + "name": "hasAnimation", + "type": 2, + }, + { + "fid": 2, + "name": "hasSound", + "type": 2, + }, + { + "fid": 3, + "name": "hasPopup", + "type": 2, + }, + { + "fid": 4, + "name": "stickerResourceType", + "struct": "StickerResourceType", + }, + { + "fid": 5, + "name": "stickerOptions", + "type": 11, + }, + { + "fid": 6, + "name": "compactStickerOptions", + "type": 8, + }, + { + "fid": 7, + "name": "stickerHash", + "type": 11, + }, + { + "fid": 9, + "name": "stickerIds", + "list": 11, + }, + { + "fid": 10, + "name": "nameTextProperty", + "struct": "ImageTextProperty", + }, + { + "fid": 11, + "name": "availableForPhotoEdit", + "type": 2, + }, + { + "fid": 12, + "name": "stickerDefaultTexts", + "map": 11, + "key": 11, + }, + { + "fid": 13, + "name": "stickerSize", + "struct": "Ob1_C1", + }, + { + "fid": 14, + "name": "popupLayer", + "struct": "Ob1_B0", + }, + { + "fid": 15, + "name": "cpdProduct", + "type": 2, + }, + { + "fid": 16, + "name": "availableForCombinationSticker", + "type": 2, + }, + ], + "StickerSummary": [ + { + "fid": 1, + "name": "stickerIdRanges", + "list": "StickerIdRange", + }, + { + "fid": 2, + "name": "suggestVersion", + "type": 10, + }, + { + "fid": 3, + "name": "stickerHash", + "type": 11, + }, + { + "fid": 4, + "name": "defaultDisplayOnKeyboard", + "type": 2, + }, + { + "fid": 5, + "name": "stickerResourceType", + "struct": "StickerResourceType", + }, + { + "fid": 6, + "name": "nameTextProperty", + "struct": "ImageTextProperty", + }, + { + "fid": 7, + "name": "availableForPhotoEdit", + "type": 2, + }, + { + "fid": 8, + "name": "popupLayer", + "struct": "Ob1_B0", + }, + { + "fid": 9, + "name": "stickerSize", + "struct": "Ob1_C1", + }, + { + "fid": 10, + "name": "availableForCombinationSticker", + "type": 2, + }, + ], + "SticonProperty": [ + { + "fid": 2, + "name": "sticonIds", + "list": 11, + }, + { + "fid": 3, + "name": "availableForPhotoEdit", + "type": 2, + }, + { + "fid": 4, + "name": "sticonResourceType", + "struct": "Ob1_F1", + }, + { + "fid": 5, + "name": "endPageMainImages", + }, + ], + "SticonSummary": [ + { + "fid": 1, + "name": "suggestVersion", + "type": 10, + }, + { + "fid": 2, + "name": "availableForPhotoEdit", + "type": 2, + }, + { + "fid": 3, + "name": "sticonResourceType", + "struct": "Ob1_F1", + }, + ], + "StopBundleSubscriptionRequest": [ + { + "fid": 1, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 2, + "name": "storeCode", + "struct": "Ob1_K1", + }, + ], + "StopBundleSubscriptionResponse": [ + { + "fid": 1, + "name": "result", + "struct": "Ob1_J1", + }, + ], + "StopNotificationAction": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "characteristicUuid", + "type": 11, + }, + ], + "StudentInformation": [ + { + "fid": 1, + "name": "schoolName", + "type": 11, + }, + { + "fid": 2, + "name": "graduationDate", + "type": 11, + }, + ], + "SubLiffView": [ + { + "fid": 1, + "name": "presentationType", + "struct": "Qj_i0", + }, + { + "fid": 2, + "name": "url", + "type": 11, + }, + { + "fid": 3, + "name": "maxBrightness", + "type": 2, + }, + { + "fid": 4, + "name": "menuColorSetting", + "struct": "LIFFMenuColorSetting", + }, + { + "fid": 5, + "name": "closeButtonPosition", + "struct": "Qj_h0", + }, + { + "fid": 6, + "name": "closeButtonLabel", + "type": 11, + }, + { + "fid": 7, + "name": "skipWebRTCPermissionPopupAllowed", + "type": 2, + }, + ], + "SubTab": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "badgeInfo", + "struct": "BadgeInfo", + }, + { + "fid": 4, + "name": "tooltipInfo", + "struct": "TooltipInfo", + }, + { + "fid": 5, + "name": "modulesOrder", + "list": 11, + }, + { + "fid": 6, + "name": "wrsSubTabModelId", + "type": 11, + }, + ], + "SubWindowResultRequest": [ + { + "fid": 1, + "name": "msit", + "type": 11, + }, + { + "fid": 2, + "name": "mstVerifier", + "type": 11, + }, + ], + "SubscriptionNotification": [ + { + "fid": 1, + "name": "subscriptionId", + "type": 10, + }, + ], + "SubscriptionPlan": [ + { + "fid": 1, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 2, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 3, + "name": "target", + "struct": "Ob1_P1", + }, + { + "fid": 4, + "name": "type", + "struct": "Ob1_R1", + }, + { + "fid": 5, + "name": "period", + "type": 11, + }, + { + "fid": 6, + "name": "freeTrial", + "type": 11, + }, + { + "fid": 7, + "name": "localizedName", + "type": 11, + }, + { + "fid": 8, + "name": "price", + "struct": "Price", + }, + { + "fid": 9, + "name": "availability", + "struct": "Ob1_O1", + }, + { + "fid": 10, + "name": "cpId", + "type": 11, + }, + { + "fid": 11, + "name": "nameKey", + "type": 11, + }, + { + "fid": 12, + "name": "tier", + "struct": "Ob1_Q1", + }, + ], + "SubscriptionSlotHistory": [ + { + "fid": 1, + "name": "product", + "struct": "ProductSearchSummary", + }, + { + "fid": 2, + "name": "addedTime", + "type": 10, + }, + { + "fid": 3, + "name": "removedTime", + "type": 10, + }, + ], + "SubscriptionState": [ + { + "fid": 1, + "name": "subscriptionId", + "type": 10, + }, + { + "fid": 2, + "name": "ttlMillis", + "type": 10, + }, + ], + "SubscriptionStatus": [ + { + "fid": 1, + "name": "billingItemId", + "type": 11, + }, + { + "fid": 2, + "name": "subscriptionService", + "struct": "Ob1_S1", + }, + { + "fid": 3, + "name": "period", + "type": 11, + }, + { + "fid": 4, + "name": "localizedName", + "type": 11, + }, + { + "fid": 5, + "name": "freeTrial", + "type": 2, + }, + { + "fid": 6, + "name": "expired", + "type": 2, + }, + { + "fid": 7, + "name": "validUntil", + "type": 10, + }, + { + "fid": 8, + "name": "maxSlotCount", + "type": 8, + }, + { + "fid": 9, + "name": "target", + "struct": "Ob1_P1", + }, + { + "fid": 10, + "name": "type", + "struct": "Ob1_R1", + }, + { + "fid": 11, + "name": "storeCode", + "struct": "Ob1_K1", + }, + { + "fid": 12, + "name": "nameKey", + "type": 11, + }, + { + "fid": 13, + "name": "tier", + "struct": "Ob1_Q1", + }, + { + "fid": 14, + "name": "accountHold", + "type": 2, + }, + { + "fid": 15, + "name": "maxSlotCountsByProductType", + "map": 8, + "key": 8, + }, + { + "fid": 16, + "name": "agreementAccepted", + "type": 2, + }, + { + "fid": 17, + "name": "originalValidUntil", + "type": 10, + }, + ], + "SuggestDictionarySetting": [ + { + "fid": 1, + "name": "language", + "type": 11, + }, + { + "fid": 2, + "name": "name", + "type": 11, + }, + { + "fid": 3, + "name": "preload", + "type": 2, + }, + { + "fid": 4, + "name": "suggestResource", + "struct": "SuggestResource", + }, + { + "fid": 5, + "name": "patch", + "map": 11, + "key": 10, + }, + { + "fid": 6, + "name": "suggestTagResource", + "struct": "SuggestResource", + }, + { + "fid": 7, + "name": "tagPatch", + "map": 11, + "key": 10, + }, + { + "fid": 8, + "name": "corpusResource", + "struct": "SuggestResource", + }, + ], + "SuggestResource": [ + { + "fid": 1, + "name": "dataUrl", + "type": 11, + }, + { + "fid": 2, + "name": "version", + "type": 10, + }, + { + "fid": 3, + "name": "updatedTime", + "type": 10, + }, + ], + "SuggestTag": [ + { + "fid": 1, + "name": "tagId", + "type": 11, + }, + { + "fid": 2, + "name": "weight", + "type": 4, + }, + ], + "SuggestTrialRecommendation": [ + { + "fid": 1, + "name": "productId", + "type": 11, + }, + { + "fid": 2, + "name": "productVersion", + "type": 10, + }, + { + "fid": 3, + "name": "productName", + "type": 11, + }, + { + "fid": 4, + "name": "resource", + "struct": "zR0_C40580e", + }, + { + "fid": 5, + "name": "tags", + "list": "SuggestTag", + }, + ], + "SyncRequest": [ + { + "fid": 1, + "name": "lastRevision", + "type": 10, + }, + { + "fid": 2, + "name": "count", + "type": 8, + }, + { + "fid": 3, + "name": "lastGlobalRevision", + "type": 10, + }, + { + "fid": 4, + "name": "lastIndividualRevision", + "type": 10, + }, + { + "fid": 5, + "name": "fullSyncRequestReason", + "struct": "Pb1_J4", + }, + { + "fid": 6, + "name": "lastPartialFullSyncs", + "map": 10, + "key": 8, + }, + ], + "SyncSquareMembersRequest": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "squareMembers", + "map": 10, + "key": 11, + }, + ], + "SyncSquareMembersResponse": [ + { + "fid": 1, + "name": "updatedSquareMembers", + "list": "SquareMember", + }, + ], + "T70_C14398f": [], + "T70_g1": [], + "T70_o1": [], + "T70_s1": [], + "TGlobalEvents": [ + { + "fid": 1, + "name": "events", + "map": "GlobalEvent", + "key": 8, + }, + { + "fid": 2, + "name": "lastRevision", + "type": 10, + }, + ], + "TIndividualEvents": [ + { + "fid": 1, + "name": "events", + "set": 8, + }, + { + "fid": 2, + "name": "lastRevision", + "type": 10, + }, + ], + "TMessageReadRange": [ + { + "fid": 1, + "name": "chatId", + "type": 11, + }, + { + "fid": 2, + "name": "ranges", + "key": 11, + }, + ], + "TMessageReadRangeEntry": [ + { + "fid": 1, + "name": "startMessageId", + "type": 10, + }, + { + "fid": 2, + "name": "endMessageId", + "type": 10, + }, + { + "fid": 3, + "name": "startTime", + "type": 10, + }, + { + "fid": 4, + "name": "endTime", + "type": 10, + }, + ], + "Tag": [ + { + "fid": 1, + "name": "tagId", + "type": 11, + }, + { + "fid": 2, + "name": "candidates", + "list": "Candidate", + }, + ], + "TaiwanBankAgreementRequiredPopupInfo": [ + { + "fid": 1, + "name": "popupTitle", + "type": 11, + }, + { + "fid": 2, + "name": "popupContent", + "type": 11, + }, + ], + "TaiwanBankBalanceInfo": [ + { + "fid": 1, + "name": "bankUser", + "type": 2, + }, + { + "fid": 2, + "name": "balance", + "type": 10, + }, + { + "fid": 3, + "name": "accessToken", + "type": 11, + }, + { + "fid": 4, + "name": "accessTokenExpiresInSecond", + "type": 8, + }, + { + "fid": 5, + "name": "balanceLinkUrl", + "type": 11, + }, + { + "fid": 6, + "name": "balanceDisplay", + "type": 2, + }, + { + "fid": 7, + "name": "agreedToShowBalance", + "type": 2, + }, + { + "fid": 8, + "name": "agreementRequiredPopupInfo", + "struct": "TaiwanBankAgreementRequiredPopupInfo", + }, + ], + "TaiwanBankLoginParameters": [ + { + "fid": 1, + "name": "loginScheme", + "type": 11, + }, + { + "fid": 2, + "name": "type", + "type": 11, + }, + { + "fid": 3, + "name": "action", + "type": 11, + }, + { + "fid": 4, + "name": "scope", + "type": 11, + }, + { + "fid": 5, + "name": "responseType", + "type": 11, + }, + { + "fid": 6, + "name": "codeChallengeMethod", + "type": 11, + }, + { + "fid": 7, + "name": "clientId", + "type": 11, + }, + ], + "TalkroomEnterReferer": [ + { + "fid": 1, + "name": "urlScheme", + "type": 11, + }, + { + "fid": 2, + "name": "type", + "struct": "kf_x", + }, + { + "fid": 3, + "name": "content", + "struct": "kf_w", + }, + ], + "TalkroomEvent": [ + { + "fid": 1, + "name": "type", + "struct": "kf_z", + }, + { + "fid": 2, + "name": "referer", + "struct": "TalkroomEnterReferer", + }, + ], + "TargetProfileDetail": [ + { + "fid": 1, + "name": "snapshotTimeMillis", + "type": 10, + }, + { + "fid": 2, + "name": "profileName", + "type": 11, + }, + { + "fid": 3, + "name": "picturePath", + "type": 11, + }, + { + "fid": 4, + "name": "statusMessage", + "struct": "RichString", + }, + { + "fid": 5, + "name": "musicProfile", + "type": 11, + }, + { + "fid": 6, + "name": "videoProfile", + "type": 11, + }, + { + "fid": 7, + "name": "avatarProfile", + "struct": "AvatarProfile", + }, + { + "fid": 8, + "name": "pictureSource", + "struct": "Pb1_N6", + }, + { + "fid": 9, + "name": "pictureStatus", + "type": 11, + }, + { + "fid": 10, + "name": "profileId", + "type": 11, + }, + ], + "TermsAgreementExtraInfo": [ + { + "fid": 1, + "name": "termsType", + "struct": "TermsType", + }, + { + "fid": 2, + "name": "termsVersion", + "type": 8, + }, + { + "fid": 3, + "name": "lanUrl", + "type": 11, + }, + ], + "TextButton": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + ], + "TextMessageAnnouncementContents": [ + { + "fid": 1, + "name": "messageId", + "type": 11, + }, + { + "fid": 2, + "name": "text", + "type": 11, + }, + { + "fid": 3, + "name": "senderSquareMemberMid", + "type": 11, + }, + { + "fid": 4, + "name": "createdAt", + "type": 10, + }, + ], + "ThaiBankBalanceInfo": [ + { + "fid": 1, + "name": "bankUser", + "type": 2, + }, + { + "fid": 2, + "name": "balanceDisplay", + "type": 2, + }, + { + "fid": 3, + "name": "balance", + "type": 4, + }, + { + "fid": 4, + "name": "balanceLinkUrl", + "type": 11, + }, + ], + "ThemeProperty": [ + { + "fid": 1, + "name": "thumbnailUrl", + "type": 11, + }, + { + "fid": 2, + "name": "themeResourceType", + "struct": "Ob1_c2", + }, + ], + "ThemeSummary": [ + { + "fid": 1, + "name": "imagePath", + "type": 11, + }, + { + "fid": 2, + "name": "version", + "type": 10, + }, + { + "fid": 3, + "name": "versionString", + "type": 11, + }, + ], + "ThingsDevice": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + { + "fid": 2, + "name": "actionUri", + "type": 11, + }, + { + "fid": 3, + "name": "botMid", + "type": 11, + }, + { + "fid": 4, + "name": "productType", + "struct": "do0_EnumC23139B", + }, + { + "fid": 5, + "name": "providerName", + "type": 11, + }, + { + "fid": 6, + "name": "profileImageLocation", + "type": 11, + }, + { + "fid": 7, + "name": "channelIdList", + "list": 11, + }, + { + "fid": 8, + "name": "targetABCEngineVersion", + "type": 6, + }, + { + "fid": 9, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 10, + "name": "bondingRequired", + "type": 2, + }, + ], + "ThingsOperation": [ + { + "fid": 1, + "name": "deviceId", + "type": 11, + }, + { + "fid": 2, + "name": "offset", + "type": 10, + }, + { + "fid": 3, + "name": "action", + "struct": "do0_C23138A", + }, + ], + "ThumbnailLayer": [ + { + "fid": 1, + "name": "frontThumbnailImage", + "struct": "RichImage", + }, + { + "fid": 2, + "name": "backgroundThumbnailImage", + "struct": "RichImage", + }, + ], + "Ticket": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 10, + "name": "expirationTime", + "type": 10, + }, + { + "fid": 21, + "name": "maxUseCount", + "type": 8, + }, + ], + "TokenV1IssueResult": [ + { + "fid": 1, + "name": "tokenSecret", + "type": 11, + }, + ], + "TokenV3IssueResult": [ + { + "fid": 1, + "name": "accessToken", + "type": 11, + }, + { + "fid": 2, + "name": "refreshToken", + "type": 11, + }, + { + "fid": 3, + "name": "durationUntilRefreshInSec", + "type": 10, + }, + { + "fid": 4, + "name": "refreshApiRetryPolicy", + "struct": "RefreshApiRetryPolicy", + }, + { + "fid": 5, + "name": "loginSessionId", + "type": 11, + }, + { + "fid": 6, + "name": "tokenIssueTimeEpochSec", + "type": 10, + }, + ], + "Tooltip": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + { + "fid": 2, + "name": "revisionTimeMillis", + "type": 10, + }, + ], + "TooltipInfo": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + { + "fid": 2, + "name": "tooltipRevision", + "type": 10, + }, + ], + "TopTab": [ + { + "fid": 1, + "name": "id", + "type": 11, + }, + { + "fid": 2, + "name": "modulesOrder", + "list": 11, + }, + ], + "TryAgainLaterExtraInfo": [ + { + "fid": 1, + "name": "blockSecs", + "type": 8, + }, + ], + "U70_a": [], + "U70_t": [], + "U70_v": [], + "UEN": [ + { + "fid": 1, + "name": "revision", + "type": 10, + }, + ], + "Uf_C14856C": [ + { + "fid": 1, + "name": "uen", + "struct": "UEN", + }, + { + "fid": 2, + "name": "beacon", + "struct": "Beacon", + }, + ], + "Uf_C14864f": [ + { + "fid": 1, + "name": "regularBadge", + "struct": "RegularBadge", + }, + { + "fid": 2, + "name": "urgentBadge", + "struct": "UrgentBadge", + }, + ], + "Uf_p": [ + { + "fid": 1, + "name": "ad", + "struct": "AD", + }, + { + "fid": 2, + "name": "content", + "struct": "Content", + }, + { + "fid": 3, + "name": "richContent", + "struct": "RichContent", + }, + ], + "Uf_t": [ + { + "fid": 1, + "name": "typeA", + "struct": "RichItem", + }, + { + "fid": 2, + "name": "typeB", + "struct": "RichItem", + }, + ], + "UnfollowRequest": [ + { + "fid": 1, + "name": "followMid", + "struct": "Pb1_A4", + }, + ], + "UnhideSquareMemberContentsRequest": [ + { + "fid": 1, + "name": "squareMemberMid", + "type": 11, + }, + ], + "UnregisterAvailabilityInfo": [ + { + "fid": 1, + "name": "result", + "struct": "r80_m0", + }, + { + "fid": 2, + "name": "message", + "type": 11, + }, + ], + "UnsendMessageRequest": [ + { + "fid": 2, + "name": "squareChatMid", + "type": 11, + }, + { + "fid": 3, + "name": "messageId", + "type": 11, + }, + { + "fid": 4, + "name": "threadMid", + "type": 11, + }, + ], + "UnsendMessageResponse": [ + { + "fid": 1, + "name": "unsentMessage", + "struct": "SquareMessage", + }, + ], + "UpdateChatRequest": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chat", + "struct": "Chat", + }, + { + "fid": 3, + "name": "updatedAttribute", + "struct": "Pb1_O2", + }, + ], + "UpdateGroupCallUrlRequest": [ + { + "fid": 1, + "name": "urlId", + "type": 11, + }, + { + "fid": 2, + "name": "targetAttribute", + "struct": "Pb1_ad", + }, + ], + "UpdateLiveTalkAttrsRequest": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": "LiveTalkAttribute", + }, + { + "fid": 2, + "name": "liveTalk", + "struct": "LiveTalk", + }, + ], + "UpdatePasswordRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "hashedPassword", + "type": 11, + }, + ], + "UpdateProfileAttributesRequest": [ + { + "fid": 1, + "name": "profileAttributes", + "map": "ProfileContent", + "key": 8, + }, + ], + "UpdateReason": [ + { + "fid": 1, + "name": "type", + "struct": "t80_r", + }, + { + "fid": 2, + "name": "detail", + "type": 11, + }, + ], + "UpdateSafetyStatusRequest": [ + { + "fid": 1, + "name": "disasterId", + "type": 11, + }, + { + "fid": 2, + "name": "safetyStatus", + "struct": "vh_m", + }, + { + "fid": 3, + "name": "message", + "type": 11, + }, + ], + "UpdateSquareAuthorityRequest": [ + { + "fid": 2, + "name": "updateAttributes", + "set": "SquareAuthorityAttribute", + }, + { + "fid": 3, + "name": "authority", + "struct": "SquareAuthority", + }, + ], + "UpdateSquareAuthorityResponse": [ + { + "fid": 1, + "name": "updatdAttributes", + "set": 8, + }, + { + "fid": 2, + "name": "authority", + "struct": "SquareAuthority", + }, + ], + "UpdateSquareChatMemberRequest": [ + { + "fid": 2, + "name": "updatedAttrs", + "set": "SquareChatMemberAttribute", + }, + { + "fid": 3, + "name": "chatMember", + "struct": "SquareChatMember", + }, + ], + "UpdateSquareChatMemberResponse": [ + { + "fid": 1, + "name": "updatedChatMember", + "struct": "SquareChatMember", + }, + ], + "UpdateSquareChatRequest": [ + { + "fid": 2, + "name": "updatedAttrs", + "set": "SquareChatAttribute", + }, + { + "fid": 3, + "name": "squareChat", + "struct": "SquareChat", + }, + ], + "UpdateSquareChatResponse": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 2, + "name": "squareChat", + "struct": "SquareChat", + }, + ], + "UpdateSquareFeatureSetRequest": [ + { + "fid": 2, + "name": "updateAttributes", + "set": "SquareFeatureSetAttribute", + }, + { + "fid": 3, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + ], + "UpdateSquareFeatureSetResponse": [ + { + "fid": 1, + "name": "updateAttributes", + "set": 8, + }, + { + "fid": 2, + "name": "squareFeatureSet", + "struct": "SquareFeatureSet", + }, + ], + "UpdateSquareMemberRelationRequest": [ + { + "fid": 2, + "name": "squareMid", + "type": 11, + }, + { + "fid": 3, + "name": "targetSquareMemberMid", + "type": 11, + }, + { + "fid": 4, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 5, + "name": "relation", + "struct": "SquareMemberRelation", + }, + ], + "UpdateSquareMemberRelationResponse": [ + { + "fid": 1, + "name": "squareMid", + "type": 11, + }, + { + "fid": 2, + "name": "targetSquareMemberMid", + "type": 11, + }, + { + "fid": 3, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 4, + "name": "relation", + "struct": "SquareMemberRelation", + }, + ], + "UpdateSquareMemberRequest": [ + { + "fid": 2, + "name": "updatedAttrs", + "set": "SquareMemberAttribute", + }, + { + "fid": 3, + "name": "updatedPreferenceAttrs", + "set": "SquarePreferenceAttribute", + }, + { + "fid": 4, + "name": "squareMember", + "struct": "SquareMember", + }, + ], + "UpdateSquareMemberResponse": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 2, + "name": "squareMember", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "updatedPreferenceAttrs", + "set": 8, + }, + ], + "UpdateSquareMembersRequest": [ + { + "fid": 2, + "name": "updatedAttrs", + "set": "SquareMemberAttribute", + }, + { + "fid": 3, + "name": "members", + "list": "SquareMember", + }, + ], + "UpdateSquareMembersResponse": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 2, + "name": "editor", + "struct": "SquareMember", + }, + { + "fid": 3, + "name": "members", + "map": "SquareMember", + "key": 11, + }, + ], + "UpdateSquareRequest": [ + { + "fid": 2, + "name": "updatedAttrs", + "set": "SquareAttribute", + }, + { + "fid": 3, + "name": "square", + "struct": "Square", + }, + ], + "UpdateSquareResponse": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": 8, + }, + { + "fid": 2, + "name": "square", + "struct": "Square", + }, + ], + "UpdateUserSettingsRequest": [ + { + "fid": 1, + "name": "updatedAttrs", + "set": "SquareUserSettingsAttribute", + }, + { + "fid": 2, + "name": "userSettings", + "struct": "SquareUserSettings", + }, + ], + "UrgentBadge": [ + { + "fid": 1, + "name": "bgColor", + "type": 11, + }, + { + "fid": 2, + "name": "label", + "type": 11, + }, + { + "fid": 3, + "name": "color", + "type": 11, + }, + ], + "UrlButton": [ + { + "fid": 1, + "name": "text", + "type": 11, + }, + { + "fid": 2, + "name": "url", + "type": 11, + }, + ], + "UsePhotoboothTicketRequest": [ + { + "fid": 1, + "name": "chatMid", + "type": 11, + }, + { + "fid": 2, + "name": "photoboothSessionId", + "type": 11, + }, + ], + "UsePhotoboothTicketResponse": [ + { + "fid": 1, + "name": "signedTicketJwt", + "type": 11, + }, + ], + "UserBlockDetail": [ + { + "fid": 3, + "name": "deletedFromBlockList", + "type": 2, + }, + ], + "UserDevice": [ + { + "fid": 1, + "name": "device", + "struct": "ThingsDevice", + }, + { + "fid": 2, + "name": "deviceDisplayName", + "type": 11, + }, + ], + "UserFriendDetail": [ + { + "fid": 1, + "name": "createdTime", + "type": 10, + }, + { + "fid": 3, + "name": "overriddenName", + "type": 11, + }, + { + "fid": 4, + "name": "favoriteTime", + "type": 10, + }, + { + "fid": 6, + "name": "hidden", + "type": 2, + }, + { + "fid": 7, + "name": "ringtone", + "type": 11, + }, + { + "fid": 8, + "name": "ringbackTone", + "type": 11, + }, + ], + "UserPhoneNumber": [ + { + "fid": 1, + "name": "phoneNumber", + "type": 11, + }, + { + "fid": 2, + "name": "countryCode", + "type": 11, + }, + ], + "UserProfile": [ + { + "fid": 1, + "name": "displayName", + "type": 11, + }, + { + "fid": 2, + "name": "profileImageUrl", + "type": 11, + }, + ], + "UserRestrictionExtraInfo": [ + { + "fid": 1, + "name": "linkUrl", + "type": 11, + }, + ], + "V1PasswordHashingParameters": [ + { + "fid": 1, + "name": "aesKey", + "type": 11, + }, + { + "fid": 2, + "name": "salt", + "type": 11, + }, + ], + "VerificationSessionData": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "method", + "struct": "VerificationMethod", + }, + { + "fid": 3, + "name": "callback", + "type": 11, + }, + { + "fid": 4, + "name": "normalizedPhone", + "type": 11, + }, + { + "fid": 5, + "name": "countryCode", + "type": 11, + }, + { + "fid": 6, + "name": "nationalSignificantNumber", + "type": 11, + }, + { + "fid": 7, + "name": "availableVerificationMethods", + "list": "VerificationMethod", + }, + ], + "VerifyAccountUsingHashedPwdRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + { + "fid": 3, + "name": "v1HashedPassword", + "type": 11, + }, + { + "fid": 4, + "name": "clientHashedPassword", + "type": 11, + }, + ], + "I80_E0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "v1HashedPassword", + "type": 11, + }, + { + "fid": 3, + "name": "clientHashedPassword", + "type": 11, + }, + ], + "VerifyAccountUsingHashedPwdResponse": [ + { + "fid": 1, + "name": "userProfile", + "struct": "UserProfile", + }, + ], + "VerifyAssertionRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "credentialId", + "type": 11, + }, + { + "fid": 3, + "name": "assertionObject", + "type": 11, + }, + { + "fid": 4, + "name": "clientDataJSON", + "type": 11, + }, + ], + "VerifyAttestationRequest": [ + { + "fid": 1, + "name": "sessionId", + "type": 11, + }, + { + "fid": 2, + "name": "attestationObject", + "type": 11, + }, + { + "fid": 3, + "name": "clientDataJSON", + "type": 11, + }, + ], + "VerifyEapLoginRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "eapLogin", + "struct": "EapLogin", + }, + ], + "I80_G0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "eapLogin", + "struct": "EapLogin", + }, + ], + "VerifyEapLoginResponse": [ + { + "fid": 1, + "name": "accountExists", + "type": 2, + }, + ], + "I80_H0": [ + { + "fid": 1, + "name": "userProfile", + "struct": "I80_V70_a", + }, + ], + "VerifyPhonePinCodeRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + { + "fid": 3, + "name": "pinCode", + "type": 11, + }, + ], + "I80_I0": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "userPhoneNumber", + "struct": "UserPhoneNumber", + }, + { + "fid": 3, + "name": "pinCode", + "type": 11, + }, + ], + "VerifyPhonePinCodeResponse": [ + { + "fid": 1, + "name": "accountExist", + "type": 2, + }, + { + "fid": 2, + "name": "sameUdidFromAccount", + "type": 2, + }, + { + "fid": 3, + "name": "allowedToRegister", + "type": 2, + }, + { + "fid": 11, + "name": "userProfile", + "struct": "UserProfile", + }, + ], + "I80_J0": [ + { + "fid": 1, + "name": "userProfile", + "struct": "I80_V70_a", + }, + ], + "VerifyPinCodeRequest": [ + { + "fid": 1, + "name": "pinCode", + "type": 11, + }, + ], + "VerifyQrCodeRequest": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "metaData", + "map": 11, + "key": 11, + }, + ], + "VerifySocialLoginResponse": [ + { + "fid": 2, + "name": "accountExist", + "type": 2, + }, + { + "fid": 11, + "name": "userProfile", + "struct": "UserProfile", + }, + { + "fid": 12, + "name": "sameUdidFromAccount", + "type": 2, + }, + ], + "I80_K0": [ + { + "fid": 1, + "name": "baseUrl", + "type": 11, + }, + { + "fid": 2, + "name": "token", + "type": 11, + }, + ], + "WebAuthDetails": [ + { + "fid": 1, + "name": "baseUrl", + "type": 11, + }, + { + "fid": 2, + "name": "token", + "type": 11, + }, + ], + "WebLoginRequest": [ + { + "fid": 1, + "name": "hookedFullUrl", + "type": 11, + }, + { + "fid": 2, + "name": "sessionString", + "type": 11, + }, + { + "fid": 3, + "name": "fromIAB", + "type": 2, + }, + { + "fid": 4, + "name": "sourceApplication", + "type": 11, + }, + ], + "WebLoginResponse": [ + { + "fid": 1, + "name": "returnUrl", + "type": 11, + }, + { + "fid": 2, + "name": "optionalReturnUrl", + "type": 11, + }, + { + "fid": 3, + "name": "redirectConfirmationPageUrl", + "type": 11, + }, + ], + "WifiSignal": [ + { + "fid": 2, + "name": "ssid", + "type": 11, + }, + { + "fid": 3, + "name": "bssid", + "type": 11, + }, + { + "fid": 4, + "name": "wifiStandard", + "type": 11, + }, + { + "fid": 5, + "name": "frequency", + "type": 4, + }, + { + "fid": 10, + "name": "lastSeenTimestamp", + "type": 10, + }, + { + "fid": 11, + "name": "rssi", + "type": 8, + }, + ], + "Z70_a": [ + { + "fid": 1, + "name": "recoveryKey", + "type": 11, + }, + { + "fid": 2, + "name": "backupBlobPayload", + "type": 11, + }, + ], + "ZQ0_b": [], + "acceptChatInvitationByTicket_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptChatInvitationByTicketRequest", + }, + ], + "acceptChatInvitationByTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C12980f", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "acceptChatInvitation_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptChatInvitationRequest", + }, + ], + "acceptChatInvitation_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C13008h", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "SquareService_acceptSpeakers_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcceptSpeakersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_acceptToChangeRole_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcceptToChangeRoleResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_acceptToListen_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcceptToListenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_acceptToSpeak_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcceptToSpeakResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_acquireLiveTalk_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcquireLiveTalkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_cancelToSpeak_result": [ + { + "fid": 0, + "name": "success", + "struct": "CancelToSpeakResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_fetchLiveTalkEvents_result": [ + { + "fid": 0, + "name": "success", + "struct": "FetchLiveTalkEventsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_findLiveTalkByInvitationTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "FindLiveTalkByInvitationTicketResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_forceEndLiveTalk_result": [ + { + "fid": 0, + "name": "success", + "struct": "ForceEndLiveTalkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getLiveTalkInfoForNonMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetLiveTalkInfoForNonMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getLiveTalkInvitationUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetLiveTalkInvitationUrlResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getLiveTalkSpeakersForNonMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetLiveTalkSpeakersForNonMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareInfoByChatMid_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareInfoByChatMidResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteToChangeRole_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteToChangeRoleResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteToListen_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteToListenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteToLiveTalk_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteToLiveTalkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteToSpeak_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteToSpeakResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_joinLiveTalk_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinLiveTalkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_kickOutLiveTalkParticipants_result": [ + { + "fid": 0, + "name": "success", + "struct": "KickOutLiveTalkParticipantsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_rejectSpeakers_result": [ + { + "fid": 0, + "name": "success", + "struct": "RejectSpeakersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_rejectToSpeak_result": [ + { + "fid": 0, + "name": "success", + "struct": "RejectToSpeakResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_removeLiveTalkSubscription_result": [ + { + "fid": 0, + "name": "success", + "struct": "RemoveLiveTalkSubscriptionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportLiveTalk_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportLiveTalkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportLiveTalkSpeaker_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportLiveTalkSpeakerResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_requestToListen_result": [ + { + "fid": 0, + "name": "success", + "struct": "RequestToListenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_requestToSpeak_result": [ + { + "fid": 0, + "name": "success", + "struct": "RequestToSpeakResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateLiveTalkAttrs_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateLiveTalkAttrsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_acceptSpeakers_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptSpeakersRequest", + }, + ], + "SquareService_acceptToChangeRole_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptToChangeRoleRequest", + }, + ], + "SquareService_acceptToListen_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptToListenRequest", + }, + ], + "SquareService_acceptToSpeak_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcceptToSpeakRequest", + }, + ], + "SquareService_acquireLiveTalk_args": [ + { + "fid": 1, + "name": "request", + "struct": "AcquireLiveTalkRequest", + }, + ], + "SquareService_cancelToSpeak_args": [ + { + "fid": 1, + "name": "request", + "struct": "CancelToSpeakRequest", + }, + ], + "SquareService_fetchLiveTalkEvents_args": [ + { + "fid": 1, + "name": "request", + "struct": "FetchLiveTalkEventsRequest", + }, + ], + "SquareService_findLiveTalkByInvitationTicket_args": [ + { + "fid": 1, + "name": "request", + "struct": "FindLiveTalkByInvitationTicketRequest", + }, + ], + "SquareService_forceEndLiveTalk_args": [ + { + "fid": 1, + "name": "request", + "struct": "ForceEndLiveTalkRequest", + }, + ], + "SquareService_getLiveTalkInfoForNonMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetLiveTalkInfoForNonMemberRequest", + }, + ], + "SquareService_getLiveTalkInvitationUrl_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetLiveTalkInvitationUrlRequest", + }, + ], + "SquareService_getLiveTalkSpeakersForNonMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetLiveTalkSpeakersForNonMemberRequest", + }, + ], + "SquareService_getSquareInfoByChatMid_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareInfoByChatMidRequest", + }, + ], + "SquareService_inviteToChangeRole_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteToChangeRoleRequest", + }, + ], + "SquareService_inviteToListen_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteToListenRequest", + }, + ], + "SquareService_inviteToLiveTalk_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteToLiveTalkRequest", + }, + ], + "SquareService_inviteToSpeak_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteToSpeakRequest", + }, + ], + "SquareService_joinLiveTalk_args": [ + { + "fid": 1, + "name": "request", + "struct": "JoinLiveTalkRequest", + }, + ], + "SquareService_kickOutLiveTalkParticipants_args": [ + { + "fid": 1, + "name": "request", + "struct": "KickOutLiveTalkParticipantsRequest", + }, + ], + "SquareService_rejectSpeakers_args": [ + { + "fid": 1, + "name": "request", + "struct": "RejectSpeakersRequest", + }, + ], + "SquareService_rejectToSpeak_args": [ + { + "fid": 1, + "name": "request", + "struct": "RejectToSpeakRequest", + }, + ], + "SquareService_removeLiveTalkSubscription_args": [ + { + "fid": 1, + "name": "request", + "struct": "RemoveLiveTalkSubscriptionRequest", + }, + ], + "SquareService_reportLiveTalk_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportLiveTalkRequest", + }, + ], + "SquareService_reportLiveTalkSpeaker_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportLiveTalkSpeakerRequest", + }, + ], + "SquareService_requestToListen_args": [ + { + "fid": 1, + "name": "request", + "struct": "RequestToListenRequest", + }, + ], + "SquareService_requestToSpeak_args": [ + { + "fid": 1, + "name": "request", + "struct": "RequestToSpeakRequest", + }, + ], + "SquareService_updateLiveTalkAttrs_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateLiveTalkAttrsRequest", + }, + ], + "acquireCallRoute_args": [ + { + "fid": 2, + "name": "to", + "type": 11, + }, + { + "fid": 3, + "name": "callType", + "struct": "Pb1_D4", + }, + { + "fid": 4, + "name": "fromEnvInfo", + "map": 11, + "key": 11, + }, + ], + "acquireCallRoute_result": [ + { + "fid": 0, + "name": "success", + "struct": "CallRoute", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "acquireEncryptedAccessToken_args": [ + { + "fid": 2, + "name": "featureType", + "struct": "Pb1_EnumC13222w4", + }, + ], + "acquireEncryptedAccessToken_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "acquireGroupCallRoute_args": [ + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "mediaType", + "struct": "Pb1_EnumC13237x5", + }, + { + "fid": 4, + "name": "isInitialHost", + "type": 2, + }, + { + "fid": 5, + "name": "capabilities", + "list": 11, + }, + ], + "acquireGroupCallRoute_result": [ + { + "fid": 0, + "name": "success", + "struct": "GroupCallRoute", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "acquireOACallRoute_args": [ + { + "fid": 2, + "name": "request", + "struct": "AcquireOACallRouteRequest", + }, + ], + "acquireOACallRoute_result": [ + { + "fid": 0, + "name": "success", + "struct": "AcquireOACallRouteResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "acquirePaidCallRoute_args": [ + { + "fid": 2, + "name": "paidCallType", + "struct": "PaidCallType", + }, + { + "fid": 3, + "name": "dialedNumber", + "type": 11, + }, + { + "fid": 4, + "name": "language", + "type": 11, + }, + { + "fid": 5, + "name": "networkCode", + "type": 11, + }, + { + "fid": 6, + "name": "disableCallerId", + "type": 2, + }, + { + "fid": 7, + "name": "referer", + "type": 11, + }, + { + "fid": 8, + "name": "adSessionId", + "type": 11, + }, + ], + "acquirePaidCallRoute_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaidCallResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "activateSubscription_args": [ + { + "fid": 1, + "name": "request", + "struct": "ActivateSubscriptionRequest", + }, + ], + "activateSubscription_result": [ + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "adTypeOptOutClickEvent_args": [ + { + "fid": 1, + "name": "request", + "struct": "AdTypeOptOutClickEventRequest", + }, + ], + "adTypeOptOutClickEvent_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_C12152b", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "addFriendByMid_args": [ + { + "fid": 1, + "name": "request", + "struct": "AddFriendByMidRequest", + }, + ], + "addFriendByMid_result": [ + { + "fid": 0, + "name": "success", + "struct": "LN0_C11270b", + }, + { + "fid": 1, + "name": "be", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "ce", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + ], + "addItemToCollection_args": [ + { + "fid": 1, + "name": "request", + "struct": "AddItemToCollectionRequest", + }, + ], + "addItemToCollection_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ob1_C12608b", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "addOaFriend_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_C12155c", + }, + ], + "addOaFriend_result": [ + { + "fid": 0, + "name": "success", + "struct": "AddOaFriendResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "addProductToSubscriptionSlot_args": [ + { + "fid": 2, + "name": "req", + "struct": "AddProductToSubscriptionSlotRequest", + }, + ], + "addProductToSubscriptionSlot_result": [ + { + "fid": 0, + "name": "success", + "struct": "AddProductToSubscriptionSlotResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "addThemeToSubscriptionSlot_args": [ + { + "fid": 2, + "name": "req", + "struct": "AddThemeToSubscriptionSlotRequest", + }, + ], + "addThemeToSubscriptionSlot_result": [ + { + "fid": 0, + "name": "success", + "struct": "AddThemeToSubscriptionSlotResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "addToFollowBlacklist_args": [ + { + "fid": 2, + "name": "addToFollowBlacklistRequest", + "struct": "AddToFollowBlacklistRequest", + }, + ], + "addToFollowBlacklist_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "SquareService_agreeToTerms_result": [ + { + "fid": 0, + "name": "success", + "struct": "AgreeToTermsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_approveSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "ApproveSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_checkJoinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckJoinCodeResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_createSquareChatAnnouncement_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateSquareChatAnnouncementResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_createSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_createSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_deleteSquareChatAnnouncement_result": [ + { + "fid": 0, + "name": "success", + "struct": "DeleteSquareChatAnnouncementResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_deleteSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "DeleteSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_deleteSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "DeleteSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_destroyMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "DestroyMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_destroyMessages_result": [ + { + "fid": 0, + "name": "success", + "struct": "DestroyMessagesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_fetchMyEvents_result": [ + { + "fid": 0, + "name": "success", + "struct": "FetchMyEventsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_fetchSquareChatEvents_result": [ + { + "fid": 0, + "name": "success", + "struct": "FetchSquareChatEventsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_findSquareByEmid_result": [ + { + "fid": 0, + "name": "success", + "struct": "FindSquareByEmidResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_findSquareByInvitationTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "FindSquareByInvitationTicketResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_findSquareByInvitationTicketV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "FindSquareByInvitationTicketV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getGoogleAdOptions_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetGoogleAdOptionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getInvitationTicketUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetInvitationTicketUrlResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getJoinableSquareChats_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetJoinableSquareChatsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getJoinedSquareChats_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetJoinedSquareChatsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getJoinedSquares_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetJoinedSquaresResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getMessageReactions_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMessageReactionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getNoteStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetNoteStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getPopularKeywords_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPopularKeywordsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareAuthorities_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareAuthoritiesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareAuthority_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareAuthorityResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getCategories_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareCategoriesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatAnnouncements_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatAnnouncementsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatEmid_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatEmidResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatFeatureSet_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatFeatureSetResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareChatStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareChatStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareEmid_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareEmidResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareFeatureSet_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareFeatureSetResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareMemberRelation_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareMemberRelationResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareMemberRelations_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareMemberRelationsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareMembersBySquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareMembersBySquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareThreadMid_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareThreadMidResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getSquareThread_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareThreadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_getUserSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetUserSettingsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_hideSquareMemberContents_result": [ + { + "fid": 0, + "name": "success", + "struct": "HideSquareMemberContentsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteIntoSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteIntoSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_inviteToSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteToSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_joinSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_joinSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_joinSquareThread_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinSquareThreadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_leaveSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "LeaveSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_leaveSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "LeaveSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_leaveSquareThread_result": [ + { + "fid": 0, + "name": "success", + "struct": "LeaveSquareThreadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_manualRepair_result": [ + { + "fid": 0, + "name": "success", + "struct": "ManualRepairResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_markAsRead_result": [ + { + "fid": 0, + "name": "success", + "struct": "MarkAsReadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_markChatsAsRead_result": [ + { + "fid": 0, + "name": "success", + "struct": "MarkChatsAsReadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_markThreadsAsRead_result": [ + { + "fid": 0, + "name": "success", + "struct": "MarkThreadsAsReadResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reactToMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReactToMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_refreshSubscriptions_result": [ + { + "fid": 0, + "name": "success", + "struct": "RefreshSubscriptionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_rejectSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "RejectSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_removeSubscriptions_result": [ + { + "fid": 0, + "name": "success", + "struct": "RemoveSubscriptionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportMessageSummary_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportMessageSummaryResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportSquareMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportSquareMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportSquareMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportSquareMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_reportSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReportSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_searchSquareChatMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "SearchSquareChatMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_searchSquareChatMentionables_result": [ + { + "fid": 0, + "name": "success", + "struct": "SearchSquareChatMentionablesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_searchSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "SearchSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_searchSquares_result": [ + { + "fid": 0, + "name": "success", + "struct": "SearchSquaresResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_sendMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "SendMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_sendSquareThreadMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "SendSquareThreadMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_syncSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "SyncSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_unhideSquareMemberContents_result": [ + { + "fid": 0, + "name": "success", + "struct": "UnhideSquareMemberContentsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_unsendMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "UnsendMessageResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareAuthority_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareAuthorityResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareChatMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareChatMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareFeatureSet_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareFeatureSetResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareMemberRelation_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareMemberRelationResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareMember_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareMemberResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquareMembers_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareMembersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateSquare_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateSquareResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_updateUserSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "UpdateUserSettingsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SquareException", + }, + ], + "SquareService_agreeToTerms_args": [ + { + "fid": 1, + "name": "request", + "struct": "AgreeToTermsRequest", + }, + ], + "SquareService_approveSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "ApproveSquareMembersRequest", + }, + ], + "SquareService_checkJoinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "CheckJoinCodeRequest", + }, + ], + "SquareService_createSquareChatAnnouncement_args": [ + { + "fid": 1, + "name": "createSquareChatAnnouncementRequest", + "struct": "CreateSquareChatAnnouncementRequest", + }, + ], + "SquareService_createSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "CreateSquareChatRequest", + }, + ], + "SquareService_createSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "CreateSquareRequest", + }, + ], + "SquareService_deleteSquareChatAnnouncement_args": [ + { + "fid": 1, + "name": "deleteSquareChatAnnouncementRequest", + "struct": "DeleteSquareChatAnnouncementRequest", + }, + ], + "SquareService_deleteSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeleteSquareChatRequest", + }, + ], + "SquareService_deleteSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeleteSquareRequest", + }, + ], + "SquareService_destroyMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "DestroyMessageRequest", + }, + ], + "SquareService_destroyMessages_args": [ + { + "fid": 1, + "name": "request", + "struct": "DestroyMessagesRequest", + }, + ], + "SquareService_fetchMyEvents_args": [ + { + "fid": 1, + "name": "request", + "struct": "FetchMyEventsRequest", + }, + ], + "SquareService_fetchSquareChatEvents_args": [ + { + "fid": 1, + "name": "request", + "struct": "FetchSquareChatEventsRequest", + }, + ], + "SquareService_findSquareByEmid_args": [ + { + "fid": 1, + "name": "findSquareByEmidRequest", + "struct": "FindSquareByEmidRequest", + }, + ], + "SquareService_findSquareByInvitationTicket_args": [ + { + "fid": 1, + "name": "request", + "struct": "FindSquareByInvitationTicketRequest", + }, + ], + "SquareService_findSquareByInvitationTicketV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "FindSquareByInvitationTicketV2Request", + }, + ], + "SquareService_getGoogleAdOptions_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetGoogleAdOptionsRequest", + }, + ], + "SquareService_getInvitationTicketUrl_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetInvitationTicketUrlRequest", + }, + ], + "SquareService_getJoinableSquareChats_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetJoinableSquareChatsRequest", + }, + ], + "SquareService_getJoinedSquareChats_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetJoinedSquareChatsRequest", + }, + ], + "SquareService_getJoinedSquares_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetJoinedSquaresRequest", + }, + ], + "SquareService_getMessageReactions_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetMessageReactionsRequest", + }, + ], + "SquareService_getNoteStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetNoteStatusRequest", + }, + ], + "SquareService_getPopularKeywords_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPopularKeywordsRequest", + }, + ], + "SquareService_getSquareAuthorities_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareAuthoritiesRequest", + }, + ], + "SquareService_getSquareAuthority_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareAuthorityRequest", + }, + ], + "SquareService_getCategories_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareCategoriesRequest", + }, + ], + "SquareService_getSquareChatAnnouncements_args": [ + { + "fid": 1, + "name": "getSquareChatAnnouncementsRequest", + "struct": "GetSquareChatAnnouncementsRequest", + }, + ], + "SquareService_getSquareChatEmid_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatEmidRequest", + }, + ], + "SquareService_getSquareChatFeatureSet_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatFeatureSetRequest", + }, + ], + "SquareService_getSquareChatMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatMemberRequest", + }, + ], + "SquareService_getSquareChatMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatMembersRequest", + }, + ], + "SquareService_getSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatRequest", + }, + ], + "SquareService_getSquareChatStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareChatStatusRequest", + }, + ], + "SquareService_getSquareEmid_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareEmidRequest", + }, + ], + "SquareService_getSquareFeatureSet_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareFeatureSetRequest", + }, + ], + "SquareService_getSquareMemberRelation_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareMemberRelationRequest", + }, + ], + "SquareService_getSquareMemberRelations_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareMemberRelationsRequest", + }, + ], + "SquareService_getSquareMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareMemberRequest", + }, + ], + "SquareService_getSquareMembersBySquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareMembersBySquareRequest", + }, + ], + "SquareService_getSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareMembersRequest", + }, + ], + "SquareService_getSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareRequest", + }, + ], + "SquareService_getSquareStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareStatusRequest", + }, + ], + "SquareService_getSquareThreadMid_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareThreadMidRequest", + }, + ], + "SquareService_getSquareThread_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSquareThreadRequest", + }, + ], + "SquareService_getUserSettings_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetUserSettingsRequest", + }, + ], + "SquareService_hideSquareMemberContents_args": [ + { + "fid": 1, + "name": "request", + "struct": "HideSquareMemberContentsRequest", + }, + ], + "SquareService_inviteIntoSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteIntoSquareChatRequest", + }, + ], + "SquareService_inviteToSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteToSquareRequest", + }, + ], + "SquareService_joinSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "JoinSquareChatRequest", + }, + ], + "SquareService_joinSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "JoinSquareRequest", + }, + ], + "SquareService_joinSquareThread_args": [ + { + "fid": 1, + "name": "request", + "struct": "JoinSquareThreadRequest", + }, + ], + "SquareService_leaveSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "LeaveSquareChatRequest", + }, + ], + "SquareService_leaveSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "LeaveSquareRequest", + }, + ], + "SquareService_leaveSquareThread_args": [ + { + "fid": 1, + "name": "request", + "struct": "LeaveSquareThreadRequest", + }, + ], + "SquareService_manualRepair_args": [ + { + "fid": 1, + "name": "request", + "struct": "ManualRepairRequest", + }, + ], + "SquareService_markAsRead_args": [ + { + "fid": 1, + "name": "request", + "struct": "MarkAsReadRequest", + }, + ], + "SquareService_markChatsAsRead_args": [ + { + "fid": 1, + "name": "request", + "struct": "MarkChatsAsReadRequest", + }, + ], + "SquareService_markThreadsAsRead_args": [ + { + "fid": 1, + "name": "request", + "struct": "MarkThreadsAsReadRequest", + }, + ], + "SquareService_reactToMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReactToMessageRequest", + }, + ], + "SquareService_refreshSubscriptions_args": [ + { + "fid": 1, + "name": "request", + "struct": "RefreshSubscriptionsRequest", + }, + ], + "SquareService_rejectSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "RejectSquareMembersRequest", + }, + ], + "SquareService_removeSubscriptions_args": [ + { + "fid": 1, + "name": "request", + "struct": "RemoveSubscriptionsRequest", + }, + ], + "SquareService_reportMessageSummary_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportMessageSummaryRequest", + }, + ], + "SquareService_reportSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportSquareChatRequest", + }, + ], + "SquareService_reportSquareMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportSquareMemberRequest", + }, + ], + "SquareService_reportSquareMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportSquareMessageRequest", + }, + ], + "SquareService_reportSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportSquareRequest", + }, + ], + "SquareService_searchSquareChatMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "SearchSquareChatMembersRequest", + }, + ], + "SquareService_searchSquareChatMentionables_args": [ + { + "fid": 1, + "name": "request", + "struct": "SearchSquareChatMentionablesRequest", + }, + ], + "SquareService_searchSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "SearchSquareMembersRequest", + }, + ], + "SquareService_searchSquares_args": [ + { + "fid": 1, + "name": "request", + "struct": "SearchSquaresRequest", + }, + ], + "SquareService_sendMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "SendMessageRequest", + }, + ], + "SquareService_sendSquareThreadMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "SendSquareThreadMessageRequest", + }, + ], + "SquareService_syncSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "SyncSquareMembersRequest", + }, + ], + "SquareService_unhideSquareMemberContents_args": [ + { + "fid": 1, + "name": "request", + "struct": "UnhideSquareMemberContentsRequest", + }, + ], + "SquareService_unsendMessage_args": [ + { + "fid": 1, + "name": "request", + "struct": "UnsendMessageRequest", + }, + ], + "SquareService_updateSquareAuthority_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareAuthorityRequest", + }, + ], + "SquareService_updateSquareChatMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareChatMemberRequest", + }, + ], + "SquareService_updateSquareChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareChatRequest", + }, + ], + "SquareService_updateSquareFeatureSet_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareFeatureSetRequest", + }, + ], + "SquareService_updateSquareMemberRelation_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareMemberRelationRequest", + }, + ], + "SquareService_updateSquareMember_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareMemberRequest", + }, + ], + "SquareService_updateSquareMembers_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareMembersRequest", + }, + ], + "SquareService_updateSquare_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateSquareRequest", + }, + ], + "SquareService_updateUserSettings_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateUserSettingsRequest", + }, + ], + "approveChannelAndIssueChannelToken_args": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + ], + "approveChannelAndIssueChannelToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChannelToken", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "authenticateUsingBankAccountEx_args": [ + { + "fid": 1, + "name": "type", + "struct": "r80_EnumC34362b", + }, + { + "fid": 2, + "name": "bankId", + "type": 11, + }, + { + "fid": 3, + "name": "bankBranchId", + "type": 11, + }, + { + "fid": 4, + "name": "realAccountNo", + "type": 11, + }, + { + "fid": 5, + "name": "accountProductCode", + "struct": "r80_EnumC34361a", + }, + { + "fid": 6, + "name": "authToken", + "type": 11, + }, + ], + "authenticateUsingBankAccountEx_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaymentAuthenticationInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "authenticateWithPaak_args": [ + { + "fid": 1, + "name": "request", + "struct": "AuthenticateWithPaakRequest", + }, + ], + "authenticateWithPaak_result": [ + { + "fid": 0, + "name": "success", + "struct": "o80_C32273b", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryPwlessLoginException", + }, + ], + "blockContact_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "id", + "type": 11, + }, + ], + "blockContact_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "blockRecommendation_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "targetMid", + "type": 11, + }, + ], + "blockRecommendation_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "bulkFollow_args": [ + { + "fid": 2, + "name": "bulkFollowRequest", + "struct": "BulkFollowRequest", + }, + ], + "bulkFollow_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C12996g1", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "bulkGetSetting_args": [ + { + "fid": 2, + "name": "request", + "struct": "BulkGetRequest", + }, + ], + "bulkGetSetting_result": [ + { + "fid": 0, + "name": "success", + "struct": "s80_t80_b", + }, + { + "fid": 1, + "name": "e", + "struct": "SettingsException", + }, + ], + "bulkSetSetting_args": [ + { + "fid": 2, + "name": "request", + "struct": "s80_t80_c", + }, + ], + "bulkSetSetting_result": [ + { + "fid": 0, + "name": "success", + "struct": "s80_t80_d", + }, + { + "fid": 1, + "name": "e", + "struct": "SettingsException", + }, + ], + "buyMustbuyProduct_args": [ + { + "fid": 2, + "name": "request", + "struct": "BuyMustbuyRequest", + }, + ], + "buyMustbuyProduct_result": [ + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "canCreateCombinationSticker_args": [ + { + "fid": 2, + "name": "request", + "struct": "CanCreateCombinationStickerRequest", + }, + ], + "canCreateCombinationSticker_result": [ + { + "fid": 0, + "name": "success", + "struct": "CanCreateCombinationStickerResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "canReceivePresent_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "locale", + "struct": "Locale", + }, + { + "fid": 5, + "name": "recipientMid", + "type": 11, + }, + ], + "canReceivePresent_result": [ + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "cancelChatInvitation_args": [ + { + "fid": 1, + "name": "request", + "struct": "CancelChatInvitationRequest", + }, + ], + "cancelChatInvitation_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_U1", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "cancelPaakAuth_args": [ + { + "fid": 1, + "name": "request", + "struct": "CancelPaakAuthRequest", + }, + ], + "cancelPaakAuth_result": [ + { + "fid": 0, + "name": "success", + "struct": "o80_d", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryPwlessLoginException", + }, + ], + "cancelPaakAuthentication_args": [ + { + "fid": 1, + "name": "request", + "struct": "CancelPaakAuthenticationRequest", + }, + ], + "cancelPaakAuthentication_result": [ + { + "fid": 0, + "name": "success", + "struct": "n80_d", + }, + { + "fid": 1, + "name": "cpae", + "struct": "ChannelPaakAuthnException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "cancelPinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "CancelPinCodeRequest", + }, + ], + "cancelPinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "q80_C33650b", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryQrCodeException", + }, + ], + "cancelReaction_args": [ + { + "fid": 1, + "name": "cancelReactionRequest", + "struct": "CancelReactionRequest", + }, + ], + "cancelReaction_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "changeSubscription_args": [ + { + "fid": 2, + "name": "req", + "struct": "YN0_Ob1_r", + }, + ], + "changeSubscription_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChangeSubscriptionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "changeVerificationMethod_args": [ + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "method", + "struct": "VerificationMethod", + }, + ], + "changeVerificationMethod_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerificationSessionData", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "checkCanUnregisterEx_args": [ + { + "fid": 1, + "name": "type", + "struct": "r80_n0", + }, + ], + "checkCanUnregisterEx_result": [ + { + "fid": 0, + "name": "success", + "struct": "UnregisterAvailabilityInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "I80_C26370F": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26396d", + }, + ], + "checkEmailAssigned_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "checkEmailAssigned_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckEmailAssignedResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26371G": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26398e", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "checkIfEncryptedE2EEKeyReceived_args": [ + { + "fid": 1, + "name": "request", + "struct": "CheckIfEncryptedE2EEKeyReceivedRequest", + }, + ], + "checkIfEncryptedE2EEKeyReceived_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckIfEncryptedE2EEKeyReceivedResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PrimaryQrCodeMigrationException", + }, + ], + "I80_C26372H": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26400f", + }, + ], + "checkIfPasswordSetVerificationEmailVerified_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "checkIfPasswordSetVerificationEmailVerified_result": [ + { + "fid": 0, + "name": "success", + "struct": "T70_C14398f", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26373I": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26402g", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "checkIfPhonePinCodeMsgVerified_args": [ + { + "fid": 1, + "name": "request", + "struct": "CheckIfPhonePinCodeMsgVerifiedRequest", + }, + ], + "checkIfPhonePinCodeMsgVerified_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckIfPhonePinCodeMsgVerifiedResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "checkOperationTimeEx_args": [ + { + "fid": 1, + "name": "type", + "struct": "r80_EnumC34368h", + }, + { + "fid": 2, + "name": "lpAccountNo", + "type": 11, + }, + { + "fid": 3, + "name": "channelType", + "struct": "r80_EnumC34371k", + }, + ], + "checkOperationTimeEx_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckOperationResult", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "checkUserAgeAfterApprovalWithDocomoV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "CheckUserAgeAfterApprovalWithDocomoV2Request", + }, + ], + "checkUserAgeAfterApprovalWithDocomoV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckUserAgeAfterApprovalWithDocomoV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "checkUserAgeWithDocomoV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "CheckUserAgeWithDocomoV2Request", + }, + ], + "checkUserAgeWithDocomoV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "CheckUserAgeWithDocomoV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "checkUserAge_args": [ + { + "fid": 2, + "name": "carrier", + "struct": "CarrierCode", + }, + { + "fid": 3, + "name": "sessionId", + "type": 11, + }, + { + "fid": 4, + "name": "verifier", + "type": 11, + }, + { + "fid": 5, + "name": "standardAge", + "type": 8, + }, + ], + "checkUserAge_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_gd", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "clearRingbackTone_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "clearRingtone_args": [ + { + "fid": 1, + "name": "oid", + "type": 11, + }, + ], + "clearRingtone_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "AcceptSpeakersResponse": [], + "AcceptToChangeRoleResponse": [], + "AcceptToListenResponse": [], + "AcceptToSpeakResponse": [], + "AgreeToTermsResponse": [], + "AllNonMemberLiveTalkParticipants": [], + "CancelToSpeakResponse": [], + "DeleteSquareChatAnnouncementResponse": [], + "DeleteSquareChatResponse": [], + "DeleteSquareResponse": [], + "DestroyMessageResponse": [], + "DestroyMessagesResponse": [], + "ForceEndLiveTalkResponse": [], + "GetPopularKeywordsRequest": [], + "GetSquareCategoriesRequest": [], + "HideSquareMemberContentsResponse": [], + "InviteToChangeRoleResponse": [], + "InviteToListenResponse": [], + "InviteToLiveTalkResponse": [], + "InviteToSquareResponse": [], + "KickOutLiveTalkParticipantsResponse": [], + "LeaveSquareChatResponse": [], + "LeaveSquareResponse": [], + "LiveTalkEventPayload": [ + { + "fid": 1, + "name": "notifiedUpdateLiveTalkTitle", + "struct": "LiveTalkEventNotifiedUpdateLiveTalkTitle", + }, + { + "fid": 2, + "name": "notifiedUpdateLiveTalkAnnouncement", + "struct": "LiveTalkEventNotifiedUpdateLiveTalkAnnouncement", + }, + { + "fid": 3, + "name": "notifiedUpdateSquareMemberRole", + "struct": "LiveTalkEventNotifiedUpdateSquareMemberRole", + }, + { + "fid": 4, + "name": "notifiedUpdateLiveTalkAllowRequestToSpeak", + "struct": "LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak", + }, + { + "fid": 5, + "name": "notifiedUpdateSquareMember", + "struct": "LiveTalkEventNotifiedUpdateSquareMember", + }, + ], + "LiveTalkKickOutTarget": [ + { + "fid": 1, + "name": "liveTalkParticipant", + "struct": "LiveTalkParticipant", + }, + { + "fid": 2, + "name": "allNonMemberLiveTalkParticipants", + "struct": "AllNonMemberLiveTalkParticipants", + }, + ], + "MarkAsReadResponse": [], + "MarkChatsAsReadResponse": [], + "MarkThreadsAsReadResponse": [], + "RejectSpeakersResponse": [], + "RejectToSpeakResponse": [], + "RemoveLiveTalkSubscriptionResponse": [], + "RemoveSubscriptionsResponse": [], + "ReportLiveTalkResponse": [], + "ReportLiveTalkSpeakerResponse": [], + "ReportMessageSummaryResponse": [], + "ReportSquareChatResponse": [], + "ReportSquareMemberResponse": [], + "ReportSquareMessageResponse": [], + "ReportSquareResponse": [], + "RequestToListenResponse": [], + "RequestToSpeakResponse": [], + "SquareEventPayload": [ + { + "fid": 1, + "name": "receiveMessage", + "struct": "SquareEventReceiveMessage", + }, + { + "fid": 2, + "name": "sendMessage", + "struct": "SquareEventSendMessage", + }, + { + "fid": 3, + "name": "notifiedJoinSquareChat", + "struct": "SquareEventNotifiedJoinSquareChat", + }, + { + "fid": 4, + "name": "notifiedInviteIntoSquareChat", + "struct": "SquareEventNotifiedInviteIntoSquareChat", + }, + { + "fid": 5, + "name": "notifiedLeaveSquareChat", + "struct": "SquareEventNotifiedLeaveSquareChat", + }, + { + "fid": 6, + "name": "notifiedDestroyMessage", + "struct": "SquareEventNotifiedDestroyMessage", + }, + { + "fid": 7, + "name": "notifiedMarkAsRead", + "struct": "SquareEventNotifiedMarkAsRead", + }, + { + "fid": 8, + "name": "notifiedUpdateSquareMemberProfile", + "struct": "SquareEventNotifiedUpdateSquareMemberProfile", + }, + { + "fid": 9, + "name": "notifiedUpdateSquare", + "struct": "SquareEventNotifiedUpdateSquare", + }, + { + "fid": 10, + "name": "notifiedUpdateSquareMember", + "struct": "SquareEventNotifiedUpdateSquareMember", + }, + { + "fid": 11, + "name": "notifiedUpdateSquareChat", + "struct": "SquareEventNotifiedUpdateSquareChat", + }, + { + "fid": 12, + "name": "notifiedUpdateSquareChatMember", + "struct": "SquareEventNotifiedUpdateSquareChatMember", + }, + { + "fid": 13, + "name": "notifiedUpdateSquareAuthority", + "struct": "SquareEventNotifiedUpdateSquareAuthority", + }, + { + "fid": 14, + "name": "notifiedUpdateSquareStatus", + "struct": "SquareEventNotifiedUpdateSquareStatus", + }, + { + "fid": 15, + "name": "notifiedUpdateSquareChatStatus", + "struct": "SquareEventNotifiedUpdateSquareChatStatus", + }, + { + "fid": 16, + "name": "notifiedCreateSquareMember", + "struct": "SquareEventNotifiedCreateSquareMember", + }, + { + "fid": 17, + "name": "notifiedCreateSquareChatMember", + "struct": "SquareEventNotifiedCreateSquareChatMember", + }, + { + "fid": 18, + "name": "notifiedUpdateSquareMemberRelation", + "struct": "SquareEventNotifiedUpdateSquareMemberRelation", + }, + { + "fid": 19, + "name": "notifiedShutdownSquare", + "struct": "SquareEventNotifiedShutdownSquare", + }, + { + "fid": 20, + "name": "notifiedKickoutFromSquare", + "struct": "SquareEventNotifiedKickoutFromSquare", + }, + { + "fid": 21, + "name": "notifiedDeleteSquareChat", + "struct": "SquareEventNotifiedDeleteSquareChat", + }, + { + "fid": 22, + "name": "notificationJoinRequest", + "struct": "SquareEventNotificationJoinRequest", + }, + { + "fid": 23, + "name": "notificationJoined", + "struct": "SquareEventNotificationMemberUpdate", + }, + { + "fid": 24, + "name": "notificationPromoteCoadmin", + "struct": "SquareEventNotificationMemberUpdate", + }, + { + "fid": 25, + "name": "notificationPromoteAdmin", + "struct": "SquareEventNotificationMemberUpdate", + }, + { + "fid": 26, + "name": "notificationDemoteMember", + "struct": "SquareEventNotificationMemberUpdate", + }, + { + "fid": 27, + "name": "notificationKickedOut", + "struct": "SquareEventNotificationMemberUpdate", + }, + { + "fid": 28, + "name": "notificationSquareDelete", + "struct": "SquareEventNotificationSquareDelete", + }, + { + "fid": 29, + "name": "notificationSquareChatDelete", + "struct": "SquareEventNotificationSquareChatDelete", + }, + { + "fid": 30, + "name": "notificationMessage", + "struct": "SquareEventNotificationMessage", + }, + { + "fid": 31, + "name": "notifiedUpdateSquareChatProfileName", + "struct": "SquareEventNotifiedUpdateSquareChatProfileName", + }, + { + "fid": 32, + "name": "notifiedUpdateSquareChatProfileImage", + "struct": "SquareEventNotifiedUpdateSquareChatProfileImage", + }, + { + "fid": 33, + "name": "notifiedUpdateSquareFeatureSet", + "struct": "SquareEventNotifiedUpdateSquareFeatureSet", + }, + { + "fid": 34, + "name": "notifiedAddBot", + "struct": "SquareEventNotifiedAddBot", + }, + { + "fid": 35, + "name": "notifiedRemoveBot", + "struct": "SquareEventNotifiedRemoveBot", + }, + { + "fid": 36, + "name": "notifiedUpdateSquareNoteStatus", + "struct": "SquareEventNotifiedUpdateSquareNoteStatus", + }, + { + "fid": 37, + "name": "notifiedUpdateSquareChatAnnouncement", + "struct": "SquareEventNotifiedUpdateSquareChatAnnouncement", + }, + { + "fid": 38, + "name": "notifiedUpdateSquareChatMaxMemberCount", + "struct": "SquareEventNotifiedUpdateSquareChatMaxMemberCount", + }, + { + "fid": 39, + "name": "notificationPostAnnouncement", + "struct": "SquareEventNotificationPostAnnouncement", + }, + { + "fid": 40, + "name": "notificationPost", + "struct": "SquareEventNotificationPost", + }, + { + "fid": 41, + "name": "mutateMessage", + "struct": "SquareEventMutateMessage", + }, + { + "fid": 42, + "name": "notificationNewChatMember", + "struct": "SquareEventNotificationNewChatMember", + }, + { + "fid": 43, + "name": "notifiedUpdateReadonlyChat", + "struct": "SquareEventNotifiedUpdateReadonlyChat", + }, + { + "fid": 44, + "name": "notifiedUpdateMessageStatus", + "struct": "SquareEventNotifiedUpdateMessageStatus", + }, + { + "fid": 45, + "name": "notificationMessageReaction", + "struct": "SquareEventNotificationMessageReaction", + }, + { + "fid": 46, + "name": "chatPopup", + "struct": "SquareEventChatPopup", + }, + { + "fid": 47, + "name": "notifiedSystemMessage", + "struct": "SquareEventNotifiedSystemMessage", + }, + { + "fid": 48, + "name": "notifiedUpdateSquareChatFeatureSet", + "struct": "SquareEventNotifiedUpdateSquareChatFeatureSet", + }, + { + "fid": 49, + "name": "notifiedUpdateLiveTalkInfo", + "struct": "SquareEventNotifiedUpdateLiveTalkInfo", + }, + { + "fid": 50, + "name": "notifiedUpdateLiveTalk", + "struct": "SquareEventNotifiedUpdateLiveTalk", + }, + { + "fid": 51, + "name": "notificationLiveTalk", + "struct": "SquareEventNotificationLiveTalk", + }, + { + "fid": 52, + "name": "notificationThreadMessage", + "struct": "SquareEventNotificationThreadMessage", + }, + { + "fid": 53, + "name": "notificationThreadMessageReaction", + "struct": "SquareEventNotificationThreadMessageReaction", + }, + { + "fid": 54, + "name": "notifiedUpdateThread", + "struct": "SquareEventNotifiedUpdateThread", + }, + { + "fid": 55, + "name": "notifiedUpdateThreadStatus", + "struct": "SquareEventNotifiedUpdateThreadStatus", + }, + { + "fid": 56, + "name": "notifiedUpdateThreadMember", + "struct": "SquareEventNotifiedUpdateThreadMember", + }, + { + "fid": 57, + "name": "notifiedUpdateThreadRootMessage", + "struct": "SquareEventNotifiedUpdateThreadRootMessage", + }, + { + "fid": 58, + "name": "notifiedUpdateThreadRootMessageStatus", + "struct": "SquareEventNotifiedUpdateThreadRootMessageStatus", + }, + ], + "UnhideSquareMemberContentsResponse": [], + "UpdateLiveTalkAttrsResponse": [], + "UpdateUserSettingsResponse": [], + "ButtonBGColor": [ + { + "fid": 1, + "name": "custom", + "struct": "CustomColor", + }, + { + "fid": 2, + "name": "defaultGradient", + "struct": "DefaultGradientColor", + }, + ], + "ButtonContent": [ + { + "fid": 1, + "name": "urlButton", + "struct": "UrlButton", + }, + { + "fid": 2, + "name": "textButton", + "struct": "TextButton", + }, + { + "fid": 3, + "name": "okButton", + "struct": "OkButton", + }, + ], + "DefaultGradientColor": [], + "ErrorExtraInfo": [ + { + "fid": 1, + "name": "preconditionFailedExtraInfo", + "type": 8, + }, + { + "fid": 2, + "name": "userRestrictionInfo", + "struct": "UserRestrictionExtraInfo", + }, + { + "fid": 3, + "name": "tryAgainLaterExtraInfo", + "struct": "TryAgainLaterExtraInfo", + }, + { + "fid": 4, + "name": "liveTalkExtraInfo", + "struct": "LiveTalkExtraInfo", + }, + { + "fid": 5, + "name": "termsAgreementExtraInfo", + "struct": "TermsAgreementExtraInfo", + }, + ], + "Mentionable": [ + { + "fid": 1, + "name": "squareMember", + "struct": "MentionableSquareMember", + }, + { + "fid": 2, + "name": "bot", + "struct": "MentionableBot", + }, + ], + "MessageStatusContents": [ + { + "fid": 1, + "name": "messageReactionStatus", + "struct": "_any", + }, + ], + "SquareActivityScore": [ + { + "fid": 1, + "name": "cleanScore", + "struct": "_any", + }, + ], + "SquareChatAnnouncementContents": [ + { + "fid": 1, + "name": "textMessageAnnouncementContents", + "struct": "TextMessageAnnouncementContents", + }, + ], + "TargetChats": [ + { + "fid": 1, + "name": "mids", + "set": 11, + }, + { + "fid": 2, + "name": "categories", + "set": 11, + }, + { + "fid": 3, + "name": "channelId", + "type": 8, + }, + ], + "TargetUsers": [ + { + "fid": 1, + "name": "mids", + "set": 11, + }, + ], + "TermsAgreement": [ + { + "fid": 1, + "name": "aiQnABot", + "struct": "_any", + }, + ], + "confirmIdentifier_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "request", + "struct": "IdentityCredentialRequest", + }, + ], + "confirmIdentifier_result": [ + { + "fid": 0, + "name": "success", + "struct": "IdentityCredentialResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "connectEapAccount_args": [ + { + "fid": 1, + "name": "request", + "struct": "ConnectEapAccountRequest", + }, + ], + "connectEapAccount_result": [ + { + "fid": 0, + "name": "success", + "struct": "Q70_l", + }, + { + "fid": 1, + "name": "e", + "struct": "AccountEapConnectException", + }, + ], + "createChatRoomAnnouncement_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatRoomMid", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "Pb1_X2", + }, + { + "fid": 4, + "name": "contents", + "struct": "ChatRoomAnnouncementContents", + }, + ], + "createChatRoomAnnouncement_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChatRoomAnnouncement", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "createChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "CreateChatRequest", + }, + ], + "createChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateChatResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "createCollectionForUser_args": [ + { + "fid": 1, + "name": "request", + "struct": "YN0_Ob1_A", + }, + ], + "createCollectionForUser_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_B", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "createCombinationSticker_args": [ + { + "fid": 2, + "name": "request", + "struct": "YN0_Ob1_C", + }, + ], + "createCombinationSticker_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_D", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "createE2EEKeyBackupEnforced_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_C13263z3", + }, + ], + "createE2EEKeyBackupEnforced_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_B3", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "createGroupCallUrl_args": [ + { + "fid": 2, + "name": "request", + "struct": "CreateGroupCallUrlRequest", + }, + ], + "createGroupCallUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateGroupCallUrlResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "createLifetimeKeyBackup_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_E3", + }, + ], + "createLifetimeKeyBackup_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_F3", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "createMultiProfile_args": [ + { + "fid": 1, + "name": "request", + "struct": "CreateMultiProfileRequest", + }, + ], + "createMultiProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateMultiProfileResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "createRoomV2_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "contactIds", + "list": 11, + }, + ], + "createRoomV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "Room", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "createSession_args": [ + { + "fid": 1, + "name": "request", + "struct": "h80_C25643c", + }, + ], + "I80_C26365A": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26404h", + }, + ], + "createSession_result": [ + { + "fid": 0, + "name": "success", + "struct": "CreateSessionResponse", + }, + { + "fid": 1, + "name": "pqme", + "struct": "PrimaryQrCodeMigrationException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "I80_C26366B": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26406i", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "decryptFollowEMid_args": [ + { + "fid": 2, + "name": "eMid", + "type": 11, + }, + ], + "decryptFollowEMid_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "deleteE2EEKeyBackup_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_H3", + }, + ], + "deleteE2EEKeyBackup_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_I3", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "deleteGroupCallUrl_args": [ + { + "fid": 2, + "name": "request", + "struct": "DeleteGroupCallUrlRequest", + }, + ], + "deleteGroupCallUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_K3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "deleteMultiProfile_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeleteMultiProfileRequest", + }, + ], + "deleteMultiProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "gN0_C25147d", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "deleteOtherFromChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeleteOtherFromChatRequest", + }, + ], + "deleteOtherFromChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_M3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "deletePrimaryCredential_args": [ + { + "fid": 1, + "name": "request", + "struct": "R70_c", + }, + ], + "deletePrimaryCredential_result": [ + { + "fid": 0, + "name": "success", + "struct": "R70_d", + }, + { + "fid": 1, + "name": "e", + "struct": "PwlessCredentialException", + }, + ], + "deleteSafetyStatus_args": [ + { + "fid": 1, + "name": "req", + "struct": "DeleteSafetyStatusRequest", + }, + ], + "deleteSafetyStatus_result": [ + { + "fid": 1, + "name": "e", + "struct": "vh_Fg_b", + }, + ], + "deleteSelfFromChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeleteSelfFromChatRequest", + }, + ], + "deleteSelfFromChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_O3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "determineMediaMessageFlow_args": [ + { + "fid": 1, + "name": "request", + "struct": "DetermineMediaMessageFlowRequest", + }, + ], + "determineMediaMessageFlow_result": [ + { + "fid": 0, + "name": "success", + "struct": "DetermineMediaMessageFlowResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "disableNearby_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "disconnectEapAccount_args": [ + { + "fid": 1, + "name": "request", + "struct": "DisconnectEapAccountRequest", + }, + ], + "disconnectEapAccount_result": [ + { + "fid": 0, + "name": "success", + "struct": "Q70_o", + }, + { + "fid": 1, + "name": "e", + "struct": "AccountEapConnectException", + }, + ], + "do0_C23138A": [ + { + "fid": 1, + "name": "connectDevice", + "struct": "ConnectDeviceOperation", + }, + { + "fid": 2, + "name": "executeOnetimeScenario", + "struct": "ExecuteOnetimeScenarioOperation", + }, + ], + "do0_C23141D": [ + { + "fid": 1, + "name": "gattRead", + "struct": "GattReadAction", + }, + { + "fid": 2, + "name": "gattWrite", + "struct": "do0_C23158p", + }, + { + "fid": 3, + "name": "sleep", + "struct": "SleepAction", + }, + { + "fid": 4, + "name": "disconnect", + "struct": "do0_C23153k", + }, + { + "fid": 5, + "name": "stopNotification", + "struct": "StopNotificationAction", + }, + ], + "do0_C23142E": [ + { + "fid": 1, + "name": "voidResult", + "struct": "do0_m0", + }, + { + "fid": 2, + "name": "binaryResult", + "struct": "do0_C23143a", + }, + ], + "do0_C23143a": [ + { + "fid": 1, + "name": "bytes", + "type": 11, + }, + ], + "do0_C23152j": [], + "do0_C23153k": [], + "do0_C23158p": [ + { + "fid": 1, + "name": "serviceUuid", + "type": 11, + }, + { + "fid": 2, + "name": "characteristicUuid", + "type": 11, + }, + { + "fid": 3, + "name": "data", + "type": 11, + }, + ], + "do0_C23161t": [], + "do0_C23165x": [], + "do0_C23167z": [], + "do0_F": [ + { + "fid": 1, + "name": "scenarioId", + "type": 11, + }, + { + "fid": 2, + "name": "deviceId", + "type": 11, + }, + { + "fid": 3, + "name": "revision", + "type": 10, + }, + { + "fid": 4, + "name": "startTime", + "type": 10, + }, + { + "fid": 5, + "name": "endTime", + "type": 10, + }, + { + "fid": 6, + "name": "code", + "struct": "do0_G", + }, + { + "fid": 7, + "name": "errorReason", + "type": 11, + }, + { + "fid": 8, + "name": "bleNotificationPayload", + "type": 11, + }, + { + "fid": 9, + "name": "actionResults", + "list": "do0_C23142E", + }, + { + "fid": 10, + "name": "connectionId", + "type": 11, + }, + ], + "do0_I": [ + { + "fid": 1, + "name": "immediate", + "struct": "do0_C23161t", + }, + { + "fid": 2, + "name": "bleNotificationReceived", + "struct": "BleNotificationReceivedTrigger", + }, + ], + "do0_V": [], + "do0_X": [], + "do0_m0": [], + "editItemsInCollection_args": [ + { + "fid": 1, + "name": "request", + "struct": "YN0_Ob1_F", + }, + ], + "editItemsInCollection_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_G", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "enablePointForOneTimeKey_args": [ + { + "fid": 1, + "name": "usePoint", + "type": 2, + }, + ], + "enablePointForOneTimeKey_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "establishE2EESession_args": [ + { + "fid": 1, + "name": "request", + "struct": "YN0_Ob1_J", + }, + ], + "establishE2EESession_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_K", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "existPinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "S70_b", + }, + ], + "existPinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "ExistPinCodeResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondAuthFactorPinCodeException", + }, + ], + "fN0_C24471c": [], + "fN0_C24473e": [], + "fN0_C24475g": [], + "fN0_C24476h": [], + "fetchOperations_args": [ + { + "fid": 1, + "name": "request", + "struct": "FetchOperationsRequest", + }, + ], + "fetchOperations_result": [ + { + "fid": 0, + "name": "success", + "struct": "FetchOperationsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "fetchPhonePinCodeMsg_args": [ + { + "fid": 1, + "name": "request", + "struct": "FetchPhonePinCodeMsgRequest", + }, + ], + "fetchPhonePinCodeMsg_result": [ + { + "fid": 0, + "name": "success", + "struct": "FetchPhonePinCodeMsgResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "findAndAddContactByMetaTag_result": [ + { + "fid": 0, + "name": "success", + "struct": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findAndAddContactsByMid_result": [ + { + "fid": 0, + "name": "success", + "map": "Contact", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findAndAddContactsByPhone_result": [ + { + "fid": 0, + "name": "success", + "map": "Contact", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findAndAddContactsByUserid_result": [ + { + "fid": 0, + "name": "success", + "map": "Contact", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findBuddyContactsByQuery_args": [ + { + "fid": 2, + "name": "language", + "type": 11, + }, + { + "fid": 3, + "name": "country", + "type": 11, + }, + { + "fid": 4, + "name": "query", + "type": 11, + }, + { + "fid": 5, + "name": "fromIndex", + "type": 8, + }, + { + "fid": 6, + "name": "count", + "type": 8, + }, + { + "fid": 7, + "name": "requestSource", + "struct": "Pb1_F0", + }, + ], + "findBuddyContactsByQuery_result": [ + { + "fid": 0, + "name": "success", + "list": "BuddySearchResult", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findChatByTicket_args": [ + { + "fid": 1, + "name": "request", + "struct": "FindChatByTicketRequest", + }, + ], + "findChatByTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "FindChatByTicketResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findContactByUserTicket_args": [ + { + "fid": 2, + "name": "ticketIdWithTag", + "type": 11, + }, + ], + "findContactByUserTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findContactByUserid_args": [ + { + "fid": 2, + "name": "searchId", + "type": 11, + }, + ], + "findContactByUserid_result": [ + { + "fid": 0, + "name": "success", + "struct": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "findContactsByPhone_args": [ + { + "fid": 2, + "name": "phones", + "set": 11, + }, + ], + "findContactsByPhone_result": [ + { + "fid": 0, + "name": "success", + "map": "Contact", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "finishUpdateVerification_args": [ + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "finishUpdateVerification_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "follow_args": [ + { + "fid": 2, + "name": "followRequest", + "struct": "FollowRequest", + }, + ], + "follow_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "gN0_C25143G": [], + "gN0_C25147d": [], + "generateUserTicket_args": [ + { + "fid": 3, + "name": "expirationTime", + "type": 10, + }, + { + "fid": 4, + "name": "maxUseCount", + "type": 8, + }, + ], + "generateUserTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ticket", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getAccessToken_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetAccessTokenRequest", + }, + ], + "getAccessToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAccessTokenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getAccountBalanceAsync_args": [ + { + "fid": 1, + "name": "requestToken", + "type": 11, + }, + { + "fid": 2, + "name": "accountId", + "type": 11, + }, + ], + "getAccountBalanceAsync_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "I80_C26374J": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26410k", + }, + ], + "getAcctVerifMethod_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "getAcctVerifMethod_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAcctVerifMethodResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26375K": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26412l", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getAllChatMids_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetAllChatMidsRequest", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getAllChatMids_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAllChatMidsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getAllContactIds_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getAllContactIds_result": [ + { + "fid": 0, + "name": "success", + "list": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getAllowedRegistrationMethod_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "countryCode", + "type": 11, + }, + ], + "getAllowedRegistrationMethod_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAllowedRegistrationMethodResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "getAnalyticsInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "AnalyticsInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getApprovedChannels_args": [ + { + "fid": 2, + "name": "lastSynced", + "type": 10, + }, + { + "fid": 3, + "name": "locale", + "type": 11, + }, + ], + "getApprovedChannels_result": [ + { + "fid": 0, + "name": "success", + "struct": "ApprovedChannelInfos", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getAssertionChallenge_args": [ + { + "fid": 1, + "name": "request", + "struct": "m80_l", + }, + ], + "getAssertionChallenge_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAssertionChallengeResponse", + }, + { + "fid": 1, + "name": "deviceAttestationException", + "struct": "m80_b", + }, + { + "fid": 2, + "name": "attestationRequiredException", + "struct": "m80_C30146a", + }, + ], + "getAttestationChallenge_args": [ + { + "fid": 1, + "name": "request", + "struct": "m80_n", + }, + ], + "getAttestationChallenge_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetAttestationChallengeResponse", + }, + { + "fid": 1, + "name": "deviceAttestationException", + "struct": "m80_b", + }, + ], + "getAuthRSAKey_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "identityProvider", + "struct": "IdentityProvider", + }, + ], + "getAuthRSAKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "RSAKey", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getAuthorsLatestProducts_args": [ + { + "fid": 2, + "name": "latestProductsByAuthorRequest", + "struct": "LatestProductsByAuthorRequest", + }, + ], + "getAuthorsLatestProducts_result": [ + { + "fid": 0, + "name": "success", + "struct": "LatestProductsByAuthorResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getAutoSuggestionShowcase_args": [ + { + "fid": 2, + "name": "autoSuggestionShowcaseRequest", + "struct": "AutoSuggestionShowcaseRequest", + }, + ], + "getAutoSuggestionShowcase_result": [ + { + "fid": 0, + "name": "success", + "struct": "AutoSuggestionShowcaseResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getBalanceSummaryV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_C12208u", + }, + ], + "getBalanceSummaryV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetBalanceSummaryResponseV2", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getBalanceSummaryV4WithPayV3_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_C12214w", + }, + ], + "getBalanceSummaryV4WithPayV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetBalanceSummaryV4WithPayV3Response", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getBalance_args": [ + { + "fid": 1, + "name": "request", + "struct": "ZQ0_b", + }, + ], + "getBalance_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetBalanceResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PointException", + }, + ], + "getBankBranches_args": [ + { + "fid": 1, + "name": "financialCorpId", + "type": 11, + }, + { + "fid": 2, + "name": "query", + "type": 11, + }, + { + "fid": 3, + "name": "startNum", + "type": 8, + }, + { + "fid": 4, + "name": "count", + "type": 8, + }, + ], + "getBankBranches_result": [ + { + "fid": 0, + "name": "success", + "list": "BankBranchInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "getBanners_args": [ + { + "fid": 1, + "name": "request", + "struct": "BannerRequest", + }, + ], + "getBanners_result": [ + { + "fid": 0, + "name": "success", + "struct": "BannerResponse", + }, + ], + "getBirthdayEffect_args": [ + { + "fid": 1, + "name": "req", + "struct": "Eh_C8933a", + }, + ], + "getBirthdayEffect_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetBirthdayEffectResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Eh_Fg_b", + }, + ], + "getBleDevice_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetBleDeviceRequest", + }, + ], + "getBleDevice_result": [ + { + "fid": 0, + "name": "success", + "struct": "ThingsDevice", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "getBleProducts_result": [ + { + "fid": 0, + "name": "success", + "list": "BleProduct", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "getBlockedContactIds_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getBlockedContactIds_result": [ + { + "fid": 0, + "name": "success", + "list": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBlockedRecommendationIds_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getBlockedRecommendationIds_result": [ + { + "fid": 0, + "name": "success", + "list": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBrowsingHistory_args": [ + { + "fid": 2, + "name": "getBrowsingHistoryRequest", + "struct": "YN0_Ob1_L", + }, + ], + "getBrowsingHistory_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_M", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getBuddyChatBarV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetBuddyChatBarRequest", + }, + ], + "getBuddyChatBarV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "BuddyChatBar", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBuddyDetailWithPersonal_args": [ + { + "fid": 1, + "name": "buddyMid", + "type": 11, + }, + { + "fid": 2, + "name": "attributeSet", + "set": "Pb1_D0", + }, + ], + "getBuddyDetailWithPersonal_result": [ + { + "fid": 0, + "name": "success", + "struct": "BuddyDetailWithPersonal", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBuddyDetail_args": [ + { + "fid": 4, + "name": "buddyMid", + "type": 11, + }, + ], + "getBuddyDetail_result": [ + { + "fid": 0, + "name": "success", + "struct": "BuddyDetail", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBuddyLive_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetBuddyLiveRequest", + }, + ], + "getBuddyLive_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetBuddyLiveResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBuddyOnAir_args": [ + { + "fid": 4, + "name": "buddyMid", + "type": 11, + }, + ], + "getBuddyOnAir_result": [ + { + "fid": 0, + "name": "success", + "struct": "BuddyOnAir", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getBuddyStatusBarV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetBuddyStatusBarV2Request", + }, + ], + "getBuddyStatusBarV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "BuddyStatusBar", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getCallStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetCallStatusRequest", + }, + ], + "getCallStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCallStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "OaChatException", + }, + ], + "getCampaign_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetCampaignRequest", + }, + ], + "getCampaign_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCampaignResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getChallengeForPaakAuth_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetChallengeForPaakAuthRequest", + }, + ], + "getChallengeForPaakAuth_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetChallengeForPaakAuthResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryPwlessLoginException", + }, + ], + "getChallengeForPrimaryReg_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetChallengeForPrimaryRegRequest", + }, + ], + "getChallengeForPrimaryReg_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetChallengeForPrimaryRegResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PwlessCredentialException", + }, + ], + "getChannelContext_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetChannelContextRequest", + }, + ], + "getChannelContext_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetChannelContextResponse", + }, + { + "fid": 1, + "name": "cpae", + "struct": "ChannelPaakAuthnException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "getChannelInfo_args": [ + { + "fid": 2, + "name": "channelId", + "type": 11, + }, + { + "fid": 3, + "name": "locale", + "type": 11, + }, + ], + "getChannelInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChannelInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getChannelNotificationSettings_args": [ + { + "fid": 1, + "name": "locale", + "type": 11, + }, + ], + "getChannelNotificationSettings_result": [ + { + "fid": 0, + "name": "success", + "list": "ChannelNotificationSetting", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getChannelSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChannelSettings", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getChatEffectMetaList_args": [ + { + "fid": 1, + "name": "categories", + "set": "Pb1_Q2", + }, + ], + "getChatEffectMetaList_result": [ + { + "fid": 0, + "name": "success", + "list": "ChatEffectMeta", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getChatRoomAnnouncementsBulk_args": [ + { + "fid": 2, + "name": "chatRoomMids", + "list": 11, + }, + { + "fid": 3, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getChatRoomAnnouncementsBulk_result": [ + { + "fid": 0, + "name": "success", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getChatRoomAnnouncements_args": [ + { + "fid": 2, + "name": "chatRoomMid", + "type": 11, + }, + ], + "getChatRoomAnnouncements_result": [ + { + "fid": 0, + "name": "success", + "list": "ChatRoomAnnouncement", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getChatRoomBGMs_args": [ + { + "fid": 2, + "name": "chatRoomMids", + "set": 11, + }, + { + "fid": 3, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getChatRoomBGMs_result": [ + { + "fid": 0, + "name": "success", + "map": "ChatRoomBGM", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getChatapp_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetChatappRequest", + }, + ], + "getChatapp_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetChatappResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ChatappException", + }, + ], + "getChats_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetChatsRequest", + }, + { + "fid": 2, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getChats_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetChatsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getCoinProducts_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetCoinProductsRequest", + }, + ], + "getCoinProducts_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCoinProductsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CoinException", + }, + ], + "getCoinPurchaseHistory_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetCoinHistoryRequest", + }, + ], + "getCoinPurchaseHistory_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCoinHistoryResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CoinException", + }, + ], + "getCoinUseAndRefundHistory_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetCoinHistoryRequest", + }, + ], + "getCoinUseAndRefundHistory_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCoinHistoryResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CoinException", + }, + ], + "getCommonDomains_args": [ + { + "fid": 1, + "name": "lastSynced", + "type": 10, + }, + ], + "getCommonDomains_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChannelDomains", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getConfigurations_args": [ + { + "fid": 2, + "name": "revision", + "type": 10, + }, + { + "fid": 3, + "name": "regionOfUsim", + "type": 11, + }, + { + "fid": 4, + "name": "regionOfTelephone", + "type": 11, + }, + { + "fid": 5, + "name": "regionOfLocale", + "type": 11, + }, + { + "fid": 6, + "name": "carrier", + "type": 11, + }, + { + "fid": 7, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getConfigurations_result": [ + { + "fid": 0, + "name": "success", + "struct": "Configurations", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getContactCalendarEvents_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetContactCalendarEventsRequest", + }, + ], + "getContactCalendarEvents_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetContactCalendarEventsResponse", + }, + { + "fid": 1, + "name": "re", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "sfe", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + { + "fid": 4, + "name": "ere", + "struct": "ExcessiveRequestItemException", + }, + ], + "getContact_result": [ + { + "fid": 0, + "name": "success", + "struct": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getContactsV3_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetContactsV3Request", + }, + ], + "getContactsV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetContactsV3Response", + }, + { + "fid": 1, + "name": "be", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "ce", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + { + "fid": 4, + "name": "ere", + "struct": "ExcessiveRequestItemException", + }, + ], + "getContacts_result": [ + { + "fid": 0, + "name": "success", + "list": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getCountries_args": [ + { + "fid": 2, + "name": "countryGroup", + "struct": "Pb1_EnumC13221w3", + }, + ], + "getCountries_result": [ + { + "fid": 0, + "name": "success", + "set": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "I80_C26376L": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26413m", + }, + ], + "getCountryInfo_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 11, + "name": "simCard", + "struct": "SimCard", + }, + ], + "getCountryInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetCountryInfoResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26377M": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26414n", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getCountryWithRequestIp_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getDataRetention_args": [ + { + "fid": 1, + "name": "req", + "struct": "fN0_C24473e", + }, + ], + "getDataRetention_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPremiumDataRetentionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "getDestinationUrl_args": [ + { + "fid": 1, + "name": "request", + "struct": "DestinationLIFFRequest", + }, + ], + "getDestinationUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "DestinationLIFFResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + ], + "getDisasterCases_args": [ + { + "fid": 1, + "name": "req", + "struct": "vh_C37633d", + }, + ], + "getDisasterCases_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetDisasterCasesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "vh_Fg_b", + }, + ], + "getE2EEGroupSharedKey_args": [ + { + "fid": 2, + "name": "keyVersion", + "type": 8, + }, + { + "fid": 3, + "name": "chatMid", + "type": 11, + }, + { + "fid": 4, + "name": "groupKeyId", + "type": 8, + }, + ], + "getE2EEGroupSharedKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_U3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getE2EEKeyBackupCertificates_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_W4", + }, + ], + "getE2EEKeyBackupCertificates_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetE2EEKeyBackupCertificatesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "getE2EEKeyBackupInfo_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_Y4", + }, + ], + "getE2EEKeyBackupInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetE2EEKeyBackupInfoResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "getE2EEPublicKey_args": [ + { + "fid": 2, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "keyVersion", + "type": 8, + }, + { + "fid": 4, + "name": "keyId", + "type": 8, + }, + ], + "getE2EEPublicKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C13097n4", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getE2EEPublicKeys_result": [ + { + "fid": 0, + "name": "success", + "list": "Pb1_C13097n4", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getEncryptedIdentityV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C12916a5", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getExchangeKey_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetExchangeKeyRequest", + }, + ], + "getExchangeKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetExchangeKeyResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryPwlessLoginException", + }, + ], + "getExtendedProfile_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getExtendedProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "ExtendedProfile", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getFollowBlacklist_args": [ + { + "fid": 2, + "name": "getFollowBlacklistRequest", + "struct": "GetFollowBlacklistRequest", + }, + ], + "getFollowBlacklist_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetFollowBlacklistResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getFollowers_args": [ + { + "fid": 2, + "name": "getFollowersRequest", + "struct": "GetFollowersRequest", + }, + ], + "getFollowers_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetFollowersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getFollowings_args": [ + { + "fid": 2, + "name": "getFollowingsRequest", + "struct": "GetFollowingsRequest", + }, + ], + "getFollowings_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetFollowingsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getFontMetas_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetFontMetasRequest", + }, + ], + "getFontMetas_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetFontMetasResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getFriendDetails_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetFriendDetailsRequest", + }, + ], + "getFriendDetails_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetFriendDetailsResponse", + }, + { + "fid": 1, + "name": "re", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "sfe", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + { + "fid": 4, + "name": "ere", + "struct": "ExcessiveRequestItemException", + }, + ], + "getFriendRequests_args": [ + { + "fid": 1, + "name": "direction", + "struct": "Pb1_F4", + }, + { + "fid": 2, + "name": "lastSeenSeqId", + "type": 10, + }, + ], + "getFriendRequests_result": [ + { + "fid": 0, + "name": "success", + "list": "FriendRequest", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getGnbBadgeStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetGnbBadgeStatusRequest", + }, + ], + "getGnbBadgeStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetGnbBadgeStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getGroupCallUrlInfo_args": [ + { + "fid": 2, + "name": "request", + "struct": "GetGroupCallUrlInfoRequest", + }, + ], + "getGroupCallUrlInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetGroupCallUrlInfoResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getGroupCallUrls_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_C13042j5", + }, + ], + "getGroupCallUrls_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetGroupCallUrlsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getGroupCall_args": [ + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + ], + "getGroupCall_result": [ + { + "fid": 0, + "name": "success", + "struct": "GroupCall", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getHomeFlexContent_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetHomeFlexContentRequest", + }, + ], + "getHomeFlexContent_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetHomeFlexContentResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Dg_Fg_b", + }, + ], + "getHomeServiceList_args": [ + { + "fid": 1, + "name": "request", + "struct": "Eg_C8928b", + }, + ], + "getHomeServiceList_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetHomeServiceListResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Eg_Fg_b", + }, + ], + "getHomeServices_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetHomeServicesRequest", + }, + ], + "getHomeServices_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetHomeServicesResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Eg_Fg_b", + }, + ], + "getIncentiveStatus_args": [ + { + "fid": 1, + "name": "req", + "struct": "fN0_C24471c", + }, + ], + "getIncentiveStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetIncentiveStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "getInstantNews_args": [ + { + "fid": 1, + "name": "region", + "type": 11, + }, + { + "fid": 2, + "name": "location", + "struct": "Location", + }, + ], + "getInstantNews_result": [ + { + "fid": 0, + "name": "success", + "list": "InstantNews", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getJoinedMembershipByBotMid_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetJoinedMembershipByBotMidRequest", + }, + ], + "getJoinedMembershipByBotMid_result": [ + { + "fid": 0, + "name": "success", + "struct": "MemberInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "getJoinedMembership_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetJoinedMembershipRequest", + }, + ], + "getJoinedMembership_result": [ + { + "fid": 0, + "name": "success", + "struct": "MemberInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "getJoinedMemberships_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinedMemberships", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "getKeyBackupCertificatesV2_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_C13070l5", + }, + ], + "getKeyBackupCertificatesV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetKeyBackupCertificatesV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "getLFLSuggestion_args": [ + { + "fid": 1, + "name": "request", + "struct": "AR0_b", + }, + ], + "getLFLSuggestion_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetLFLSuggestionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "LFLPremiumException", + }, + ], + "getLastE2EEGroupSharedKey_args": [ + { + "fid": 2, + "name": "keyVersion", + "type": 8, + }, + { + "fid": 3, + "name": "chatMid", + "type": 11, + }, + ], + "getLastE2EEGroupSharedKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_U3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getLastE2EEPublicKeys_args": [ + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + ], + "getLastE2EEPublicKeys_result": [ + { + "fid": 0, + "name": "success", + "map": "Pb1_C13097n4", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getLastOpRevision_result": [ + { + "fid": 0, + "name": "success", + "type": 10, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getLiffViewWithoutUserContext_args": [ + { + "fid": 1, + "name": "request", + "struct": "LiffViewWithoutUserContextRequest", + }, + ], + "getLiffViewWithoutUserContext_result": [ + { + "fid": 0, + "name": "success", + "struct": "LiffViewResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "getLineCardIssueForm_args": [ + { + "fid": 1, + "name": "resolutionType", + "struct": "r80_EnumC34372l", + }, + ], + "getLineCardIssueForm_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaymentLineCardIssueForm", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "getLinkedDevices_result": [ + { + "fid": 0, + "name": "success", + "list": "UserDevice", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "getLoginActorContext_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetLoginActorContextRequest", + }, + ], + "getLoginActorContext_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetLoginActorContextResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryQrCodeException", + }, + ], + "getMappedProfileIds_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetMappedProfileIdsRequest", + }, + ], + "getMappedProfileIds_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMappedProfileIdsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "I80_C26378N": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26415o", + }, + ], + "getMaskedEmail_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "getMaskedEmail_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMaskedEmailResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26379O": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26416p", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getMessageBoxes_args": [ + { + "fid": 2, + "name": "messageBoxListRequest", + "struct": "MessageBoxListRequest", + }, + { + "fid": 3, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getMessageBoxes_result": [ + { + "fid": 0, + "name": "success", + "struct": "MessageBoxList", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getMessageReadRange_args": [ + { + "fid": 2, + "name": "chatIds", + "list": 11, + }, + { + "fid": 3, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getMessageReadRange_result": [ + { + "fid": 0, + "name": "success", + "list": "TMessageReadRange", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getModuleLayoutV4_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetModuleLayoutV4Request", + }, + ], + "getModuleLayoutV4_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_D", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getModuleWithStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_G", + }, + ], + "getModuleWithStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_H", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getModule_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_E", + }, + ], + "getModule_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_F", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getModulesV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetModulesRequestV2", + }, + ], + "getModulesV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_K", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getModulesV3_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetModulesRequestV3", + }, + ], + "getModulesV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_K", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getModulesV4WithStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetModulesV4WithStatusRequest", + }, + ], + "getModulesV4WithStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "NZ0_M", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getMusicSubscriptionStatus_args": [ + { + "fid": 2, + "name": "request", + "struct": "YN0_Ob1_N", + }, + ], + "getMusicSubscriptionStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_O", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getMyAssetInformationV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetMyAssetInformationV2Request", + }, + ], + "getMyAssetInformationV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMyAssetInformationV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getMyChatapps_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetMyChatappsRequest", + }, + ], + "getMyChatapps_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMyChatappsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ChatappException", + }, + ], + "getMyDashboard_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetMyDashboardRequest", + }, + ], + "getMyDashboard_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetMyDashboardResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getNewlyReleasedBuddyIds_args": [ + { + "fid": 3, + "name": "country", + "type": 11, + }, + ], + "getNewlyReleasedBuddyIds_result": [ + { + "fid": 0, + "name": "success", + "map": 10, + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getNotificationSettings_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetNotificationSettingsRequest", + }, + ], + "getNotificationSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetNotificationSettingsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getOwnedProductSummaries_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "locale", + "struct": "Locale", + }, + ], + "getOwnedProductSummaries_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_N0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getPasswordHashingParameter_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPasswordHashingParametersRequest", + }, + ], + "getPasswordHashingParameter_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPasswordHashingParametersResponse", + }, + { + "fid": 1, + "name": "pue", + "struct": "PasswordUpdateException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "getPasswordHashingParametersForPwdReg_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPasswordHashingParametersForPwdRegRequest", + }, + ], + "I80_C26380P": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26417q", + }, + ], + "getPasswordHashingParametersForPwdReg_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPasswordHashingParametersForPwdRegResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26381Q": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26418r", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getPasswordHashingParametersForPwdVerif_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPasswordHashingParametersForPwdVerifRequest", + }, + ], + "I80_C26382S": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26419s", + }, + ], + "getPasswordHashingParametersForPwdVerif_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPasswordHashingParametersForPwdVerifResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26383T": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26420t", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getPaymentUrlByKey_args": [ + { + "fid": 1, + "name": "key", + "type": 11, + }, + ], + "getPaymentUrlByKey_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "getPendingAgreements_result": [ + { + "fid": 0, + "name": "success", + "struct": "PendingAgreementsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getPhoneVerifMethodForRegistration_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPhoneVerifMethodForRegistrationRequest", + }, + ], + "getPhoneVerifMethodForRegistration_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPhoneVerifMethodForRegistrationResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "getPhoneVerifMethodV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPhoneVerifMethodV2Request", + }, + ], + "I80_C26384U": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26421u", + }, + ], + "getPhoneVerifMethodV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPhoneVerifMethodV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26385V": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26422v", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getPhotoboothBalance_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_C13126p5", + }, + ], + "getPhotoboothBalance_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPhotoboothBalanceResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getPredefinedScenarioSets_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPredefinedScenarioSetsRequest", + }, + ], + "getPredefinedScenarioSets_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPredefinedScenarioSetsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "getPrefetchableBanners_args": [ + { + "fid": 1, + "name": "request", + "struct": "BannerRequest", + }, + ], + "getPrefetchableBanners_result": [ + { + "fid": 0, + "name": "success", + "struct": "BannerResponse", + }, + ], + "getPremiumStatusForUpgrade_args": [ + { + "fid": 1, + "name": "req", + "struct": "fN0_C24475g", + }, + ], + "getPremiumStatusForUpgrade_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPremiumStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "getPremiumStatus_args": [ + { + "fid": 1, + "name": "req", + "struct": "fN0_C24476h", + }, + ], + "getPremiumStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetPremiumStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "getPreviousMessagesV2WithRequest_args": [ + { + "fid": 2, + "name": "request", + "struct": "GetPreviousMessagesV2Request", + }, + { + "fid": 3, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getPreviousMessagesV2WithRequest_result": [ + { + "fid": 0, + "name": "success", + "list": "Message", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getProductByVersion_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "productVersion", + "type": 10, + }, + { + "fid": 5, + "name": "locale", + "struct": "Locale", + }, + ], + "getProductByVersion_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_E0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProductLatestVersionForUser_args": [ + { + "fid": 2, + "name": "request", + "struct": "YN0_Ob1_P", + }, + ], + "getProductLatestVersionForUser_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_Q", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProductSummariesInSubscriptionSlots_args": [ + { + "fid": 2, + "name": "req", + "struct": "YN0_Ob1_U", + }, + ], + "getProductSummariesInSubscriptionSlots_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_V", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProductV2_args": [ + { + "fid": 2, + "name": "request", + "struct": "YN0_Ob1_S", + }, + ], + "getProductV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_T", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProductValidationScheme_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "productVersion", + "type": 10, + }, + ], + "getProductValidationScheme_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_S0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProductsByAuthor_args": [ + { + "fid": 2, + "name": "productListByAuthorRequest", + "struct": "YN0_Ob1_G0", + }, + ], + "getProductsByAuthor_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_F0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getProfile_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "Profile", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getPromotedBuddyContacts_args": [ + { + "fid": 2, + "name": "language", + "type": 11, + }, + { + "fid": 3, + "name": "country", + "type": 11, + }, + ], + "getPromotedBuddyContacts_result": [ + { + "fid": 0, + "name": "success", + "list": "Contact", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getPublishedMemberships_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetPublishedMembershipsRequest", + }, + ], + "getPublishedMemberships_result": [ + { + "fid": 0, + "name": "success", + "list": "Membership", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "getPurchaseEnabledStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "PurchaseEnabledRequest", + }, + ], + "getPurchaseEnabledStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "og_I", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "getPurchasedProducts_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "locale", + "struct": "Locale", + }, + ], + "getPurchasedProducts_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseRecordList", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getQuickMenu_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_S", + }, + ], + "getQuickMenu_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetQuickMenuResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getRSAKeyInfo_result": [ + { + "fid": 0, + "name": "success", + "struct": "RSAKey", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getReceivedPresents_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "locale", + "struct": "Locale", + }, + ], + "getReceivedPresents_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseRecordList", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getRecentFriendRequests_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getRecentFriendRequests_result": [ + { + "fid": 0, + "name": "success", + "struct": "FriendRequestsInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getRecommendationDetails_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetRecommendationDetailsRequest", + }, + ], + "getRecommendationDetails_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetRecommendationDetailsResponse", + }, + { + "fid": 1, + "name": "re", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "sfe", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + { + "fid": 4, + "name": "ere", + "struct": "ExcessiveRequestItemException", + }, + ], + "getRecommendationIds_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getRecommendationIds_result": [ + { + "fid": 0, + "name": "success", + "list": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getRecommendationList_args": [ + { + "fid": 2, + "name": "getRecommendationRequest", + "struct": "YN0_Ob1_W", + }, + ], + "getRecommendationList_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSuggestTrialRecommendationResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "SuggestTrialException", + }, + ], + "getRepairElements_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetRepairElementsRequest", + }, + ], + "getRepairElements_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetRepairElementsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getRequiredAgreements_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaymentRequiredAgreementsInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "getResourceFile_args": [ + { + "fid": 2, + "name": "req", + "struct": "YN0_Ob1_Z", + }, + ], + "getResourceFile_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_Y", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getResponseStatus_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetResponseStatusRequest", + }, + ], + "getResponseStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetResponseStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "OaChatException", + }, + ], + "getReturnUrlWithRequestTokenForAutoLogin_args": [ + { + "fid": 2, + "name": "webLoginRequest", + "struct": "WebLoginRequest", + }, + ], + "getReturnUrlWithRequestTokenForAutoLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "WebLoginResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getReturnUrlWithRequestTokenForMultiLiffLogin_args": [ + { + "fid": 1, + "name": "request", + "struct": "LiffWebLoginRequest", + }, + ], + "getReturnUrlWithRequestTokenForMultiLiffLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "LiffWebLoginResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "channelException", + "struct": "LiffChannelException", + }, + { + "fid": 3, + "name": "talkException", + "struct": "TalkException", + }, + ], + "getRingbackTone_result": [ + { + "fid": 0, + "name": "success", + "struct": "RingbackTone", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getRingtone_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ringtone", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getRoomsV2_args": [ + { + "fid": 2, + "name": "roomIds", + "list": 11, + }, + ], + "getRoomsV2_result": [ + { + "fid": 0, + "name": "success", + "list": "Room", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getSCC_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSCCRequest", + }, + ], + "getSCC_result": [ + { + "fid": 0, + "name": "success", + "struct": "SCC", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "I80_C26386W": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C26423w", + }, + ], + "I80_C26387X": [ + { + "fid": 0, + "name": "success", + "struct": "I80_C26424x", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "getSeasonalEffects_args": [ + { + "fid": 1, + "name": "req", + "struct": "Eh_C8935c", + }, + ], + "getSeasonalEffects_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSeasonalEffectsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Eh_Fg_b", + }, + ], + "getSecondAuthMethod_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "getSecondAuthMethod_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSecondAuthMethodResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "getSentPresents_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "offset", + "type": 8, + }, + { + "fid": 4, + "name": "limit", + "type": 8, + }, + { + "fid": 5, + "name": "locale", + "struct": "Locale", + }, + ], + "getSentPresents_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseRecordList", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getServerTime_result": [ + { + "fid": 0, + "name": "success", + "type": 10, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getServiceShortcutMenu_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_U", + }, + ], + "getServiceShortcutMenu_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetServiceShortcutMenuResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getSessionContentBeforeMigCompletion_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "getSessionContentBeforeMigCompletion_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSessionContentBeforeMigCompletionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "getSettingsAttributes2_args": [ + { + "fid": 2, + "name": "attributesToRetrieve", + "set": "SettingsAttributeEx", + }, + ], + "getSettingsAttributes2_result": [ + { + "fid": 0, + "name": "success", + "struct": "Settings", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getSettingsAttributes_result": [ + { + "fid": 0, + "name": "success", + "struct": "Settings", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getSettings_args": [ + { + "fid": 1, + "name": "syncReason", + "struct": "Pb1_V7", + }, + ], + "getSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "Settings", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getSmartChannelRecommendations_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetSmartChannelRecommendationsRequest", + }, + ], + "getSmartChannelRecommendations_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSmartChannelRecommendationsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getSquareBot_args": [ + { + "fid": 1, + "name": "req", + "struct": "GetSquareBotRequest", + }, + ], + "getSquareBot_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSquareBotResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "BotException", + }, + ], + "getStudentInformation_args": [ + { + "fid": 2, + "name": "req", + "struct": "Ob1_C12606a0", + }, + ], + "getStudentInformation_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetStudentInformationResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getSubscriptionPlans_args": [ + { + "fid": 2, + "name": "req", + "struct": "GetSubscriptionPlansRequest", + }, + ], + "getSubscriptionPlans_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSubscriptionPlansResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getSubscriptionSlotHistory_args": [ + { + "fid": 2, + "name": "req", + "struct": "Ob1_C12618e0", + }, + ], + "getSubscriptionSlotHistory_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ob1_C12621f0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getSubscriptionStatus_args": [ + { + "fid": 2, + "name": "req", + "struct": "GetSubscriptionStatusRequest", + }, + ], + "getSubscriptionStatus_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSubscriptionStatusResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getSuggestDictionarySetting_args": [ + { + "fid": 2, + "name": "req", + "struct": "Ob1_C12630i0", + }, + ], + "getSuggestDictionarySetting_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSuggestDictionarySettingResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getSuggestResourcesV2_args": [ + { + "fid": 2, + "name": "req", + "struct": "GetSuggestResourcesV2Request", + }, + ], + "getSuggestResourcesV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetSuggestResourcesV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "getTaiwanBankBalance_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetTaiwanBankBalanceRequest", + }, + ], + "getTaiwanBankBalance_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetTaiwanBankBalanceResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getTargetProfiles_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetTargetProfilesRequest", + }, + ], + "getTargetProfiles_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetTargetProfilesResponse", + }, + { + "fid": 1, + "name": "re", + "struct": "RejectedException", + }, + { + "fid": 2, + "name": "sfe", + "struct": "ServerFailureException", + }, + { + "fid": 3, + "name": "te", + "struct": "TalkException", + }, + { + "fid": 4, + "name": "ere", + "struct": "ExcessiveRequestItemException", + }, + ], + "getTargetingPopup_args": [ + { + "fid": 1, + "name": "request", + "struct": "NZ0_C12150a0", + }, + ], + "getTargetingPopup_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetTargetingPopupResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getThaiBankBalance_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetThaiBankBalanceRequest", + }, + ], + "getThaiBankBalance_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetThaiBankBalanceResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "getTotalCoinBalance_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetTotalCoinBalanceRequest", + }, + ], + "getTotalCoinBalance_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetTotalCoinBalanceResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CoinException", + }, + ], + "getUpdatedChannelIds_args": [ + { + "fid": 1, + "name": "channelIds", + "list": "ChannelIdWithLastUpdated", + }, + ], + "getUpdatedChannelIds_result": [ + { + "fid": 0, + "name": "success", + "list": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "getUserCollections_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetUserCollectionsRequest", + }, + ], + "getUserCollections_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetUserCollectionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "getUserProfile_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "getUserProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetUserProfileResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "getUserVector_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetUserVectorRequest", + }, + ], + "getUserVector_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetUserVectorResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "LFLPremiumException", + }, + ], + "getUsersMappedByProfile_args": [ + { + "fid": 1, + "name": "request", + "struct": "GetUsersMappedByProfileRequest", + }, + ], + "getUsersMappedByProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "GetUsersMappedByProfileResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "getWebLoginDisallowedUrlForMultiLiffLogin_args": [ + { + "fid": 1, + "name": "request", + "struct": "LiffWebLoginRequest", + }, + ], + "getWebLoginDisallowedUrlForMultiLiffLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "LiffWebLoginResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "channelException", + "struct": "LiffChannelException", + }, + { + "fid": 3, + "name": "talkException", + "struct": "TalkException", + }, + ], + "getWebLoginDisallowedUrl_args": [ + { + "fid": 2, + "name": "webLoginRequest", + "struct": "WebLoginRequest", + }, + ], + "getWebLoginDisallowedUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "WebLoginResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "h80_C25643c": [], + "h80_t": [ + { + "fid": 1, + "name": "newDevicePublicKey", + "type": 11, + }, + { + "fid": 2, + "name": "encryptedQrIdentifier", + "type": 11, + }, + ], + "h80_v": [], + "I80_A0": [], + "I80_C26398e": [], + "I80_C26404h": [], + "I80_F0": [], + "I80_r0": [], + "I80_v0": [], + "inviteFriends_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteFriendsRequest", + }, + ], + "inviteFriends_result": [ + { + "fid": 0, + "name": "success", + "struct": "InviteFriendsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "inviteIntoChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "InviteIntoChatRequest", + }, + ], + "inviteIntoChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_J5", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "inviteIntoGroupCall_args": [ + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "memberMids", + "list": 11, + }, + { + "fid": 4, + "name": "mediaType", + "struct": "Pb1_EnumC13237x5", + }, + ], + "inviteIntoGroupCall_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "inviteIntoRoom_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "roomId", + "type": 11, + }, + { + "fid": 3, + "name": "contactIds", + "list": 11, + }, + ], + "inviteIntoRoom_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "isProductForCollections_args": [ + { + "fid": 1, + "name": "request", + "struct": "IsProductForCollectionsRequest", + }, + ], + "isProductForCollections_result": [ + { + "fid": 0, + "name": "success", + "struct": "IsProductForCollectionsResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "isStickerAvailableForCombinationSticker_args": [ + { + "fid": 2, + "name": "request", + "struct": "IsStickerAvailableForCombinationStickerRequest", + }, + ], + "isStickerAvailableForCombinationSticker_result": [ + { + "fid": 0, + "name": "success", + "struct": "IsStickerAvailableForCombinationStickerResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "isUseridAvailable_args": [ + { + "fid": 2, + "name": "searchId", + "type": 11, + }, + ], + "isUseridAvailable_result": [ + { + "fid": 0, + "name": "success", + "type": 2, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "issueChannelToken_args": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + ], + "issueChannelToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChannelToken", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "issueLiffView_args": [ + { + "fid": 1, + "name": "request", + "struct": "LiffViewRequest", + }, + ], + "issueLiffView_result": [ + { + "fid": 0, + "name": "success", + "struct": "LiffViewResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "issueNonce_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "issueRequestTokenWithAuthScheme_args": [ + { + "fid": 1, + "name": "channelId", + "type": 11, + }, + { + "fid": 2, + "name": "otpId", + "type": 11, + }, + { + "fid": 3, + "name": "authScheme", + "list": 11, + }, + { + "fid": 4, + "name": "returnUrl", + "type": 11, + }, + ], + "issueRequestTokenWithAuthScheme_result": [ + { + "fid": 0, + "name": "success", + "struct": "RequestTokenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "issueSubLiffView_args": [ + { + "fid": 1, + "name": "request", + "struct": "LiffViewRequest", + }, + ], + "issueSubLiffView_result": [ + { + "fid": 0, + "name": "success", + "struct": "LiffViewResponse", + }, + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "issueTokenForAccountMigrationSettings_args": [ + { + "fid": 2, + "name": "enforce", + "type": 2, + }, + ], + "issueTokenForAccountMigrationSettings_result": [ + { + "fid": 0, + "name": "success", + "struct": "SecurityCenterResult", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "issueToken_args": [ + { + "fid": 1, + "name": "request", + "struct": "IssueBirthdayGiftTokenRequest", + }, + ], + "issueToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "IssueBirthdayGiftTokenResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "Cg_Fg_b", + }, + ], + "issueV3TokenForPrimary_args": [ + { + "fid": 1, + "name": "request", + "struct": "IssueV3TokenForPrimaryRequest", + }, + ], + "issueV3TokenForPrimary_result": [ + { + "fid": 0, + "name": "success", + "struct": "IssueV3TokenForPrimaryResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "issueWebAuthDetailsForSecondAuth_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "issueWebAuthDetailsForSecondAuth_result": [ + { + "fid": 0, + "name": "success", + "struct": "IssueWebAuthDetailsForSecondAuthResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "joinChatByCallUrl_args": [ + { + "fid": 2, + "name": "request", + "struct": "JoinChatByCallUrlRequest", + }, + ], + "joinChatByCallUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "JoinChatByCallUrlResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "jp_naver_line_shop_protocol_thrift_ProductProperty": [], + "kf_i": [], + "kf_k": [], + "kf_m": [ + { + "fid": 1, + "name": "richmenu", + "struct": "RichmenuEvent", + }, + { + "fid": 2, + "name": "talkroom", + "struct": "TalkroomEvent", + }, + ], + "kf_w": [ + { + "fid": 1, + "name": "profileRefererContent", + "struct": "_any", + }, + ], + "kickoutFromGroupCall_args": [ + { + "fid": 2, + "name": "kickoutFromGroupCallRequest", + "struct": "KickoutFromGroupCallRequest", + }, + ], + "kickoutFromGroupCall_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_S5", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "leaveRoom_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "roomId", + "type": 11, + }, + ], + "leaveRoom_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "linkDevice_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeviceLinkRequest", + }, + ], + "linkDevice_result": [ + { + "fid": 0, + "name": "success", + "struct": "DeviceLinkResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "logoutV2_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "lookupAvailableEap_args": [ + { + "fid": 1, + "name": "request", + "struct": "LookupAvailableEapRequest", + }, + ], + "lookupAvailableEap_result": [ + { + "fid": 0, + "name": "success", + "struct": "LookupAvailableEapResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "lookupPaidCall_args": [ + { + "fid": 2, + "name": "dialedNumber", + "type": 11, + }, + { + "fid": 3, + "name": "language", + "type": 11, + }, + { + "fid": 4, + "name": "referer", + "type": 11, + }, + ], + "lookupPaidCall_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaidCallResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "m80_l": [], + "m80_n": [], + "m80_q": [], + "m80_s": [], + "mapProfileToUsers_args": [ + { + "fid": 1, + "name": "request", + "struct": "MapProfileToUsersRequest", + }, + ], + "mapProfileToUsers_result": [ + { + "fid": 0, + "name": "success", + "struct": "MapProfileToUsersResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "migratePrimaryUsingEapAccountWithTokenV3_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "migratePrimaryUsingEapAccountWithTokenV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "MigratePrimaryWithTokenV3Response", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "migratePrimaryUsingPhoneWithTokenV3_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "migratePrimaryUsingPhoneWithTokenV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "MigratePrimaryWithTokenV3Response", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "migratePrimaryUsingQrCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "MigratePrimaryUsingQrCodeRequest", + }, + ], + "migratePrimaryUsingQrCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "MigratePrimaryUsingQrCodeResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PrimaryQrCodeMigrationException", + }, + ], + "n80_C31222b": [], + "n80_d": [], + "negotiateE2EEPublicKey_args": [ + { + "fid": 2, + "name": "mid", + "type": 11, + }, + ], + "negotiateE2EEPublicKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "E2EENegotiationResult", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "noop_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyBannerShowing_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyBannerTapped_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyBeaconDetected_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyChatAdEntry_args": [ + { + "fid": 1, + "name": "request", + "struct": "NotifyChatAdEntryRequest", + }, + ], + "notifyChatAdEntry_result": [ + { + "fid": 0, + "name": "success", + "struct": "kf_i", + }, + { + "fid": 1, + "name": "e", + "struct": "BotExternalException", + }, + ], + "notifyDeviceConnection_args": [ + { + "fid": 1, + "name": "request", + "struct": "NotifyDeviceConnectionRequest", + }, + ], + "notifyDeviceConnection_result": [ + { + "fid": 0, + "name": "success", + "struct": "NotifyDeviceConnectionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "notifyDeviceDisconnection_args": [ + { + "fid": 1, + "name": "request", + "struct": "NotifyDeviceDisconnectionRequest", + }, + ], + "notifyDeviceDisconnection_result": [ + { + "fid": 0, + "name": "success", + "struct": "do0_C23165x", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "notifyInstalled_args": [ + { + "fid": 2, + "name": "udidHash", + "type": 11, + }, + { + "fid": 3, + "name": "applicationTypeWithExtensions", + "type": 11, + }, + ], + "notifyInstalled_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyOATalkroomEvents_args": [ + { + "fid": 1, + "name": "request", + "struct": "NotifyOATalkroomEventsRequest", + }, + ], + "notifyOATalkroomEvents_result": [ + { + "fid": 0, + "name": "success", + "struct": "kf_k", + }, + { + "fid": 1, + "name": "e", + "struct": "BotExternalException", + }, + ], + "notifyProductEvent_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "productVersion", + "type": 10, + }, + { + "fid": 5, + "name": "productEvent", + "type": 10, + }, + ], + "notifyProductEvent_result": [ + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "notifyRegistrationComplete_args": [ + { + "fid": 2, + "name": "udidHash", + "type": 11, + }, + { + "fid": 3, + "name": "applicationTypeWithExtensions", + "type": 11, + }, + ], + "notifyRegistrationComplete_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyScenarioExecuted_args": [ + { + "fid": 1, + "name": "request", + "struct": "NotifyScenarioExecutedRequest", + }, + ], + "notifyScenarioExecuted_result": [ + { + "fid": 0, + "name": "success", + "struct": "do0_C23167z", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "notifySleep_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "notifyUpdated_args": [ + { + "fid": 2, + "name": "lastRev", + "type": 10, + }, + { + "fid": 3, + "name": "deviceInfo", + "struct": "DeviceInfo", + }, + { + "fid": 4, + "name": "udidHash", + "type": 11, + }, + { + "fid": 5, + "name": "oldUdidHash", + "type": 11, + }, + ], + "notifyUpdated_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "o80_C32273b": [], + "o80_d": [], + "o80_m": [], + "og_u": [], + "openAuthSession_args": [ + { + "fid": 2, + "name": "request", + "struct": "AuthSessionRequest", + }, + ], + "openAuthSession_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "openProximityMatch_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "openSession_args": [ + { + "fid": 1, + "name": "request", + "struct": "OpenSessionRequest", + }, + ], + "openSession_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "permitLogin_args": [ + { + "fid": 1, + "name": "request", + "struct": "PermitLoginRequest", + }, + ], + "permitLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "PermitLoginResponse", + }, + { + "fid": 1, + "name": "sle", + "struct": "SeamlessLoginException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "placePurchaseOrderForFreeProduct_args": [ + { + "fid": 2, + "name": "purchaseOrder", + "struct": "PurchaseOrder", + }, + ], + "placePurchaseOrderForFreeProduct_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseOrderResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "placePurchaseOrderWithLineCoin_args": [ + { + "fid": 2, + "name": "purchaseOrder", + "struct": "PurchaseOrder", + }, + ], + "placePurchaseOrderWithLineCoin_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseOrderResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "postPopupButtonEvents_args": [ + { + "fid": 1, + "name": "buttonId", + "type": 11, + }, + { + "fid": 2, + "name": "checkboxes", + "map": 2, + "key": 11, + }, + ], + "postPopupButtonEvents_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "purchaseSubscription_args": [ + { + "fid": 2, + "name": "req", + "struct": "PurchaseSubscriptionRequest", + }, + ], + "purchaseSubscription_result": [ + { + "fid": 0, + "name": "success", + "struct": "PurchaseSubscriptionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "putE2eeKey_args": [ + { + "fid": 1, + "name": "request", + "struct": "PutE2eeKeyRequest", + }, + ], + "putE2eeKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "o80_m", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryPwlessLoginException", + }, + ], + "q80_C33650b": [], + "q80_q": [], + "q80_s": [], + "qm_C34110c": [ + { + "fid": 1, + "name": "inFriends", + "type": 11, + }, + { + "fid": 2, + "name": "notInFriends", + "type": 11, + }, + { + "fid": 3, + "name": "termsAgreed", + "type": 2, + }, + ], + "qm_C34115h": [ + { + "fid": 1, + "name": "hwid", + "type": 11, + }, + { + "fid": 2, + "name": "secureMessage", + "type": 11, + }, + { + "fid": 3, + "name": "applicationType", + "struct": "ApplicationType", + }, + { + "fid": 4, + "name": "applicationVersion", + "type": 11, + }, + { + "fid": 5, + "name": "userSessionId", + "type": 11, + }, + { + "fid": 6, + "name": "actionId", + "type": 10, + }, + { + "fid": 7, + "name": "screen", + "type": 11, + }, + { + "fid": 8, + "name": "bannerStartedAt", + "type": 10, + }, + { + "fid": 9, + "name": "bannerShownFor", + "type": 10, + }, + ], + "qm_j": [ + { + "fid": 1, + "name": "hwid", + "type": 11, + }, + { + "fid": 2, + "name": "secureMessage", + "type": 11, + }, + { + "fid": 3, + "name": "applicationType", + "struct": "ApplicationType", + }, + { + "fid": 4, + "name": "applicationVersion", + "type": 11, + }, + { + "fid": 5, + "name": "userSessionId", + "type": 11, + }, + { + "fid": 6, + "name": "actionId", + "type": 10, + }, + { + "fid": 7, + "name": "screen", + "type": 11, + }, + { + "fid": 8, + "name": "bannerTappedAt", + "type": 10, + }, + { + "fid": 9, + "name": "beaconTermAgreed", + "type": 2, + }, + ], + "qm_l": [ + { + "fid": 1, + "name": "hwid", + "type": 11, + }, + { + "fid": 2, + "name": "secureMessage", + "type": 11, + }, + { + "fid": 3, + "name": "applicationType", + "struct": "ApplicationType", + }, + { + "fid": 4, + "name": "applicationVersion", + "type": 11, + }, + { + "fid": 5, + "name": "lang", + "type": 11, + }, + { + "fid": 6, + "name": "region", + "type": 11, + }, + { + "fid": 7, + "name": "modelName", + "type": 11, + }, + ], + "qm_o": [ + { + "fid": 1, + "name": "hwid", + "type": 11, + }, + { + "fid": 2, + "name": "secureMessage", + "type": 11, + }, + { + "fid": 3, + "name": "notificationType", + "struct": "qm_EnumC34112e", + }, + { + "fid": 4, + "name": "rssi", + "struct": "Rssi", + }, + ], + "queryBeaconActions_result": [ + { + "fid": 0, + "name": "success", + "struct": "BeaconQueryResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "r80_C34358N": [], + "r80_C34360P": [], + "react_args": [ + { + "fid": 1, + "name": "reactRequest", + "struct": "ReactRequest", + }, + ], + "react_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "refresh_args": [ + { + "fid": 1, + "name": "request", + "struct": "RefreshAccessTokenRequest", + }, + ], + "refresh_result": [ + { + "fid": 0, + "name": "success", + "struct": "RefreshAccessTokenResponse", + }, + { + "fid": 1, + "name": "accessTokenRefreshException", + "struct": "AccessTokenRefreshException", + }, + ], + "registerBarcodeAsync_args": [ + { + "fid": 1, + "name": "requestToken", + "type": 11, + }, + { + "fid": 2, + "name": "barcodeRequestId", + "type": 11, + }, + { + "fid": 3, + "name": "barcode", + "type": 11, + }, + { + "fid": 4, + "name": "password", + "struct": "RSAEncryptedPassword", + }, + ], + "registerBarcodeAsync_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "registerCampaignReward_args": [ + { + "fid": 1, + "name": "request", + "struct": "RegisterCampaignRewardRequest", + }, + ], + "registerCampaignReward_result": [ + { + "fid": 0, + "name": "success", + "struct": "RegisterCampaignRewardResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "WalletException", + }, + ], + "registerE2EEGroupKey_args": [ + { + "fid": 2, + "name": "keyVersion", + "type": 8, + }, + { + "fid": 3, + "name": "chatMid", + "type": 11, + }, + { + "fid": 4, + "name": "members", + "list": 11, + }, + { + "fid": 5, + "name": "keyIds", + "list": 8, + }, + { + "fid": 6, + "name": "encryptedSharedKeys", + "list": 11, + }, + ], + "registerE2EEGroupKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_U3", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "registerE2EEPublicKeyV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "Pb1_W6", + }, + ], + "registerE2EEPublicKeyV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "RegisterE2EEPublicKeyV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "registerE2EEPublicKey_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "publicKey", + "struct": "Pb1_C13097n4", + }, + ], + "registerE2EEPublicKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C13097n4", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "registerPrimaryCredential_args": [ + { + "fid": 1, + "name": "request", + "struct": "RegisterPrimaryCredentialRequest", + }, + ], + "registerPrimaryCredential_result": [ + { + "fid": 0, + "name": "success", + "struct": "R70_t", + }, + { + "fid": 1, + "name": "e", + "struct": "PwlessCredentialException", + }, + ], + "registerPrimaryUsingEapAccount_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + ], + "registerPrimaryUsingEapAccount_result": [ + { + "fid": 0, + "name": "success", + "struct": "RegisterPrimaryWithTokenV3Response", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "registerPrimaryUsingPhoneWithTokenV3_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + ], + "registerPrimaryUsingPhoneWithTokenV3_result": [ + { + "fid": 0, + "name": "success", + "struct": "RegisterPrimaryWithTokenV3Response", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26367C": [ + { + "fid": 1, + "name": "request", + "struct": "I80_q0", + }, + ], + "I80_C26368D": [ + { + "fid": 0, + "name": "success", + "struct": "I80_r0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "registerUserid_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "searchId", + "type": 11, + }, + ], + "registerUserid_result": [ + { + "fid": 0, + "name": "success", + "type": 2, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reissueChatTicket_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReissueChatTicketRequest", + }, + ], + "reissueChatTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReissueChatTicketResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "rejectChatInvitation_args": [ + { + "fid": 1, + "name": "request", + "struct": "RejectChatInvitationRequest", + }, + ], + "rejectChatInvitation_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C12946c7", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeAllMessages_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeChatRoomAnnouncement_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatRoomMid", + "type": 11, + }, + { + "fid": 3, + "name": "announcementSeq", + "type": 10, + }, + ], + "removeChatRoomAnnouncement_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeFollower_args": [ + { + "fid": 2, + "name": "removeFollowerRequest", + "struct": "RemoveFollowerRequest", + }, + ], + "removeFollower_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeFriendRequest_args": [ + { + "fid": 1, + "name": "direction", + "struct": "Pb1_F4", + }, + { + "fid": 2, + "name": "midOrEMid", + "type": 11, + }, + ], + "removeFriendRequest_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeFromFollowBlacklist_args": [ + { + "fid": 2, + "name": "removeFromFollowBlacklistRequest", + "struct": "RemoveFromFollowBlacklistRequest", + }, + ], + "removeFromFollowBlacklist_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeIdentifier_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "request", + "struct": "IdentityCredentialRequest", + }, + ], + "removeIdentifier_result": [ + { + "fid": 0, + "name": "success", + "struct": "IdentityCredentialResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "removeItemFromCollection_args": [ + { + "fid": 1, + "name": "request", + "struct": "RemoveItemFromCollectionRequest", + }, + ], + "removeItemFromCollection_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ob1_C12637k1", + }, + { + "fid": 1, + "name": "e", + "struct": "CollectionException", + }, + ], + "removeLinePayAccount_args": [ + { + "fid": 1, + "name": "accountId", + "type": 11, + }, + ], + "removeLinePayAccount_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "removeProductFromSubscriptionSlot_args": [ + { + "fid": 2, + "name": "req", + "struct": "RemoveProductFromSubscriptionSlotRequest", + }, + ], + "removeProductFromSubscriptionSlot_result": [ + { + "fid": 0, + "name": "success", + "struct": "RemoveProductFromSubscriptionSlotResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "reportAbuseEx_args": [ + { + "fid": 2, + "name": "request", + "struct": "ReportAbuseExRequest", + }, + ], + "reportAbuseEx_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C13114o7", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportDeviceState_args": [ + { + "fid": 2, + "name": "booleanState", + "map": 2, + "key": 8, + }, + { + "fid": 3, + "name": "stringState", + "map": 11, + "key": 8, + }, + ], + "reportDeviceState_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportLocation_args": [ + { + "fid": 1, + "name": "location", + "struct": "Geolocation", + }, + { + "fid": 2, + "name": "trigger", + "struct": "Pb1_EnumC12917a6", + }, + { + "fid": 3, + "name": "networkStatus", + "struct": "ClientNetworkStatus", + }, + { + "fid": 4, + "name": "measuredAt", + "type": 10, + }, + { + "fid": 6, + "name": "clientCurrentTimestamp", + "type": 10, + }, + { + "fid": 7, + "name": "debugInfo", + "struct": "LocationDebugInfo", + }, + ], + "reportLocation_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportNetworkStatus_args": [ + { + "fid": 1, + "name": "trigger", + "struct": "Pb1_EnumC12917a6", + }, + { + "fid": 2, + "name": "networkStatus", + "struct": "ClientNetworkStatus", + }, + { + "fid": 3, + "name": "measuredAt", + "type": 10, + }, + { + "fid": 4, + "name": "scanCompletionTimestamp", + "type": 10, + }, + ], + "reportNetworkStatus_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportProfile_args": [ + { + "fid": 2, + "name": "syncOpRevision", + "type": 10, + }, + { + "fid": 3, + "name": "profile", + "struct": "Profile", + }, + ], + "reportProfile_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportPushRecvReports_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "pushRecvReports", + "list": "PushRecvReport", + }, + ], + "reportPushRecvReports_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reportRefreshedAccessToken_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReportRefreshedAccessTokenRequest", + }, + ], + "reportRefreshedAccessToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "P70_k", + }, + { + "fid": 1, + "name": "accessTokenRefreshException", + "struct": "AccessTokenRefreshException", + }, + ], + "reportSettings_args": [ + { + "fid": 2, + "name": "syncOpRevision", + "type": 10, + }, + { + "fid": 3, + "name": "settings", + "struct": "Settings", + }, + ], + "reportSettings_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "requestCleanupUserProvidedData_args": [ + { + "fid": 1, + "name": "dataTypes", + "set": "Pb1_od", + }, + ], + "requestCleanupUserProvidedData_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "I80_C26388Y": [ + { + "fid": 1, + "name": "request", + "struct": "I80_u0", + }, + ], + "requestToSendPasswordSetVerificationEmail_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "email", + "type": 11, + }, + { + "fid": 3, + "name": "accountIdentifier", + "struct": "AccountIdentifier", + }, + ], + "requestToSendPasswordSetVerificationEmail_result": [ + { + "fid": 0, + "name": "success", + "struct": "RequestToSendPasswordSetVerificationEmailResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26389Z": [ + { + "fid": 0, + "name": "success", + "struct": "I80_v0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "requestToSendPhonePinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReqToSendPhonePinCodeRequest", + }, + ], + "I80_C26391a0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_s0", + }, + ], + "requestToSendPhonePinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReqToSendPhonePinCodeResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26393b0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_t0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "requestTradeNumber_args": [ + { + "fid": 1, + "name": "requestToken", + "type": 11, + }, + { + "fid": 2, + "name": "requestType", + "struct": "r80_g0", + }, + { + "fid": 3, + "name": "amount", + "type": 11, + }, + { + "fid": 4, + "name": "name", + "type": 11, + }, + ], + "requestTradeNumber_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaymentTradeInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "resendIdentifierConfirmation_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "request", + "struct": "IdentityCredentialRequest", + }, + ], + "resendIdentifierConfirmation_result": [ + { + "fid": 0, + "name": "success", + "struct": "IdentityCredentialResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "resendPinCode_args": [ + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + ], + "resendPinCode_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "reserveCoinPurchase_args": [ + { + "fid": 1, + "name": "request", + "struct": "CoinPurchaseReservation", + }, + ], + "reserveCoinPurchase_result": [ + { + "fid": 0, + "name": "success", + "struct": "PaymentReservationResult", + }, + { + "fid": 1, + "name": "e", + "struct": "CoinException", + }, + ], + "reserveSubscriptionPurchase_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReserveSubscriptionPurchaseRequest", + }, + ], + "reserveSubscriptionPurchase_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReserveSubscriptionPurchaseResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "PremiumException", + }, + ], + "reserve_args": [ + { + "fid": 1, + "name": "request", + "struct": "ReserveRequest", + }, + ], + "reserve_result": [ + { + "fid": 0, + "name": "success", + "struct": "ReserveInfo", + }, + { + "fid": 1, + "name": "e", + "struct": "MembershipException", + }, + ], + "respondE2EEKeyExchange_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "respondE2EELoginRequest_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "restoreE2EEKeyBackup_args": [ + { + "fid": 2, + "name": "request", + "struct": "Pb1_C13155r7", + }, + ], + "restoreE2EEKeyBackup_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_C13169s7", + }, + { + "fid": 1, + "name": "e", + "struct": "E2EEKeyBackupException", + }, + ], + "I80_C26395c0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_w0", + }, + ], + "I80_C26397d0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_x0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "I80_C26399e0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_w0", + }, + ], + "I80_C26401f0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_x0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "retrieveRequestTokenWithDocomoV2_args": [ + { + "fid": 1, + "name": "request", + "struct": "Pb1_C13183t7", + }, + ], + "retrieveRequestTokenWithDocomoV2_result": [ + { + "fid": 0, + "name": "success", + "struct": "RetrieveRequestTokenWithDocomoV2Response", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "retrieveRequestToken_args": [ + { + "fid": 2, + "name": "carrier", + "struct": "CarrierCode", + }, + ], + "retrieveRequestToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "AgeCheckRequestResult", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "revokeTokens_args": [ + { + "fid": 1, + "name": "request", + "struct": "RevokeTokensRequest", + }, + ], + "revokeTokens_result": [ + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "saveStudentInformation_args": [ + { + "fid": 2, + "name": "req", + "struct": "SaveStudentInformationRequest", + }, + ], + "saveStudentInformation_result": [ + { + "fid": 0, + "name": "success", + "struct": "Ob1_C12649o1", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "sendChatChecked_args": [ + { + "fid": 1, + "name": "seq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "lastMessageId", + "type": 11, + }, + { + "fid": 4, + "name": "sessionId", + "type": 3, + }, + ], + "sendChatChecked_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "sendChatRemoved_args": [ + { + "fid": 1, + "name": "seq", + "type": 8, + }, + { + "fid": 2, + "name": "chatMid", + "type": 11, + }, + { + "fid": 3, + "name": "lastMessageId", + "type": 11, + }, + { + "fid": 4, + "name": "sessionId", + "type": 3, + }, + ], + "sendChatRemoved_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "sendEncryptedE2EEKey_args": [ + { + "fid": 1, + "name": "request", + "struct": "SendEncryptedE2EEKeyRequest", + }, + ], + "sendEncryptedE2EEKey_result": [ + { + "fid": 0, + "name": "success", + "struct": "h80_v", + }, + { + "fid": 1, + "name": "pqme", + "struct": "PrimaryQrCodeMigrationException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "sendMessage_args": [ + { + "fid": 1, + "name": "seq", + "type": 8, + }, + { + "fid": 2, + "name": "message", + "struct": "Message", + }, + ], + "sendMessage_result": [ + { + "fid": 0, + "name": "success", + "struct": "Message", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "sendPostback_args": [ + { + "fid": 2, + "name": "request", + "struct": "SendPostbackRequest", + }, + ], + "sendPostback_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "setChatHiddenStatus_args": [ + { + "fid": 1, + "name": "setChatHiddenStatusRequest", + "struct": "SetChatHiddenStatusRequest", + }, + ], + "setChatHiddenStatus_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "setHashedPassword_args": [ + { + "fid": 1, + "name": "request", + "struct": "SetHashedPasswordRequest", + }, + ], + "I80_C26403g0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_z0", + }, + ], + "setHashedPassword_result": [ + { + "fid": 0, + "name": "success", + "struct": "T70_g1", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_C26405h0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_A0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "setIdentifier_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "request", + "struct": "IdentityCredentialRequest", + }, + ], + "setIdentifier_result": [ + { + "fid": 0, + "name": "success", + "struct": "IdentityCredentialResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "setNotificationsEnabled_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "type", + "struct": "MIDType", + }, + { + "fid": 3, + "name": "target", + "type": 11, + }, + { + "fid": 4, + "name": "enablement", + "type": 2, + }, + ], + "setNotificationsEnabled_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "setPassword_args": [ + { + "fid": 1, + "name": "request", + "struct": "SetPasswordRequest", + }, + ], + "setPassword_result": [ + { + "fid": 0, + "name": "success", + "struct": "U70_t", + }, + { + "fid": 1, + "name": "pue", + "struct": "PasswordUpdateException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "shouldShowWelcomeStickerBanner_args": [ + { + "fid": 2, + "name": "request", + "struct": "Ob1_C12660s1", + }, + ], + "shouldShowWelcomeStickerBanner_result": [ + { + "fid": 0, + "name": "success", + "struct": "ShouldShowWelcomeStickerBannerResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "startPhotobooth_args": [ + { + "fid": 2, + "name": "request", + "struct": "StartPhotoboothRequest", + }, + ], + "startPhotobooth_result": [ + { + "fid": 0, + "name": "success", + "struct": "StartPhotoboothResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "I80_C26407i0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_C0", + }, + ], + "I80_C26409j0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_D0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "startUpdateVerification_args": [ + { + "fid": 2, + "name": "region", + "type": 11, + }, + { + "fid": 3, + "name": "carrier", + "struct": "CarrierCode", + }, + { + "fid": 4, + "name": "phone", + "type": 11, + }, + { + "fid": 5, + "name": "udidHash", + "type": 11, + }, + { + "fid": 6, + "name": "deviceInfo", + "struct": "DeviceInfo", + }, + { + "fid": 7, + "name": "networkCode", + "type": 11, + }, + { + "fid": 8, + "name": "locale", + "type": 11, + }, + { + "fid": 9, + "name": "simInfo", + "struct": "SIMInfo", + }, + ], + "startUpdateVerification_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerificationSessionData", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "stopBundleSubscription_args": [ + { + "fid": 2, + "name": "request", + "struct": "StopBundleSubscriptionRequest", + }, + ], + "stopBundleSubscription_result": [ + { + "fid": 0, + "name": "success", + "struct": "StopBundleSubscriptionResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "storeShareTargetPickerResult_args": [ + { + "fid": 1, + "name": "request", + "struct": "ShareTargetPickerResultRequest", + }, + ], + "storeShareTargetPickerResult_result": [ + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "storeSubWindowResult_args": [ + { + "fid": 1, + "name": "request", + "struct": "SubWindowResultRequest", + }, + ], + "storeSubWindowResult_result": [ + { + "fid": 1, + "name": "liffException", + "struct": "LiffException", + }, + { + "fid": 2, + "name": "talkException", + "struct": "TalkException", + }, + ], + "syncContacts_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "localContacts", + "list": "ContactModification", + }, + ], + "syncContacts_result": [ + { + "fid": 0, + "name": "success", + "map": "ContactRegistration", + "key": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "sync_args": [ + { + "fid": 1, + "name": "request", + "struct": "SyncRequest", + }, + ], + "sync_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_X7", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "t80_g": [ + { + "fid": 1, + "name": "response", + "struct": "GetResponse", + }, + { + "fid": 2, + "name": "error", + "struct": "SettingsException", + }, + ], + "t80_l": [ + { + "fid": 1, + "name": "response", + "struct": "SetResponse", + }, + { + "fid": 2, + "name": "error", + "struct": "SettingsException", + }, + ], + "t80_p": [ + { + "fid": 1, + "name": "booleanValue", + "type": 2, + }, + { + "fid": 2, + "name": "i64Value", + "type": 10, + }, + { + "fid": 3, + "name": "stringValue", + "type": 11, + }, + { + "fid": 4, + "name": "stringListValue", + "list": "_any", + }, + { + "fid": 5, + "name": "i64ListValue", + "list": "_any", + }, + { + "fid": 6, + "name": "rawJsonStringValue", + "type": 11, + }, + { + "fid": 7, + "name": "i8Value", + "type": 3, + }, + { + "fid": 8, + "name": "i16Value", + "type": 6, + }, + { + "fid": 9, + "name": "i32Value", + "type": 8, + }, + { + "fid": 10, + "name": "doubleValue", + "type": 4, + }, + { + "fid": 11, + "name": "i8ListValue", + "list": "_any", + }, + { + "fid": 12, + "name": "i16ListValue", + "list": "_any", + }, + { + "fid": 13, + "name": "i32ListValue", + "list": "_any", + }, + ], + "tryFriendRequest_args": [ + { + "fid": 1, + "name": "midOrEMid", + "type": 11, + }, + { + "fid": 2, + "name": "method", + "struct": "Pb1_G4", + }, + { + "fid": 3, + "name": "friendRequestParams", + "type": 11, + }, + ], + "tryFriendRequest_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "unblockContact_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "id", + "type": 11, + }, + { + "fid": 3, + "name": "reference", + "type": 11, + }, + ], + "unblockContact_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "unblockRecommendation_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "targetMid", + "type": 11, + }, + ], + "unblockRecommendation_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "unfollow_args": [ + { + "fid": 2, + "name": "unfollowRequest", + "struct": "UnfollowRequest", + }, + ], + "unfollow_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "unlinkDevice_args": [ + { + "fid": 1, + "name": "request", + "struct": "DeviceUnlinkRequest", + }, + ], + "unlinkDevice_result": [ + { + "fid": 0, + "name": "success", + "struct": "do0_C23152j", + }, + { + "fid": 1, + "name": "e", + "struct": "ThingsException", + }, + ], + "unregisterUserAndDevice_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "unsendMessage_args": [ + { + "fid": 1, + "name": "seq", + "type": 8, + }, + { + "fid": 2, + "name": "messageId", + "type": 11, + }, + ], + "unsendMessage_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateAndGetNearby_args": [ + { + "fid": 2, + "name": "latitude", + "type": 4, + }, + { + "fid": 3, + "name": "longitude", + "type": 4, + }, + { + "fid": 4, + "name": "accuracy", + "struct": "GeolocationAccuracy", + }, + { + "fid": 5, + "name": "networkStatus", + "struct": "ClientNetworkStatus", + }, + { + "fid": 6, + "name": "altitudeMeters", + "type": 4, + }, + { + "fid": 7, + "name": "velocityMetersPerSecond", + "type": 4, + }, + { + "fid": 8, + "name": "bearingDegrees", + "type": 4, + }, + { + "fid": 9, + "name": "measuredAtTimestamp", + "type": 10, + }, + { + "fid": 10, + "name": "clientCurrentTimestamp", + "type": 10, + }, + ], + "updateAndGetNearby_result": [ + { + "fid": 0, + "name": "success", + "list": "NearbyEntry", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateChannelNotificationSetting_args": [ + { + "fid": 1, + "name": "setting", + "list": "ChannelNotificationSetting", + }, + ], + "updateChannelNotificationSetting_result": [ + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "updateChannelSettings_args": [ + { + "fid": 1, + "name": "channelSettings", + "struct": "ChannelSettings", + }, + ], + "updateChannelSettings_result": [ + { + "fid": 0, + "name": "success", + "type": 2, + }, + { + "fid": 1, + "name": "e", + "struct": "ChannelException", + }, + ], + "updateChatRoomBGM_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "chatRoomMid", + "type": 11, + }, + { + "fid": 3, + "name": "chatRoomBGMInfo", + "type": 11, + }, + ], + "updateChatRoomBGM_result": [ + { + "fid": 0, + "name": "success", + "struct": "ChatRoomBGM", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateChat_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdateChatRequest", + }, + ], + "updateChat_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_Zc", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateContactSetting_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "mid", + "type": 11, + }, + { + "fid": 3, + "name": "flag", + "struct": "ContactSetting", + }, + { + "fid": 4, + "name": "value", + "type": 11, + }, + ], + "updateContactSetting_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateExtendedProfileAttribute_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "attr", + "struct": "Pb1_EnumC13180t4", + }, + { + "fid": 3, + "name": "extendedProfile", + "struct": "ExtendedProfile", + }, + ], + "updateExtendedProfileAttribute_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateGroupCallUrl_args": [ + { + "fid": 2, + "name": "request", + "struct": "UpdateGroupCallUrlRequest", + }, + ], + "updateGroupCallUrl_result": [ + { + "fid": 0, + "name": "success", + "struct": "Pb1_cd", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateIdentifier_args": [ + { + "fid": 2, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 3, + "name": "request", + "struct": "IdentityCredentialRequest", + }, + ], + "updateIdentifier_result": [ + { + "fid": 0, + "name": "success", + "struct": "IdentityCredentialResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateNotificationToken_args": [ + { + "fid": 2, + "name": "token", + "type": 11, + }, + { + "fid": 3, + "name": "type", + "struct": "NotificationType", + }, + ], + "updateNotificationToken_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updatePassword_args": [ + { + "fid": 1, + "name": "request", + "struct": "UpdatePasswordRequest", + }, + ], + "updatePassword_result": [ + { + "fid": 0, + "name": "success", + "struct": "U70_v", + }, + { + "fid": 1, + "name": "pue", + "struct": "PasswordUpdateException", + }, + { + "fid": 2, + "name": "tae", + "struct": "TokenAuthException", + }, + ], + "updateProfileAttribute_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateProfileAttributes_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 2, + "name": "request", + "struct": "UpdateProfileAttributesRequest", + }, + ], + "updateProfileAttributes_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateSafetyStatus_args": [ + { + "fid": 1, + "name": "req", + "struct": "UpdateSafetyStatusRequest", + }, + ], + "updateSafetyStatus_result": [ + { + "fid": 1, + "name": "e", + "struct": "vh_Fg_b", + }, + ], + "updateSettingsAttribute_result": [ + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateSettingsAttributes2_args": [ + { + "fid": 1, + "name": "reqSeq", + "type": 8, + }, + { + "fid": 3, + "name": "settings", + "struct": "Settings", + }, + { + "fid": 4, + "name": "attributesToUpdate", + "set": "SettingsAttributeEx", + }, + ], + "updateSettingsAttributes2_result": [ + { + "fid": 0, + "name": "success", + "set": 8, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "updateUserGeneralSettings_args": [ + { + "fid": 1, + "name": "settings", + "map": 11, + "key": 8, + }, + ], + "updateUserGeneralSettings_result": [ + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "usePhotoboothTicket_args": [ + { + "fid": 2, + "name": "request", + "struct": "UsePhotoboothTicketRequest", + }, + ], + "usePhotoboothTicket_result": [ + { + "fid": 0, + "name": "success", + "struct": "UsePhotoboothTicketResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "validateEligibleFriends_args": [ + { + "fid": 1, + "name": "friends", + "list": 11, + }, + { + "fid": 2, + "name": "type", + "struct": "r80_EnumC34376p", + }, + ], + "validateEligibleFriends_result": [ + { + "fid": 0, + "name": "success", + "list": "PaymentEligibleFriendStatus", + }, + { + "fid": 1, + "name": "e", + "struct": "PaymentException", + }, + ], + "validateProduct_args": [ + { + "fid": 2, + "name": "shopId", + "type": 11, + }, + { + "fid": 3, + "name": "productId", + "type": 11, + }, + { + "fid": 4, + "name": "productVersion", + "type": 10, + }, + { + "fid": 5, + "name": "validationReq", + "struct": "YN0_Ob1_Q0", + }, + ], + "validateProduct_result": [ + { + "fid": 0, + "name": "success", + "struct": "YN0_Ob1_R0", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "validateProfile_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "displayName", + "type": 11, + }, + ], + "validateProfile_result": [ + { + "fid": 0, + "name": "success", + "struct": "T70_o1", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "verifyAccountUsingHashedPwd_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyAccountUsingHashedPwdRequest", + }, + ], + "I80_C26411k0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_E0", + }, + ], + "verifyAccountUsingHashedPwd_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerifyAccountUsingHashedPwdResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_l0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_F0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "verifyAssertion_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyAssertionRequest", + }, + ], + "verifyAssertion_result": [ + { + "fid": 0, + "name": "success", + "struct": "m80_q", + }, + { + "fid": 1, + "name": "deviceAttestationException", + "struct": "m80_b", + }, + ], + "verifyAttestation_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyAttestationRequest", + }, + ], + "verifyAttestation_result": [ + { + "fid": 0, + "name": "success", + "struct": "m80_s", + }, + { + "fid": 1, + "name": "deviceAttestationException", + "struct": "m80_b", + }, + ], + "verifyBirthdayGiftAssociationToken_args": [ + { + "fid": 2, + "name": "req", + "struct": "BirthdayGiftAssociationVerifyRequest", + }, + ], + "verifyBirthdayGiftAssociationToken_result": [ + { + "fid": 0, + "name": "success", + "struct": "BirthdayGiftAssociationVerifyResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "ShopException", + }, + ], + "verifyEapAccountForRegistration_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "device", + "struct": "Device", + }, + { + "fid": 3, + "name": "socialLogin", + "struct": "SocialLogin", + }, + ], + "verifyEapAccountForRegistration_result": [ + { + "fid": 0, + "name": "success", + "struct": "T70_s1", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "verifyEapLogin_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyEapLoginRequest", + }, + ], + "I80_m0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_G0", + }, + ], + "verifyEapLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerifyEapLoginResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AccountEapConnectException", + }, + ], + "I80_n0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_H0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "verifyPhoneNumber_args": [ + { + "fid": 2, + "name": "sessionId", + "type": 11, + }, + { + "fid": 3, + "name": "pinCode", + "type": 11, + }, + { + "fid": 4, + "name": "udidHash", + "type": 11, + }, + { + "fid": 5, + "name": "migrationPincodeSessionId", + "type": 11, + }, + { + "fid": 6, + "name": "oldUdidHash", + "type": 11, + }, + ], + "verifyPhoneNumber_result": [ + { + "fid": 0, + "name": "success", + "struct": "PhoneVerificationResult", + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "verifyPhonePinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyPhonePinCodeRequest", + }, + ], + "I80_o0": [ + { + "fid": 1, + "name": "request", + "struct": "I80_I0", + }, + ], + "verifyPhonePinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerifyPhonePinCodeResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "I80_p0": [ + { + "fid": 0, + "name": "success", + "struct": "I80_J0", + }, + { + "fid": 1, + "name": "e", + "struct": "I80_C26390a", + }, + ], + "verifyPinCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyPinCodeRequest", + }, + ], + "verifyPinCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "q80_q", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryQrCodeException", + }, + ], + "verifyQrCode_args": [ + { + "fid": 1, + "name": "request", + "struct": "VerifyQrCodeRequest", + }, + ], + "verifyQrCode_result": [ + { + "fid": 0, + "name": "success", + "struct": "q80_s", + }, + { + "fid": 1, + "name": "e", + "struct": "SecondaryQrCodeException", + }, + ], + "verifyQrcodeWithE2EE_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "verifyQrcode_args": [ + { + "fid": 2, + "name": "verifier", + "type": 11, + }, + { + "fid": 3, + "name": "pinCode", + "type": 11, + }, + ], + "verifyQrcode_result": [ + { + "fid": 0, + "name": "success", + "type": 11, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "verifySocialLogin_args": [ + { + "fid": 1, + "name": "authSessionId", + "type": 11, + }, + { + "fid": 2, + "name": "device", + "struct": "Device", + }, + { + "fid": 3, + "name": "socialLogin", + "struct": "SocialLogin", + }, + ], + "verifySocialLogin_result": [ + { + "fid": 0, + "name": "success", + "struct": "VerifySocialLoginResponse", + }, + { + "fid": 1, + "name": "e", + "struct": "AuthException", + }, + ], + "vh_C37633d": [], + "wakeUpLongPolling_args": [ + { + "fid": 2, + "name": "clientRevision", + "type": 10, + }, + ], + "wakeUpLongPolling_result": [ + { + "fid": 0, + "name": "success", + "type": 2, + }, + { + "fid": 1, + "name": "e", + "struct": "TalkException", + }, + ], + "zR0_C40576a": [], + "zR0_C40580e": [ + { + "fid": 1, + "name": "sticker", + "struct": "_any", + }, + ], + "GetContactsV2Response": [ + { + "fid": 1, + "name": "contacts", + "map": "ContactEntry", + "key": 11, + }, + ], + "ContactEntry": [ + { + "fid": 1, + "name": "userStatus", + "struct": "UserStatus", + }, + { + "fid": 2, + "name": "snapshotTimeMillis", + "type": 10, + }, + { + "fid": 3, + "name": "contact", + "struct": "Contact", + }, + { + "fid": 4, + "name": "calendarEvents", + "struct": "ContactCalendarEvents", + }, + ], + "LoginResultType": { + "1": "SUCCESS", + "2": "REQUIRE_QRCODE", + "3": "REQUIRE_DEVICE_CONFIRM", + "4": "REQUIRE_SMS_CONFIRM", + }, + "LoginResult": [ + { + "fid": 1, + "name": "authToken", + "type": 11, + }, + { + "fid": 2, + "name": "certificate", + "type": 11, + }, + { + "fid": 3, + "name": "verifier", + "type": 11, + }, + { + "fid": 4, + "name": "pinCode", + "type": 11, + }, + { + "fid": 5, + "name": "type", + "struct": "LoginResultType", + }, + { + "fid": 6, + "name": "lastPrimaryBindTime", + "type": 10, + }, + { + "fid": 7, + "name": "displayMessage", + "type": 11, + }, + { + "fid": 8, + "name": "sessionForSMSConfirm", + "struct": "VerificationSessionData", + }, + ], +}; export function parseEnum(name: string, value: number | string): string | null { return (Thrift as any)[name][value] ?? null; -} \ No newline at end of file +}