From 64686f9175a92e9d92a752c8f0f167104c8681ab Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 15:58:49 +0900 Subject: [PATCH 01/25] Fix gitignore path --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From d1d8f47a1cfb672e01ea1be6c457ce61912ae06f Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 16:07:19 +0900 Subject: [PATCH 02/25] Prepare language switch --- docs/.vitepress/config.mts | 66 +++++++++++------ docs/docs/ja/auth.md | 46 ++++++++++++ docs/docs/ja/authors.md | 13 ++++ docs/docs/ja/client-options.md | 70 ++++++++++++++++++ docs/docs/ja/message-event.md | 108 +++++++++++++++++++++++++++ docs/docs/ja/methods.md | 34 +++++++++ docs/docs/ja/question.md | 5 ++ docs/docs/ja/start-2.md | 129 +++++++++++++++++++++++++++++++++ docs/docs/ja/start.md | 49 +++++++++++++ docs/docs/ja/utils.md | 83 +++++++++++++++++++++ docs/index.md | 6 ++ 11 files changed, 588 insertions(+), 21 deletions(-) create mode 100644 docs/docs/ja/auth.md create mode 100644 docs/docs/ja/authors.md create mode 100644 docs/docs/ja/client-options.md create mode 100644 docs/docs/ja/message-event.md create mode 100644 docs/docs/ja/methods.md create mode 100644 docs/docs/ja/question.md create mode 100644 docs/docs/ja/start-2.md create mode 100644 docs/docs/ja/start.md create mode 100644 docs/docs/ja/utils.md diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index b2959072..ca68877c 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -22,29 +22,53 @@ export default defineConfig({ { text: "Examples", link: "https://github.com/evex-dev/linejs/tree/main/examples", - }, + }, + { text: "English", link: "/docs/start" }, + { text: "日本語", link: "/docs/ja/start" }, ], - 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" }, + ], + }, + ], + "/docs/ja/": [ + { + text: "ドキュメント", + items: [ + { text: "はじめに", link: "/docs/ja/start" }, + { text: "次のステップ", link: "/docs/ja/start-2" }, + { text: "メッセージイベント", link: "/docs/ja/message-event" }, + { text: "オプション", link: "/docs/ja/client-options" }, + // { text: "ユーティリティ", link: "/docs/ja/utils" }, + { text: "メソッド", link: "/docs/ja/methods" }, + ], + }, + { + text: "ガイド", + items: [ + { text: "作成者", link: "/docs/ja/authors" }, + { text: "質問", link: "/docs/ja/question" }, + ], + }, + ], + }, editLink: { pattern: "https://github.com/evex-dev/linejs/edit/main/docs/:path", diff --git a/docs/docs/ja/auth.md b/docs/docs/ja/auth.md new file mode 100644 index 00000000..b370c728 --- /dev/null +++ b/docs/docs/ja/auth.md @@ -0,0 +1,46 @@ +# Authentication + +You can get authenticated with multiple ways. + +## Login + +Login is a simple way to get authenticated. LINEJS has 2 ways to login. + +### `loginWithPassword` + +Here is an example: +```ts +import { loginWithPassword } from "@evex/linejs"; + +const client = loginWithPassword({ + email: 'you@example.com', // e-mail address + password: 'password', // Password + onPincodeRequest(pincode) { + console.log('Enter this pincode to your LINE app:', pincode) + } +}) +``` + +email, password is required. On first login, you have to enter pincode on mobile app for enable e2ee. +`onPincodeRequest` can receive a pincode and you can output it with that method to tell users pincode. + +### `loginWithQR` + +In this way, email and password is not needed. + +```ts +import { loginWithQR } from '@evex/linejs' + +const client = loginWithQR({ + onReceiveQRURL(url) { + console.log('Access to this URL:', url) + } +}) +``` + +The function gives an url to read on mobile. You have to create QR with yourself if you want to show QR code, this is because of LINEJS doesn't support creating QR code. + +## With authToken + +There is a possibility to banned your account if you tried login many times, so you should use authToken to get authenticated. + diff --git a/docs/docs/ja/authors.md b/docs/docs/ja/authors.md new file mode 100644 index 00000000..ba473bc3 --- /dev/null +++ b/docs/docs/ja/authors.md @@ -0,0 +1,13 @@ +# Authors + +Maintainers of **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/docs/ja/client-options.md b/docs/docs/ja/client-options.md new file mode 100644 index 00000000..7c7eba0f --- /dev/null +++ b/docs/docs/ja/client-options.md @@ -0,0 +1,70 @@ +# Client Options + +Next, we will talk about the Client.\ +The Client has several options. + +```ts +const client = new Client({ + device: "...", + ... +}); +``` + +For example, **storage for the data** we discussed before, **OBS Endpoint**, +**Endpoint** for communication, **customFetch** for cors and proxies, +**RateLimitter** for rate limiting, etc. + +I'll explain it to you one by one. + +## Storage + +This is storage for internal needs such as decryption keys and caches.   By +default, `MemoryStorage` is used, and once you stop the program, you must log in +from the beginning. + +You can use `FileStorage` there. + +```ts +import { FileStorage } from "@evex/linejs/storage"; + +const client = new Client({ + device: "IOSIPAD", + storage: new FileStorage("./storage.json"), // path to storage file (This is secret file) +}); +``` + +If you want to store in your cloud or storages with your data storage API, you +can extend `BaseStorage` to create something of your liking.\ +I'd like to give you more details on our server. + +## Endpoint + +The endpoints of communication.\ +There is no need to change this point.\ +If you want to try out a proxied server, use it. + +```ts +const client = new Client({ + endpoint: "legy-jp.line-apps.com", +}); +``` + +## Custom Fetch + +This is for cors avoidance or proxy. You define a function that replaces fetch. + +```ts +... + +const client = new Client({ + fetch: async (url, options) => { + return await fetch(url, { + ...options, + ...proxyAgent + }); + } +}); +``` + +This concludes the explanation of options!\ +The next sections will introduce the various methods. diff --git a/docs/docs/ja/message-event.md b/docs/docs/ja/message-event.md new file mode 100644 index 00000000..86103575 --- /dev/null +++ b/docs/docs/ja/message-event.md @@ -0,0 +1,108 @@ +# Receive Message Event + +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). ::: + +First, let's create a bot that only receives “!ping” and returns “pong!”. + +## Chat + +To receive messages, do the following. + +```ts +client.on("message", (message) => { + ... +}); + +await client.login({...}) +client.polling(["square","talk"]) +``` + +This is all that is needed to receive the message.\ +Easy, isn't it? + +So first, let's retrieve the messages sent. + +```ts +client.on("message", (message) => { + const text = message.text; + + console.log(text); +}); +``` + +Your console should now show the message that was sent to you! + +```console +Hello EdamAmex +I love you! :D +``` + +Next, let's check if the message is “!ping”. + +```ts +client.on("message", (message) => { + const text = message.text; + + if (text === "!ping") { + ... + } +}); +``` + +This is perfect. Next time I need to reply. + +To reply, you can call a method that sends a `messageId` with a +`relatedMessageId`, but there is a more convenient way. + +```ts +client.on("message", (message) => { + const text = message.text; + + if (text === "!ping") { + message.reply("pong!"); + } +}); +``` + +What a beautiful code! It's too easy. However, in this case, it is more +beautiful to enclose it in an asynchronous function. + +```ts +client.on("message", async (message) => { + const text = message.text; + + if (text === "!ping") { + await message.reply("pong!"); + } +}); +``` + +That's all!\ +There are also `send`, `reaction`, etc.\ +Let me explain all the methods in other chapters. + +## Square + +So what should we do with Square (OpenChat)? Basically the same thing. + +```ts +client.on("square:message", async (message) => { + const text = message.text; + + if (text === "!ping") { + await message.reply("pong!"); + } +}); +``` + +With this alone you can create a basic bot.\ +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. ::: diff --git a/docs/docs/ja/methods.md b/docs/docs/ja/methods.md new file mode 100644 index 00000000..2e049d9f --- /dev/null +++ b/docs/docs/ja/methods.md @@ -0,0 +1,34 @@ +# Methods + +## Talk Methods + +All the functions for TalkService are in `client.talk`. + +For example: + +```js +await client.talk.sendMessage({ + to: "u...", + text: "Hello, LINEJS!", + e2ee: true, +}); +``` + +This is an example of encrypting a text message with e2ee and sending it to a +user. + +## Square Methods + +All the functions for SquareService are in `client.square`. + +For example: + +```js +await client.square.findSquareByInvitationTicket({ + request: { + invitationTicket: "INVITATION_TICKET", + }, +}); +``` + +This is an example of getting square from invitation code. diff --git a/docs/docs/ja/question.md b/docs/docs/ja/question.md new file mode 100644 index 00000000..7d378c55 --- /dev/null +++ b/docs/docs/ja/question.md @@ -0,0 +1,5 @@ +# Question + +This is our server. Feel free to ask questions! + +[https://discord.gg/evex](https://discord.gg/evex) diff --git a/docs/docs/ja/start-2.md b/docs/docs/ja/start-2.md new file mode 100644 index 00000000..5ac5690a --- /dev/null +++ b/docs/docs/ja/start-2.md @@ -0,0 +1,129 @@ +# How to use the methods of client + +Next, How to use the methods of client? + +It's easy.   + +All you have to do is call the client's method as follows. + +```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", +}); + +// or, you can log in using the QR code. +await client.login({ + qr: true, +}); +``` + +The output will be as follows. + +```console +{ + mid: "u**********", + phone: "***********", + regionCode: "JP", + ... +} +``` + +I will tell you one thing here.\ +When you log in, you can use a better choice. + +Logging in repeatedly with _email_ may be regarded as fraudulent login\ +and your account may be temporarily restricted (though only for a few days), and +above all, It is very cumbersome. + +It is therefore a good idea to use an **AuthToken**. + +A temporary token is used for email login.\ +Therefore, after a few days, it will expire and the client will stop running.\ +So, if you want to run the client permanently, you must use v1. + +It would be a good idea to use v2 during development.\ +Repeating the email login multiple times is highly discouraged. + +Now, let's look at how to get token. + +Simply write the following.\ +It's easy. + +```ts +client.on("update:authtoken", (authtoken) => { + console.log("AuthToken", authtoken); +}); +``` + +The output will be as follows. + +```console +AuthToken **********.******** +``` + +This is the v2 token. It can be used as follows + +```ts +await client.login({ + authToken: "YOUR_AUTH_TOKEN", +}); +``` + +## Important notice + +However, this login method has pitfalls. LINE uses _e2ee_ for encryption, but +the key to decrypt it can only be obtained with an email login with pincode, or +QR login. + +Therefore, if you login only with an authToken, you will not be able to retrieve +group talk events.\ +(Square (OpenChat) is possible.) + +So how can we do this?   It's easy, too. + +We just need to make the internal storage permanent and log in with email first +only once. + +LINEJS has internal storage for storing and caching.\ +By default, it is `MemoryStorage`, and it all disappears after one execution. + +This can be `FileStorage`. As follows. + +```ts +import { FileStorage } from "@evex/linejs/storage"; + +const client = new Client({ + device: "IOSIPAD", + storage: new FileStorage("./storage.json"), // path to storage file (This is secret file) +}); +``` + +You only need to log in once first with your email and then use your authToken. + +This concludes our first trip.\ +But there is still a journey left to be made.\ +Enjoy. + +:::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.) ::: + +:::info\ +If you want to use v1, please ask for details at +[discord.gg/evex](https://discord.gg/evex). ::: diff --git a/docs/docs/ja/start.md b/docs/docs/ja/start.md new file mode 100644 index 00000000..7e2927d1 --- /dev/null +++ b/docs/docs/ja/start.md @@ -0,0 +1,49 @@ +# Getting Started + +LINEJS is always by your side. + +Thank you for choosing this library! + +## Installation + +LINEJS is published on JSR, not a npm. You can install LINEJS with npm, yarn, pnpm, Bun, and Deno. +```bash +npx jsr add @evex/linejs # If you use npm +bunx --bun jsr add @evex/linejs # If you use Bun +deno add @evex/linejs # If you use Deno +``` + +After execution, you should have the library available. + +## Usage + +Next, let's create a script that just retrieves your profile! + +To making client, you can use `loginWithPassword`. +```ts +import { loginWithPassword } from "@evex/linejs"; + +const client = loginWithPassword({ + email: 'you@example.com', // e-mail address + password: 'password', // Password + onPincodeRequest(pincode) { + console.log('Enter this pincode to your LINE app:', pincode) + } +}) +``` + +Authentication is complicated process, so you should read [here](./auth.md). + +After created client, you can do various things! + +For instance, you can get one of chat informations you joined: +```ts +const chats = await client.fetchChats() +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!) diff --git a/docs/docs/ja/utils.md b/docs/docs/ja/utils.md new file mode 100644 index 00000000..fc92fb62 --- /dev/null +++ b/docs/docs/ja/utils.md @@ -0,0 +1,83 @@ +# 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. + +## LINE_OBS + +Utils to retrieve images and videos from obs hash. +You can retrieve them as follows + +```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**********"); // member id (mid) + +const OBS_SQUARE_PROFILE_IAMGE_URI = OBS.getSquareMemberImage("p**********"); // square member id (pid) + +// and more +``` + +All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts) + +## LINE_SCHEME + +Utils for constructing a scheme URI for LINE + +```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**********"); + +// and more +``` + +All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts) + + +## LINE_REGEX + +Utils for extracting tickets and emids from URLs. + +```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=*************")); // ************* +``` + +All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts) + +## LINE_FUNCTIONS + +Utils for connecting to external APIs related to LINE + +```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); +} +``` + +All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts) + +The next sections will introduce the various methods. diff --git a/docs/index.md b/docs/index.md index 97951405..4de67206 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,4 +24,10 @@ features: - title: Safety Locked icon: 🔒 details: Defaults to safety locked (RateLimit and others). + +nav: + - text: English + link: /docs/start + - text: 日本語 + link: /docs/ja/start --- \ No newline at end of file From d6edf507ffa3472b7f8355763372268da0881a58 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 16:51:02 +0900 Subject: [PATCH 03/25] Prepare language switch2 --- docs/.vitepress/config.mts | 34 +++++++++++++-------- docs/index.md | 6 ---- docs/{docs/ja => ja/docs}/auth.md | 0 docs/{docs/ja => ja/docs}/authors.md | 0 docs/{docs/ja => ja/docs}/client-options.md | 0 docs/{docs/ja => ja/docs}/message-event.md | 0 docs/{docs/ja => ja/docs}/methods.md | 0 docs/{docs/ja => ja/docs}/question.md | 0 docs/{docs/ja => ja/docs}/start-2.md | 0 docs/{docs/ja => ja/docs}/start.md | 0 docs/{docs/ja => ja/docs}/utils.md | 0 docs/ja/index.md | 27 ++++++++++++++++ 12 files changed, 49 insertions(+), 18 deletions(-) rename docs/{docs/ja => ja/docs}/auth.md (100%) rename docs/{docs/ja => ja/docs}/authors.md (100%) rename docs/{docs/ja => ja/docs}/client-options.md (100%) rename docs/{docs/ja => ja/docs}/message-event.md (100%) rename docs/{docs/ja => ja/docs}/methods.md (100%) rename docs/{docs/ja => ja/docs}/question.md (100%) rename docs/{docs/ja => ja/docs}/start-2.md (100%) rename docs/{docs/ja => ja/docs}/start.md (100%) rename docs/{docs/ja => ja/docs}/utils.md (100%) create mode 100644 docs/ja/index.md diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index ca68877c..75a5edd3 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -9,6 +9,18 @@ export default defineConfig({ sitemap: { hostname: "https://linejs.evex.land", }, + locales: { + root: { + label: 'English', + lang: 'en', + link: '/' + }, + ja: { + label: '日本語', + lang: 'ja', + link: '/ja' + } + }, themeConfig: { // https://vitepress.dev/reference/default-theme-config siteTitle: "LINEJS Docs", @@ -22,9 +34,7 @@ export default defineConfig({ { text: "Examples", link: "https://github.com/evex-dev/linejs/tree/main/examples", - }, - { text: "English", link: "/docs/start" }, - { text: "日本語", link: "/docs/ja/start" }, + } ], sidebar: { @@ -48,23 +58,23 @@ export default defineConfig({ ], }, ], - "/docs/ja/": [ + "/ja/docs/": [ { text: "ドキュメント", items: [ - { text: "はじめに", link: "/docs/ja/start" }, - { text: "次のステップ", link: "/docs/ja/start-2" }, - { text: "メッセージイベント", link: "/docs/ja/message-event" }, - { text: "オプション", link: "/docs/ja/client-options" }, - // { text: "ユーティリティ", link: "/docs/ja/utils" }, - { text: "メソッド", link: "/docs/ja/methods" }, + { 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: "/docs/ja/authors" }, - { text: "質問", link: "/docs/ja/question" }, + { text: "作成者", link: "/ja/docs/authors" }, + { text: "質問", link: "/ja/docs/question" }, ], }, ], diff --git a/docs/index.md b/docs/index.md index 4de67206..97951405 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,10 +24,4 @@ features: - title: Safety Locked icon: 🔒 details: Defaults to safety locked (RateLimit and others). - -nav: - - text: English - link: /docs/start - - text: 日本語 - link: /docs/ja/start --- \ No newline at end of file diff --git a/docs/docs/ja/auth.md b/docs/ja/docs/auth.md similarity index 100% rename from docs/docs/ja/auth.md rename to docs/ja/docs/auth.md diff --git a/docs/docs/ja/authors.md b/docs/ja/docs/authors.md similarity index 100% rename from docs/docs/ja/authors.md rename to docs/ja/docs/authors.md diff --git a/docs/docs/ja/client-options.md b/docs/ja/docs/client-options.md similarity index 100% rename from docs/docs/ja/client-options.md rename to docs/ja/docs/client-options.md diff --git a/docs/docs/ja/message-event.md b/docs/ja/docs/message-event.md similarity index 100% rename from docs/docs/ja/message-event.md rename to docs/ja/docs/message-event.md diff --git a/docs/docs/ja/methods.md b/docs/ja/docs/methods.md similarity index 100% rename from docs/docs/ja/methods.md rename to docs/ja/docs/methods.md diff --git a/docs/docs/ja/question.md b/docs/ja/docs/question.md similarity index 100% rename from docs/docs/ja/question.md rename to docs/ja/docs/question.md diff --git a/docs/docs/ja/start-2.md b/docs/ja/docs/start-2.md similarity index 100% rename from docs/docs/ja/start-2.md rename to docs/ja/docs/start-2.md diff --git a/docs/docs/ja/start.md b/docs/ja/docs/start.md similarity index 100% rename from docs/docs/ja/start.md rename to docs/ja/docs/start.md diff --git a/docs/docs/ja/utils.md b/docs/ja/docs/utils.md similarity index 100% rename from docs/docs/ja/utils.md rename to docs/ja/docs/utils.md diff --git a/docs/ja/index.md b/docs/ja/index.md new file mode 100644 index 00000000..a630271d --- /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 ドキュメント" + tagline: LINEJSはLINE SelfBotのためのJavaScriptライブラリ + actions: + - theme: brand + text: ドキュメントを見る + link: /ja/docs/start + - theme: alt + text: 例を見る + link: https://github.com/evex-dev/linejs + +features: + - title: 様々なプラットフォームで動作 + icon: 🌎 + details: Node.js、Deno、Bunなど + - title: 強固な型付け + icon: 🧩 + details: TypeScriptをサポート + - title: セーフティ + icon: 🔒 + details: レートリミットなど +--- From d0bcec130d21da56ae976f109fd43833dcc6968b Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 16:51:46 +0900 Subject: [PATCH 04/25] Run fmt --- README.md | 2 +- packages/linejs/base/service/liff/mod.ts | 11 +-- packages/linejs/client/events/mod.ts | 2 +- .../client/events/talk-events/join-chat.ts | 36 +++++----- .../client/events/talk-events/read-message.ts | 72 +++++++++---------- .../linejs/client/features/chat/fetcher.ts | 58 +++++++-------- packages/linejs/client/features/chat/mod.ts | 4 +- 7 files changed, 90 insertions(+), 95 deletions(-) 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/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/client/events/mod.ts b/packages/linejs/client/events/mod.ts index 98641ade..789bccf5 100644 --- a/packages/linejs/client/events/mod.ts +++ b/packages/linejs/client/events/mod.ts @@ -51,7 +51,7 @@ export const wrapEvents = async ( return new events.UnknownLINEEvent(source); }; -export type LINEEvent = +export type LINEEvent = | events.AcceptInviteLINEEvent | events.InviteLINEEvent | events.JoinChatLINEEvent diff --git a/packages/linejs/client/events/talk-events/join-chat.ts b/packages/linejs/client/events/talk-events/join-chat.ts index 98193fca..1b421e25 100644 --- a/packages/linejs/client/events/talk-events/join-chat.ts +++ b/packages/linejs/client/events/talk-events/join-chat.ts @@ -5,23 +5,23 @@ import { LINEEventBase } from "../shared.ts"; * An event that indicates a user joined a chat. */ export class JoinChatLINEEvent extends LINEEventBase { - readonly type: "join-chat" = "join-chat"; - readonly userMid: string; - readonly chatMid: string; + readonly type: "join-chat" = "join-chat"; + readonly userMid: string; + readonly chatMid: string; - constructor(source: SourceEvent & { type: "talk" }) { - super(source); - const op = source.event; - if (op.type !== "NOTIFIED_JOIN_CHAT") { - throw new TypeError("Wrong operation type"); - } - if ( - typeof op.param1 === "undefined" || - typeof op.param2 === "undefined" - ) { - throw new TypeError("Wrong param"); - } - this.userMid = op.param2; - this.chatMid = op.param1; - } + constructor(source: SourceEvent & { type: "talk" }) { + super(source); + const op = source.event; + if (op.type !== "NOTIFIED_JOIN_CHAT") { + throw new TypeError("Wrong operation type"); + } + if ( + typeof op.param1 === "undefined" || + typeof op.param2 === "undefined" + ) { + throw new TypeError("Wrong param"); + } + this.userMid = op.param2; + this.chatMid = op.param1; + } } diff --git a/packages/linejs/client/events/talk-events/read-message.ts b/packages/linejs/client/events/talk-events/read-message.ts index 29fe814d..3614c7ae 100644 --- a/packages/linejs/client/events/talk-events/read-message.ts +++ b/packages/linejs/client/events/talk-events/read-message.ts @@ -5,42 +5,42 @@ import { LINEEventBase } from "../shared.ts"; * An event that indicates a message has been read. */ export class ReadMessageLINEEvent extends LINEEventBase { - readonly type: "read-message" = "read-message"; - readonly chatMid: string; - readonly messageId: string; + readonly type: "read-message" = "read-message"; + readonly chatMid: string; + readonly messageId: string; - /** - * The mid of the user who read the message. - * This is a placeholder property and will be replaced in the future. - */ - readonly readUserMid?: string; + /** + * The mid of the user who read the message. + * This is a placeholder property and will be replaced in the future. + */ + readonly readUserMid?: string; - constructor(source: SourceEvent & { type: "talk" }) { - super(source); - const op = source.event; - if (op.type === "NOTIFIED_READ_MESSAGE") { - if ( - typeof op.param1 === "undefined" || - typeof op.param2 === "undefined" || - typeof op.param3 === "undefined" - ) { - throw new TypeError("Wrong param"); - } - this.chatMid = op.param1; - this.readUserMid = op.param2; - this.messageId = op.param3; - return; - } else if (op.type === "SEND_CHAT_CHECKED") { - if ( - typeof op.param1 === "undefined" || - typeof op.param2 === "undefined" - ) { - throw new TypeError("Wrong param"); - } - this.chatMid = op.param1; - this.messageId = op.param2; - return; - } - throw new TypeError("Wrong operation type"); - } + constructor(source: SourceEvent & { type: "talk" }) { + super(source); + const op = source.event; + if (op.type === "NOTIFIED_READ_MESSAGE") { + if ( + typeof op.param1 === "undefined" || + typeof op.param2 === "undefined" || + typeof op.param3 === "undefined" + ) { + throw new TypeError("Wrong param"); + } + this.chatMid = op.param1; + this.readUserMid = op.param2; + this.messageId = op.param3; + return; + } else if (op.type === "SEND_CHAT_CHECKED") { + if ( + typeof op.param1 === "undefined" || + typeof op.param2 === "undefined" + ) { + throw new TypeError("Wrong param"); + } + this.chatMid = op.param1; + this.messageId = op.param2; + return; + } + throw new TypeError("Wrong operation type"); + } } 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 b2cc91fd..1352de4a 100644 --- a/packages/linejs/client/features/chat/mod.ts +++ b/packages/linejs/client/features/chat/mod.ts @@ -1,7 +1,7 @@ import type { Client } from "../../mod.ts"; import type * as line from "@evex/linejs-types"; import { TalkMessage } from "../message/talk.ts"; -import { createMessageFetcher, type MessageFetcher } from './fetcher.ts' +import { createMessageFetcher, type MessageFetcher } from "./fetcher.ts"; interface ChatInit { client: Client; @@ -149,7 +149,7 @@ export class Chat { } messageFetcher(): Promise { - return createMessageFetcher(this.#client, this) + return createMessageFetcher(this.#client, this); } /** From eed03ebe1986f32f60655b8f658c90e9c685820c Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 16:55:33 +0900 Subject: [PATCH 05/25] Fix Example Link --- docs/index.md | 2 +- docs/ja/index.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.md b/docs/index.md index 97951405..5d67e469 100644 --- a/docs/index.md +++ b/docs/index.md @@ -12,7 +12,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 diff --git a/docs/ja/index.md b/docs/ja/index.md index a630271d..6bb5fc6d 100644 --- a/docs/ja/index.md +++ b/docs/ja/index.md @@ -12,7 +12,7 @@ hero: link: /ja/docs/start - theme: alt text: 例を見る - link: https://github.com/evex-dev/linejs + link: https://github.com/evex-dev/linejs/tree/main/examples features: - title: 様々なプラットフォームで動作 @@ -21,7 +21,7 @@ features: - title: 強固な型付け icon: 🧩 details: TypeScriptをサポート - - title: セーフティ + - title: セーフティロック icon: 🔒 - details: レートリミットなど + details: デフォルトでレートリミットなどを実装 --- From 9941e111a5bd9ec15f03c2eaa9902c6edc9121b5 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:05:44 +0900 Subject: [PATCH 06/25] Add JA Ver of auth.md --- docs/ja/docs/auth.md | 22 +++++++++++----------- docs/ja/index.md | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/ja/docs/auth.md b/docs/ja/docs/auth.md index b370c728..d7353afc 100644 --- a/docs/ja/docs/auth.md +++ b/docs/ja/docs/auth.md @@ -1,32 +1,32 @@ -# Authentication +# 認証 -You can get authenticated with multiple ways. +いくつかの方法で認証を受けることができます。 ## Login -Login is a simple way to get authenticated. LINEJS has 2 ways to login. +LINEJSには2つのログイン方法があります。 ### `loginWithPassword` -Here is an example: +例: ```ts import { loginWithPassword } from "@evex/linejs"; const client = loginWithPassword({ - email: 'you@example.com', // e-mail address - password: 'password', // Password + email: 'you@example.com', // メアド + password: 'password', // パスワード onPincodeRequest(pincode) { console.log('Enter this pincode to your LINE app:', pincode) } }) ``` -email, password is required. On first login, you have to enter pincode on mobile app for enable e2ee. -`onPincodeRequest` can receive a pincode and you can output it with that method to tell users pincode. +メアドとパスワードが必要です。初回ログイン時、スマホ版のLINEでPinを入力し、e2eeを有効にする必要があります。 +`onPincodeRequest`はPinを受け取ることができます。 ### `loginWithQR` -In this way, email and password is not needed. +この方法では、メアドとパスワードは不要です。 ```ts import { loginWithQR } from '@evex/linejs' @@ -38,9 +38,9 @@ const client = loginWithQR({ }) ``` -The function gives an url to read on mobile. You have to create QR with yourself if you want to show QR code, this is because of LINEJS doesn't support creating QR code. +この関数はスマホ版LINEで読み込む為のURLを表示します。QRコードを表示したい場合は、自分でQRコードを作成する必要があります。これはLINEJSがQRコードの作成をサポートしていないためです。 ## With authToken -There is a possibility to banned your account if you tried login many times, so you should use authToken to get authenticated. +短時間に何度もログインを試みるとアカウントがBANされる可能性があるため、認証にはauthTokenを使用することをおすすめします。 diff --git a/docs/ja/index.md b/docs/ja/index.md index 6bb5fc6d..109a35d8 100644 --- a/docs/ja/index.md +++ b/docs/ja/index.md @@ -5,7 +5,7 @@ layout: home hero: image: /favicon.png name: "LINEJS ドキュメント" - tagline: LINEJSはLINE SelfBotのためのJavaScriptライブラリ + tagline: LINEJSはLINE SelfBotのための画期的なJSライブラリ actions: - theme: brand text: ドキュメントを見る From 8b1559302286d9fc298366fc2e462490de5b3143 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:14:42 +0900 Subject: [PATCH 07/25] Add JA Ver of start.md --- docs/ja/docs/start.md | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/docs/ja/docs/start.md b/docs/ja/docs/start.md index 7e2927d1..49f2c4f0 100644 --- a/docs/ja/docs/start.md +++ b/docs/ja/docs/start.md @@ -1,42 +1,41 @@ -# Getting Started +# はじめに -LINEJS is always by your side. -Thank you for choosing this library! +このライブラリを選んでくれてありがとう! -## Installation +## インストール -LINEJS is published on JSR, not a npm. You can install LINEJS with npm, yarn, pnpm, Bun, and Deno. +LINEJSはJSRに公開されています。npmではありません。npm、yarn、pnpm、Bun、DenoでLINEJSをインストールできます。 ```bash -npx jsr add @evex/linejs # If you use npm -bunx --bun jsr add @evex/linejs # If you use Bun -deno add @evex/linejs # If you use Deno +npx jsr add @evex/linejs # npmを使う場合 +bunx --bun jsr add @evex/linejs # Bunを使う場合 +deno add @evex/linejs # Denoを使う場合 ``` -After execution, you should have the library available. +実行後、ライブラリが利用可能になります。 -## Usage +## 使い方 -Next, let's create a script that just retrieves your profile! +次に、自分のプロフィールを取得するだけのスクリプトを作成しましょう! -To making client, you can use `loginWithPassword`. +クライアントを作成するには、`loginWithPassword`を使用します。 ```ts import { loginWithPassword } from "@evex/linejs"; const client = loginWithPassword({ - email: 'you@example.com', // e-mail address - password: 'password', // Password + email: 'you@example.com', // メアド + password: 'password', // パスワード onPincodeRequest(pincode) { console.log('Enter this pincode to your LINE app:', pincode) } }) ``` -Authentication is complicated process, so you should read [here](./auth.md). +認証は複雑なプロセスなので、[こちら](./auth.md)を読んでください。 -After created client, you can do various things! +クライアント作成後、色々なことができます! -For instance, you can get one of chat informations you joined: +例えば、参加しているチャットの情報を取得: ```ts const chats = await client.fetchChats() console.log(chats[0].name) @@ -44,6 +43,6 @@ 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!) +このライブラリはまだ初期段階です!\ +バグ不足している部分を見つけた場合は、Discordサーバーでお知らせください! +(バグや機能を提案してくれた方にはロールが付与されるかも!) From ad02d98493e21d0e6224fd28d68cfa5e674fef88 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:25:53 +0900 Subject: [PATCH 08/25] Add JA Ver of start-2.md --- docs/ja/docs/start-2.md | 83 ++++++++++++++++++----------------------- 1 file changed, 37 insertions(+), 46 deletions(-) diff --git a/docs/ja/docs/start-2.md b/docs/ja/docs/start-2.md index 5ac5690a..75f7285d 100644 --- a/docs/ja/docs/start-2.md +++ b/docs/ja/docs/start-2.md @@ -1,10 +1,8 @@ -# How to use the methods of client +# クライアントメソッドの使い方 -Next, How to use the methods of client? +次に、クライアントのメソッドの使い方を説明します。 -It's easy.   - -All you have to do is call the client's method as follows. +次のように呼び出すだけです。簡単です。 ```ts import { Client } from "@evex/linejs"; @@ -26,13 +24,13 @@ await client.login({ password: "YOUR_PASSWORD", }); -// or, you can log in using the QR code. +// または、QRコードを使用してログインできます。 await client.login({ qr: true, }); ``` -The output will be as follows. +出力は次のようになります。 ```console { @@ -43,26 +41,23 @@ The output will be as follows. } ``` -I will tell you one thing here.\ -When you log in, you can use a better choice. +ここで一つ追記、ログインには別の選択肢があります。 -Logging in repeatedly with _email_ may be regarded as fraudulent login\ -and your account may be temporarily restricted (though only for a few days), and -above all, It is very cumbersome. +メアドでのログインを繰り返すと、不正ログインと見なされる可能性があり、\ +アカウントが一時的にBANされることがあります(数日間だけですが...)\ -It is therefore a good idea to use an **AuthToken**. +**AuthToken**を使用するのが良い方法です。 -A temporary token is used for email login.\ -Therefore, after a few days, it will expire and the client will stop running.\ -So, if you want to run the client permanently, you must use v1. +メアドログインには期限のある一時的なトークンが使用されます。\ +期限が切れると動作を停止します。\ +永久に動作させたい場合は、v1トークンを使用する必要があります。 -It would be a good idea to use v2 during development.\ -Repeating the email login multiple times is highly discouraged. +開発時はv2トークンを使用するのが良いでしょう。\ +メアドログインを何度も繰り返すことはおすすめしません。 -Now, let's look at how to get token. +では、トークンを取得する方法を見てみましょう。 -Simply write the following.\ -It's easy. +次のように書くだけです。 ```ts client.on("update:authtoken", (authtoken) => { @@ -70,13 +65,13 @@ client.on("update:authtoken", (authtoken) => { }); ``` -The output will be as follows. +出力は次のようになります。 ```console AuthToken **********.******** ``` -This is the v2 token. It can be used as follows +これはv2トークンです。次のように使用できます。 ```ts await client.login({ @@ -84,46 +79,42 @@ await client.login({ }); ``` -## Important notice +## 重要な注意点 -However, this login method has pitfalls. LINE uses _e2ee_ for encryption, but -the key to decrypt it can only be obtained with an email login with pincode, or -QR login. +このログイン方法には落とし穴があります。LINEは_e2ee_を使用して暗号化していますが、\ +これを解読するキーはPin付きのメアドログインまたはQRログインでしか取得できません。 -Therefore, if you login only with an authToken, you will not be able to retrieve -group talk events.\ -(Square (OpenChat) is possible.) +したがって、authTokenだけでログインすると、グループトークイベントを取得できません。\ +(Square(オープンチャット)は可能です。) -So how can we do this?   It's easy, too. +解決策は簡単です。 -We just need to make the internal storage permanent and log in with email first -only once. +内部ストレージを使って、最初の一回だけメアドでログインすれば良いのです。 -LINEJS has internal storage for storing and caching.\ -By default, it is `MemoryStorage`, and it all disappears after one execution. +LINEJSには内部ストレージがあり、キャッシュを保存します。\ +デフォルトでは`MemoryStorage`で、一度の実行後にすべて消えます。 -This can be `FileStorage`. As follows. +次のように`FileStorage`にすることもできます。 ```ts import { FileStorage } from "@evex/linejs/storage"; const client = new Client({ device: "IOSIPAD", - storage: new FileStorage("./storage.json"), // path to storage file (This is secret file) + storage: new FileStorage("./storage.json"), // ストレージファイルへのパス(秘密ファイル) }); ``` -You only need to log in once first with your email and then use your authToken. +最初の一回だけメールでログインし、その後はauthTokenを使用すれば良いのです。 -This concludes our first trip.\ -But there is still a journey left to be made.\ -Enjoy. +これで最初の体験は終わりです。\ +しかし、まだ続きます。\ +楽しんでください。 :::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.) ::: +クラウドAPIに接続するなど、自分のストレージを作成したい場合は、\ +`BaseStorage`をインポートし、それを拡張して自分のストレージを作成してください。(詳細はお問い合わせください。) ::: :::info\ -If you want to use v1, please ask for details at -[discord.gg/evex](https://discord.gg/evex). ::: +v1トークンを使用したい場合は、\ +[discord.gg/evex](https://discord.gg/evex)で詳細をお問い合わせください。 ::: From bd48218af2242762ae0fb9e27a4f5575ecac96aa Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:31:30 +0900 Subject: [PATCH 09/25] Fix accordion --- docs/docs/message-event.md | 6 ++++-- docs/docs/start-2.md | 10 ++++++---- docs/ja/docs/message-event.md | 6 ++++-- docs/ja/docs/start-2.md | 17 +++++++++-------- 4 files changed, 23 insertions(+), 16 deletions(-) diff --git a/docs/docs/message-event.md b/docs/docs/message-event.md index 86103575..79440e1c 100644 --- a/docs/docs/message-event.md +++ b/docs/docs/message-event.md @@ -4,7 +4,8 @@ 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). ::: +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!”. @@ -105,4 +106,5 @@ 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. ::: +not only here. +::: diff --git a/docs/docs/start-2.md b/docs/docs/start-2.md index 5ac5690a..c0619746 100644 --- a/docs/docs/start-2.md +++ b/docs/docs/start-2.md @@ -119,11 +119,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/ja/docs/message-event.md b/docs/ja/docs/message-event.md index 86103575..774ddc38 100644 --- a/docs/ja/docs/message-event.md +++ b/docs/ja/docs/message-event.md @@ -4,7 +4,8 @@ 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). ::: +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!”. @@ -105,4 +106,5 @@ 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. ::: +not only here. +::: diff --git a/docs/ja/docs/start-2.md b/docs/ja/docs/start-2.md index 75f7285d..ed1fc7ba 100644 --- a/docs/ja/docs/start-2.md +++ b/docs/ja/docs/start-2.md @@ -107,14 +107,15 @@ const client = new Client({ 最初の一回だけメールでログインし、その後はauthTokenを使用すれば良いのです。 -これで最初の体験は終わりです。\ -しかし、まだ続きます。\ +これで最初の体験は終わりです。まだ続きます。\ 楽しんでください。 -:::tip\ -クラウドAPIに接続するなど、自分のストレージを作成したい場合は、\ -`BaseStorage`をインポートし、それを拡張して自分のストレージを作成してください。(詳細はお問い合わせください。) ::: +::: tip +クラウドAPIに接続するなど、自分のストレージを作成したい場合は、 +`BaseStorage`をインポートし、それを拡張して自分のストレージを作成してください。(詳細はお問い合わせください。) +::: -:::info\ -v1トークンを使用したい場合は、\ -[discord.gg/evex](https://discord.gg/evex)で詳細をお問い合わせください。 ::: +:::info +v1トークンを使用したい場合は、 +[discord.gg/evex](https://discord.gg/evex)で詳細をお問い合わせください。 +::: From f982edda8cfbae5a2bca80dbdd023f09e9645bb8 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:36:43 +0900 Subject: [PATCH 10/25] Add JA Ver of message-event.md --- docs/docs/message-event.md | 6 ++-- docs/ja/docs/message-event.md | 52 +++++++++++++++++------------------ 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/docs/docs/message-event.md b/docs/docs/message-event.md index 79440e1c..c30302d5 100644 --- a/docs/docs/message-event.md +++ b/docs/docs/message-event.md @@ -3,7 +3,8 @@ 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 +:::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). ::: @@ -105,6 +106,7 @@ There are many more features! Stay tuned for our next journey. -:::tip If you encounter problems, please refer to [Question](/docs/question), +:::tip +If you encounter problems, please refer to [Question](/docs/question), not only here. ::: diff --git a/docs/ja/docs/message-event.md b/docs/ja/docs/message-event.md index 774ddc38..1732ae74 100644 --- a/docs/ja/docs/message-event.md +++ b/docs/ja/docs/message-event.md @@ -1,17 +1,18 @@ -# Receive Message Event +# メッセージイベントの受信 -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 +ただし、グループのメッセージを受信するには、`FileStorage`などにある復号キーが必要です。 +詳細は[スタート2](/docs/start-2)を参照してください。 ::: -First, let's create a bot that only receives “!ping” and returns “pong!”. +まず、「!ping」を受信して「pong!」と返すだけのボットを作成しましょう。 ## Chat -To receive messages, do the following. +メッセージを受信するには、次のようにします。 ```ts client.on("message", (message) => { @@ -22,10 +23,9 @@ await client.login({...}) client.polling(["square","talk"]) ``` -This is all that is needed to receive the message.\ -Easy, isn't it? +これだけでメッセージを受信できます。簡単でしょ? -So first, let's retrieve the messages sent. +ではまず、送信されたメッセージを取得してみましょう。 ```ts client.on("message", (message) => { @@ -35,14 +35,14 @@ client.on("message", (message) => { }); ``` -Your console should now show the message that was sent to you! +コンソールに送信されたメッセージが表示されるはずです! ```console -Hello EdamAmex +Hello MaguRo I love you! :D ``` -Next, let's check if the message is “!ping”. +次に、メッセージが「!ping」かどうかを確認しましょう。 ```ts client.on("message", (message) => { @@ -54,10 +54,9 @@ client.on("message", (message) => { }); ``` -This is perfect. Next time I need to reply. +完璧です。次はリプライをさせてみましょう。 -To reply, you can call a method that sends a `messageId` with a -`relatedMessageId`, but there is a more convenient way. +リプライをするには、`messageId`と`relatedMessageId`を使用することもできますが、もっと便利な方法があります。 ```ts client.on("message", (message) => { @@ -69,8 +68,7 @@ client.on("message", (message) => { }); ``` -What a beautiful code! It's too easy. However, in this case, it is more -beautiful to enclose it in an asynchronous function. +なんて美しいコードでしょう!とても簡単です。しかし、非同期関数で囲む方がもっと美しいです。 ```ts client.on("message", async (message) => { @@ -82,13 +80,13 @@ client.on("message", async (message) => { }); ``` -That's all!\ -There are also `send`, `reaction`, etc.\ -Let me explain all the methods in other chapters. +これで完了です!\ +他にも`send`や`reaction`などのメソッドがあります。\ +他の章でこれらのメソッドについて説明します。 ## Square -So what should we do with Square (OpenChat)? Basically the same thing. +では、Square(オープンチャット)ではどうすればいいでしょうか?基本的には同じことです。 ```ts client.on("square:message", async (message) => { @@ -100,11 +98,11 @@ client.on("square:message", async (message) => { }); ``` -With this alone you can create a basic bot.\ -There are many more features! +これだけで基本的なBOTを作成できます。\ +他にもたくさんの機能があります! -Stay tuned for our next journey. +次の体験をお楽しみに。 -:::tip If you encounter problems, please refer to [Question](/docs/question), -not only here. +:::tip +問題が発生した場合は、[質問](/docs/question)も参照してください。 ::: From 9d7b54375e259ff336efd25569a87991a0eb6924 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:38:53 +0900 Subject: [PATCH 11/25] Add JA Ver of methods.md / question.md --- docs/ja/docs/methods.md | 19 +++++++++---------- docs/ja/docs/question.md | 4 ++-- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/docs/ja/docs/methods.md b/docs/ja/docs/methods.md index 2e049d9f..d9739557 100644 --- a/docs/ja/docs/methods.md +++ b/docs/ja/docs/methods.md @@ -1,10 +1,10 @@ -# Methods +# メソッド -## Talk Methods +## Talkメソッド -All the functions for TalkService are in `client.talk`. +TalkServiceのすべての関数は`client.talk`にあります。 -For example: +例: ```js await client.talk.sendMessage({ @@ -14,14 +14,13 @@ await client.talk.sendMessage({ }); ``` -This is an example of encrypting a text message with e2ee and sending it to a -user. +上記はテキストメッセージをe2eeで暗号化してユーザーに送信する例です。 -## Square Methods +## Squareメソッド -All the functions for SquareService are in `client.square`. +SquareServiceのすべての関数は`client.square`にあります。 -For example: +例: ```js await client.square.findSquareByInvitationTicket({ @@ -31,4 +30,4 @@ await client.square.findSquareByInvitationTicket({ }); ``` -This is an example of getting square from invitation code. +上記は招待コードからスクエアを取得する例です。 diff --git a/docs/ja/docs/question.md b/docs/ja/docs/question.md index 7d378c55..4368661e 100644 --- a/docs/ja/docs/question.md +++ b/docs/ja/docs/question.md @@ -1,5 +1,5 @@ -# Question +# 質問 -This is our server. Feel free to ask questions! +私たちのサーバーです。気軽に質問してください! [https://discord.gg/evex](https://discord.gg/evex) From 21730bdf9fa4a1a3c12ca0159f8dd9cdf62a1b05 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:39:58 +0900 Subject: [PATCH 12/25] Unify wording --- docs/ja/docs/start-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ja/docs/start-2.md b/docs/ja/docs/start-2.md index ed1fc7ba..b07ef9d6 100644 --- a/docs/ja/docs/start-2.md +++ b/docs/ja/docs/start-2.md @@ -1,4 +1,4 @@ -# クライアントメソッドの使い方 +# Clientメソッドの使い方 次に、クライアントのメソッドの使い方を説明します。 From 43e68b3fb3801c7cd70e5e42e80652eea068cfbb Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:47:53 +0900 Subject: [PATCH 13/25] Add JA Ver of client-options.md / authors.md --- docs/ja/docs/authors.md | 2 +- docs/ja/docs/client-options.md | 38 +++++++++++++++------------------- 2 files changed, 18 insertions(+), 22 deletions(-) diff --git a/docs/ja/docs/authors.md b/docs/ja/docs/authors.md index ba473bc3..c5a0a184 100644 --- a/docs/ja/docs/authors.md +++ b/docs/ja/docs/authors.md @@ -1,6 +1,6 @@ # Authors -Maintainers of **LINEJS** +**LINEJS**の主要な開発者 ## Maintainers diff --git a/docs/ja/docs/client-options.md b/docs/ja/docs/client-options.md index 7c7eba0f..a4819b56 100644 --- a/docs/ja/docs/client-options.md +++ b/docs/ja/docs/client-options.md @@ -1,7 +1,7 @@ -# Client Options +# Clientオプション -Next, we will talk about the Client.\ -The Client has several options. +次に、クライアントについて説明します。\ +クライアントにはいくつかのオプションがあります。 ```ts const client = new Client({ @@ -10,38 +10,34 @@ const client = new Client({ }); ``` -For example, **storage for the data** we discussed before, **OBS Endpoint**, -**Endpoint** for communication, **customFetch** for cors and proxies, -**RateLimitter** for rate limiting, etc. +例えば、前述のデータの**storage for the data**、**OBS Endpoint**、通信のための**Endpoint**、CORSやプロキシのための**customFetch**、レート制限のための**RateLimitter**などがあります。 -I'll explain it to you one by one. +これらを一つずつ説明します。 ## Storage -This is storage for internal needs such as decryption keys and caches.   By -default, `MemoryStorage` is used, and once you stop the program, you must log in -from the beginning. +これは復号キーやキャッシュなどの内部のニーズのためのストレージです。\ +デフォルトでは`MemoryStorage`が使用され、プログラム停止時は最初からログインする必要があります。 -You can use `FileStorage` there. +ここで`FileStorage`を使用することができます。 ```ts import { FileStorage } from "@evex/linejs/storage"; const client = new Client({ device: "IOSIPAD", - storage: new FileStorage("./storage.json"), // path to storage file (This is secret file) + storage: new FileStorage("./storage.json"), // ストレージファイルへのパス(秘密ファイル) }); ``` -If you want to store in your cloud or storages with your data storage API, you -can extend `BaseStorage` to create something of your liking.\ -I'd like to give you more details on our server. +クラウドやデータストレージAPIを使用してストレージに保存したい場合は、`BaseStorage`を拡張して自分の好みに作成できます。\ +サーバーについての詳細をお伝えしたいと思います。 ## Endpoint -The endpoints of communication.\ -There is no need to change this point.\ -If you want to try out a proxied server, use it. +通信のエンドポイントです。\ +このポイントを変更する必要はありません。\ +プロキシサーバーを試したい場合は、使用してください。 ```ts const client = new Client({ @@ -51,7 +47,7 @@ const client = new Client({ ## Custom Fetch -This is for cors avoidance or proxy. You define a function that replaces fetch. +これはCORS回避やプロキシのためのものです。fetchを置き換える関数を定義します。 ```ts ... @@ -66,5 +62,5 @@ const client = new Client({ }); ``` -This concludes the explanation of options!\ -The next sections will introduce the various methods. +これでオプションの説明は終了です!\ +次のセクションでは、さまざまなメソッドを紹介します。 From 9c14018cea2cbc538d9fbac85bacac3da58bfcde Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:51:50 +0900 Subject: [PATCH 14/25] Add JA Ver of utils.md --- docs/ja/docs/utils.md | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/docs/ja/docs/utils.md b/docs/ja/docs/utils.md index fc92fb62..865814a8 100644 --- a/docs/ja/docs/utils.md +++ b/docs/ja/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は単なるself-bot用ライブラリではありません。 +内部URIの構築からOBSの構築、オープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 +一つずつ説明していきます。 ## LINE_OBS -Utils to retrieve images and videos from obs hash. -You can retrieve them as follows +obsハッシュから画像や動画を取得するためのユーティリティ。 +以下のように取得できます。 ```ts import { LINE_OBS } from "@evex/linejs/utils"; @@ -16,18 +16,18 @@ 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**********"); // member id (mid) +const OBS_PROFILE_IAMGE_URI = OBS.getProfileImage("u**********"); // メンバーID (mid) -const OBS_SQUARE_PROFILE_IAMGE_URI = OBS.getSquareMemberImage("p**********"); // square member id (pid) +const OBS_SQUARE_PROFILE_IAMGE_URI = OBS.getSquareMemberImage("p**********"); // squareメンバーID (pid) -// and more +// その他メソッド ``` -All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts) +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts)で確認できます。 ## LINE_SCHEME -Utils for constructing a scheme URI for LINE +LINEのスキームURIを構築するためのユーティリティ ```ts import { LINE_SCHEME } from "@evex/linejs/utils"; @@ -38,15 +38,14 @@ const SCHEME_HOME_URI = SCHEME.getHome(); const SCHEME_PROFILE_POPUP_URI = SCHEME.getProfilePopup("u**********"); -// and more +// その他メソッド ``` -All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts) - +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts)で確認できます。 ## LINE_REGEX -Utils for extracting tickets and emids from URLs. +URLからチケットやemidを抽出するためのユーティリティ。 ```ts import { LINE_REGEX } from "@evex/linejs/utils"; @@ -58,11 +57,11 @@ console.log(REGEX.getTicket("Square Invitation https://line.me/ti/g2/*********** console.log(REGEX.getEmid(".../emid=*************")); // ************* ``` -All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts) +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts)で確認できます。 ## LINE_FUNCTIONS -Utils for connecting to external APIs related to LINE +LINEに関連する外部APIに接続するためのユーティリティ ```ts import Utils from '@evex/linejs/utils'; @@ -78,6 +77,6 @@ if (squareList.error === null) { } ``` -All methods can be viewed [here](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts) +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts)で確認できます。 -The next sections will introduce the various methods. +次のセクションでは、さまざまなメソッドを紹介します。 From 1803f2d94192c609ccbf9ab9d68730bec512843e Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 17:55:38 +0900 Subject: [PATCH 15/25] Remove unnecessary space --- docs/docs/message-event.md | 2 +- docs/docs/utils.md | 10 +++++----- docs/ja/docs/message-event.md | 2 +- docs/ja/docs/utils.md | 10 +++++----- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/docs/message-event.md b/docs/docs/message-event.md index c30302d5..a1c1ccfc 100644 --- a/docs/docs/message-event.md +++ b/docs/docs/message-event.md @@ -50,7 +50,7 @@ client.on("message", (message) => { const text = message.text; if (text === "!ping") { - ... + ... } }); ``` 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/ja/docs/message-event.md b/docs/ja/docs/message-event.md index 1732ae74..6b63addc 100644 --- a/docs/ja/docs/message-event.md +++ b/docs/ja/docs/message-event.md @@ -49,7 +49,7 @@ client.on("message", (message) => { const text = message.text; if (text === "!ping") { - ... + ... } }); ``` diff --git a/docs/ja/docs/utils.md b/docs/ja/docs/utils.md index 865814a8..78495d9a 100644 --- a/docs/ja/docs/utils.md +++ b/docs/ja/docs/utils.md @@ -1,13 +1,13 @@ # ユーティリティ -LINEJSは単なるself-bot用ライブラリではありません。 -内部URIの構築からOBSの構築、オープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 -一つずつ説明していきます。 +LINEJSは単なるself-bot用ライブラリではありません。\ +内部URIの構築からOBSの構築、オープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 +一つずつ説明していきます。 ## LINE_OBS -obsハッシュから画像や動画を取得するためのユーティリティ。 -以下のように取得できます。 +obsハッシュから画像や動画を取得するためのユーティリティ。 +以下のように取得できます。 ```ts import { LINE_OBS } from "@evex/linejs/utils"; From 5186dff3c894e31f265042fb28206b19b1753e4e Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Fri, 10 Jan 2025 18:04:09 +0900 Subject: [PATCH 16/25] Run Fmt --- docs/.vitepress/config.mts | 20 +++--- docs/.vitepress/theme/style.css | 117 ++++++++++++++++---------------- 2 files changed, 68 insertions(+), 69 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 75a5edd3..45851254 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -9,18 +9,18 @@ export default defineConfig({ sitemap: { hostname: "https://linejs.evex.land", }, - locales: { + locales: { root: { - label: 'English', - lang: 'en', - link: '/' + label: "English", + lang: "en", + link: "/", }, ja: { - label: '日本語', - lang: 'ja', - link: '/ja' - } - }, + label: "日本語", + lang: "ja", + link: "/ja", + }, + }, themeConfig: { // https://vitepress.dev/reference/default-theme-config siteTitle: "LINEJS Docs", @@ -34,7 +34,7 @@ export default defineConfig({ { text: "Examples", link: "https://github.com/evex-dev/linejs/tree/main/examples", - } + }, ], sidebar: { diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css index e9b8b383..3a0f13de 100644 --- a/docs/.vitepress/theme/style.css +++ b/docs/.vitepress/theme/style.css @@ -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; } - From 5b18d91246710f0b2d1be18dcd47fe01d5f56f52 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 22:18:24 +0900 Subject: [PATCH 17/25] Add JA to headers, etc --- deno.json | 3 +- docs/.vitepress/config.mts | 69 ++++++++++++++++++++++++++++----- docs/.vitepress/theme/style.css | 2 +- docs/index.md | 4 +- docs/ja/index.md | 2 +- 5 files changed, 64 insertions(+), 16 deletions(-) diff --git a/deno.json b/deno.json index f592c317..3807f445 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 45851254..f8478571 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -14,11 +14,43 @@ export default defineConfig({ 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: "切り替え", + lightModeSwitchTitle: "ライトモードにする", + darkModeSwitchTitle: "ダークモードにする", + sidebarMenuLabel: "メニュー", + returnToTopLabel: "トップに戻る", + langMenuLabel: "言語を選択", + skipToContentLabel: "コンテンツをスキップ", + outlineTitle: "ページ内", + }, }, }, themeConfig: { @@ -26,17 +58,34 @@ export default defineConfig({ 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: { "/docs/": [ { diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css index 3a0f13de..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`. * diff --git a/docs/index.md b/docs/index.md index 5d67e469..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" @@ -13,7 +12,6 @@ hero: - theme: alt text: Examples 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/index.md b/docs/ja/index.md index 109a35d8..4638b213 100644 --- a/docs/ja/index.md +++ b/docs/ja/index.md @@ -4,7 +4,7 @@ layout: home hero: image: /favicon.png - name: "LINEJS ドキュメント" + name: "LINEJS \nドキュメント" tagline: LINEJSはLINE SelfBotのための画期的なJSライブラリ actions: - theme: brand From e93bc11d1e98664b53bfd304825836c13034aa70 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 22:34:36 +0900 Subject: [PATCH 18/25] Fix auth.md --- docs/.vitepress/config.mts | 6 +++--- docs/ja/docs/auth.md | 12 ++++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index f8478571..6c67664e 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -43,13 +43,13 @@ export default defineConfig({ next: "次のページ", }, darkModeSwitchLabel: "切り替え", - lightModeSwitchTitle: "ライトモードにする", darkModeSwitchTitle: "ダークモードにする", + lightModeSwitchTitle: "ライトモードにする", sidebarMenuLabel: "メニュー", - returnToTopLabel: "トップに戻る", langMenuLabel: "言語を選択", - skipToContentLabel: "コンテンツをスキップ", outlineTitle: "ページ内", + returnToTopLabel: "トップに戻る", + skipToContentLabel: "コンテンツをスキップ", }, }, }, diff --git a/docs/ja/docs/auth.md b/docs/ja/docs/auth.md index d7353afc..7204cc87 100644 --- a/docs/ja/docs/auth.md +++ b/docs/ja/docs/auth.md @@ -8,6 +8,8 @@ LINEJSには2つのログイン方法があります。 ### `loginWithPassword` +メアドとパスワードが必要です。 + 例: ```ts import { loginWithPassword } from "@evex/linejs"; @@ -21,12 +23,13 @@ const client = loginWithPassword({ }) ``` -メアドとパスワードが必要です。初回ログイン時、スマホ版のLINEでPinを入力し、e2eeを有効にする必要があります。 -`onPincodeRequest`はPinを受け取ることができます。 + +`onPincodeRequest`はPinを受け取ることができます。\ +初回ログイン時、スマホ版のLINEでPinを入力し、e2eeを有効にする必要があります。 ### `loginWithQR` -この方法では、メアドとパスワードは不要です。 +メアドとパスワードは必要ありません。 ```ts import { loginWithQR } from '@evex/linejs' @@ -38,7 +41,8 @@ const client = loginWithQR({ }) ``` -この関数はスマホ版LINEで読み込む為のURLを表示します。QRコードを表示したい場合は、自分でQRコードを作成する必要があります。これはLINEJSがQRコードの作成をサポートしていないためです。 +この関数はスマホ版LINEで読み込む為のURLを表示します。\ +LINEJSではQRコードの作成をサポートしていないため、画像として表示したい場合は自分で作成する必要があります。 ## With authToken From 457db2eb7fd321855d6cde4ce9f62e81fea175b1 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 22:49:51 +0900 Subject: [PATCH 19/25] Fix start.md, start-2.md --- docs/docs/start.md | 3 ++- docs/ja/docs/auth.md | 1 - docs/ja/docs/start-2.md | 35 ++++++++++++++++------------------- docs/ja/docs/start.md | 18 +++++++++--------- 4 files changed, 27 insertions(+), 30 deletions(-) diff --git a/docs/docs/start.md b/docs/docs/start.md index 7e2927d1..3067af03 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/ja/docs/auth.md b/docs/ja/docs/auth.md index 7204cc87..5232a186 100644 --- a/docs/ja/docs/auth.md +++ b/docs/ja/docs/auth.md @@ -47,4 +47,3 @@ LINEJSではQRコードの作成をサポートしていないため、画像と ## With authToken 短時間に何度もログインを試みるとアカウントがBANされる可能性があるため、認証にはauthTokenを使用することをおすすめします。 - diff --git a/docs/ja/docs/start-2.md b/docs/ja/docs/start-2.md index b07ef9d6..3a90903f 100644 --- a/docs/ja/docs/start-2.md +++ b/docs/ja/docs/start-2.md @@ -1,6 +1,4 @@ -# Clientメソッドの使い方 - -次に、クライアントのメソッドの使い方を説明します。 +# クライアントメソッドの使い方 次のように呼び出すだけです。簡単です。 @@ -24,13 +22,13 @@ await client.login({ password: "YOUR_PASSWORD", }); -// または、QRコードを使用してログインできます。 +// もしくはQRコードを使用してログインできます。 await client.login({ qr: true, }); ``` -出力は次のようになります。 +出力: ```console { @@ -41,21 +39,18 @@ await client.login({ } ``` -ここで一つ追記、ログインには別の選択肢があります。 - メアドでのログインを繰り返すと、不正ログインと見なされる可能性があり、\ -アカウントが一時的にBANされることがあります(数日間だけですが...)\ +アカウントが一時的にBANされることがあります(数日間だけですが...) -**AuthToken**を使用するのが良い方法です。 +なので**AuthToken**を使用するのが良いログイン方法です。 -メアドログインには期限のある一時的なトークンが使用されます。\ -期限が切れると動作を停止します。\ -永久に動作させたい場合は、v1トークンを使用する必要があります。 +メアドログインでは、期限が切れると停止する一時的なトークンが使用されます。\ +長期間動作させたい場合は、v1トークンを使用する必要があります。 開発時はv2トークンを使用するのが良いでしょう。\ -メアドログインを何度も繰り返すことはおすすめしません。 +繰り返しにはなりますが、メアドログインを何度も繰り返すことは強くおすすめしていません。 -では、トークンを取得する方法を見てみましょう。 +それでは、トークンを取得する方法を見てみましょう。 次のように書くだけです。 @@ -65,13 +60,13 @@ client.on("update:authtoken", (authtoken) => { }); ``` -出力は次のようになります。 +出力: ```console AuthToken **********.******** ``` -これはv2トークンです。次のように使用できます。 +上記はv2トークンです。次のように使用できます。 ```ts await client.login({ @@ -79,7 +74,7 @@ await client.login({ }); ``` -## 重要な注意点 +## 注意点 このログイン方法には落とし穴があります。LINEは_e2ee_を使用して暗号化していますが、\ これを解読するキーはPin付きのメアドログインまたはQRログインでしか取得できません。 @@ -107,8 +102,7 @@ const client = new Client({ 最初の一回だけメールでログインし、その後はauthTokenを使用すれば良いのです。 -これで最初の体験は終わりです。まだ続きます。\ -楽しんでください。 + ::: tip クラウドAPIに接続するなど、自分のストレージを作成したい場合は、 @@ -119,3 +113,6 @@ const client = new Client({ 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 index 49f2c4f0..19295497 100644 --- a/docs/ja/docs/start.md +++ b/docs/ja/docs/start.md @@ -1,7 +1,7 @@ # はじめに -このライブラリを選んでくれてありがとう! +まずは、LINEJSライブラリを選んでくれてありがとうございます! ## インストール @@ -12,13 +12,13 @@ bunx --bun jsr add @evex/linejs # Bunを使う場合 deno add @evex/linejs # Denoを使う場合 ``` -実行後、ライブラリが利用可能になります。 +完了後、ライブラリが利用可能になります。 ## 使い方 -次に、自分のプロフィールを取得するだけのスクリプトを作成しましょう! +自分のプロフィールを取得するだけのスクリプトを作成してみましょう。 -クライアントを作成するには、`loginWithPassword`を使用します。 +クライアントの作成には`loginWithPassword`を使用します。 ```ts import { loginWithPassword } from "@evex/linejs"; @@ -31,11 +31,11 @@ const client = loginWithPassword({ }) ``` -認証は複雑なプロセスなので、[こちら](./auth.md)を読んでください。 +複雑なプロセスなので認証については[こちら](./auth.md)を読んでください。 -クライアント作成後、色々なことができます! +クライアント作成後は、様々な機能を使うことが可能になります。 -例えば、参加しているチャットの情報を取得: +例えば、参加しているチャットの情報を取得する例: ```ts const chats = await client.fetchChats() console.log(chats[0].name) @@ -44,5 +44,5 @@ console.log(chats[0].name) --- このライブラリはまだ初期段階です!\ -バグ不足している部分を見つけた場合は、Discordサーバーでお知らせください! -(バグや機能を提案してくれた方にはロールが付与されるかも!) +バグ不足している部分を見つけた場合は、Discordサーバーでお知らせください!\ +(バグや機能を提案してくれた方にはロールが付与されるかもしれません) \ No newline at end of file From 52ec2386e73fee32bfd94a803e98c2eaece37862 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 22:55:10 +0900 Subject: [PATCH 20/25] Fix utils.md --- docs/ja/docs/authors.md | 2 +- docs/ja/docs/utils.md | 28 +++++++++++++++------------- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/docs/ja/docs/authors.md b/docs/ja/docs/authors.md index c5a0a184..3eae2c95 100644 --- a/docs/ja/docs/authors.md +++ b/docs/ja/docs/authors.md @@ -1,6 +1,6 @@ # Authors -**LINEJS**の主要な開発者 +**LINEJS**の開発者たち ## Maintainers diff --git a/docs/ja/docs/utils.md b/docs/ja/docs/utils.md index 78495d9a..2f7b2824 100644 --- a/docs/ja/docs/utils.md +++ b/docs/ja/docs/utils.md @@ -1,13 +1,14 @@ # ユーティリティ LINEJSは単なるself-bot用ライブラリではありません。\ -内部URIの構築からOBSの構築、オープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 -一つずつ説明していきます。 +内部URIの構築からOBSの構築やオープンチャット検索、emid、チケットを取得するための正規表現など、多岐にわたります。 +順番に説明していきます。 ## LINE_OBS -obsハッシュから画像や動画を取得するためのユーティリティ。 -以下のように取得できます。 +obsハッシュから画像や動画を取得するためのもの。 +以下のように取得できます。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts) ```ts import { LINE_OBS } from "@evex/linejs/utils"; @@ -23,11 +24,12 @@ const OBS_SQUARE_PROFILE_IAMGE_URI = OBS.getSquareMemberImage("p**********"); // // その他メソッド ``` -すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/obs/index.ts)で確認できます。 + ## LINE_SCHEME -LINEのスキームURIを構築するためのユーティリティ +LINEのスキームURIを構築するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts) ```ts import { LINE_SCHEME } from "@evex/linejs/utils"; @@ -41,11 +43,12 @@ const SCHEME_PROFILE_POPUP_URI = SCHEME.getProfilePopup("u**********"); // その他メソッド ``` -すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/scheme/index.ts)で確認できます。 + ## LINE_REGEX -URLからチケットやemidを抽出するためのユーティリティ。 +URLからチケットやemidを抽出するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts) ```ts import { LINE_REGEX } from "@evex/linejs/utils"; @@ -57,11 +60,12 @@ console.log(REGEX.getTicket("Square Invitation https://line.me/ti/g2/*********** console.log(REGEX.getEmid(".../emid=*************")); // ************* ``` -すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/regex/index.ts)で確認できます。 + ## LINE_FUNCTIONS -LINEに関連する外部APIに接続するためのユーティリティ +LINEに関連する外部APIに接続するためのもの。\ +すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts) ```ts import Utils from '@evex/linejs/utils'; @@ -77,6 +81,4 @@ if (squareList.error === null) { } ``` -すべてのメソッドは[こちら](https://github.com/evex-dev/linejs/blob/main/packages/linejs/utils/functions/index.ts)で確認できます。 - -次のセクションでは、さまざまなメソッドを紹介します。 +次のセクションでは、他のさまざまなメソッドを紹介します。 From d953ea1132498669ba161a4a175e542f40bea6e9 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 22:57:17 +0900 Subject: [PATCH 21/25] Fix methods.md, question.md --- docs/ja/docs/methods.md | 4 ++-- docs/ja/docs/question.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ja/docs/methods.md b/docs/ja/docs/methods.md index d9739557..6b268953 100644 --- a/docs/ja/docs/methods.md +++ b/docs/ja/docs/methods.md @@ -1,6 +1,6 @@ # メソッド -## Talkメソッド +## Talk Method TalkServiceのすべての関数は`client.talk`にあります。 @@ -16,7 +16,7 @@ await client.talk.sendMessage({ 上記はテキストメッセージをe2eeで暗号化してユーザーに送信する例です。 -## Squareメソッド +## Square Method SquareServiceのすべての関数は`client.square`にあります。 diff --git a/docs/ja/docs/question.md b/docs/ja/docs/question.md index 4368661e..8d824001 100644 --- a/docs/ja/docs/question.md +++ b/docs/ja/docs/question.md @@ -1,5 +1,5 @@ -# 質問 +# お問い合わせ -私たちのサーバーです。気軽に質問してください! +私たちのサーバーで気軽に質問してください! [https://discord.gg/evex](https://discord.gg/evex) From 8330347c4cbea9df41f1c2ee25ae34202c95f28e Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 23:06:10 +0900 Subject: [PATCH 22/25] Fix message-event.md --- docs/ja/docs/message-event.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/ja/docs/message-event.md b/docs/ja/docs/message-event.md index 6b63addc..95747a81 100644 --- a/docs/ja/docs/message-event.md +++ b/docs/ja/docs/message-event.md @@ -1,18 +1,18 @@ # メッセージイベントの受信 -次のステップは、ついにメッセージを受信することです。\ +次のステップは、メッセージを受信してみましょう。\ ますますボットらしくなってきましたね! :::warning -ただし、グループのメッセージを受信するには、`FileStorage`などにある復号キーが必要です。 -詳細は[スタート2](/docs/start-2)を参照してください。 +グループのメッセージを受信するには、`FileStorage`などにある復号キーが必要です。\ +詳細は[こちら](/ja/docs/start-2)を参照してください。 ::: -まず、「!ping」を受信して「pong!」と返すだけのボットを作成しましょう。 +「!ping」を受信し「pong!」と返すだけのボットを作成してみましょう。 ## Chat -メッセージを受信するには、次のようにします。 +まずは、メッセージを受信してみましょう。 ```ts client.on("message", (message) => { @@ -23,9 +23,7 @@ await client.login({...}) client.polling(["square","talk"]) ``` -これだけでメッセージを受信できます。簡単でしょ? - -ではまず、送信されたメッセージを取得してみましょう。 +メッセージを受信し、表示してみます。 ```ts client.on("message", (message) => { @@ -54,9 +52,9 @@ client.on("message", (message) => { }); ``` -完璧です。次はリプライをさせてみましょう。 +完璧ですね!今度はリプライをさせてみましょう。 -リプライをするには、`messageId`と`relatedMessageId`を使用することもできますが、もっと便利な方法があります。 +リプライをするには`messageId`と`relatedMessageId`を使用しますが、もっと便利な方法があります。 ```ts client.on("message", (message) => { @@ -68,7 +66,8 @@ client.on("message", (message) => { }); ``` -なんて美しいコードでしょう!とても簡単です。しかし、非同期関数で囲む方がもっと美しいです。 +美しいシンプルなコードの完成です!\ +非同期関数で囲むことで、さらに美しくすることが可能です。 ```ts client.on("message", async (message) => { @@ -86,7 +85,8 @@ client.on("message", async (message) => { ## Square -では、Square(オープンチャット)ではどうすればいいでしょうか?基本的には同じことです。 +さて、Square(オープンチャット)ではどうすればいいのでしょうか?\ +基本的には同じことです。 ```ts client.on("square:message", async (message) => { @@ -104,5 +104,5 @@ client.on("square:message", async (message) => { 次の体験をお楽しみに。 :::tip -問題が発生した場合は、[質問](/docs/question)も参照してください。 +問題が発生した場合は、[お問い合わせ](/ja/docs/question)を参照してください。 ::: From 4686b81af450b3662b076ac9e2b6df825e459fa7 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 23:14:47 +0900 Subject: [PATCH 23/25] Fix client-options.md --- docs/ja/docs/client-options.md | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/docs/ja/docs/client-options.md b/docs/ja/docs/client-options.md index a4819b56..e856f01b 100644 --- a/docs/ja/docs/client-options.md +++ b/docs/ja/docs/client-options.md @@ -1,7 +1,6 @@ -# Clientオプション +# クライアントオプション -次に、クライアントについて説明します。\ -クライアントにはいくつかのオプションがあります。 +次に、クライアントのオプションについて説明します。 ```ts const client = new Client({ @@ -10,16 +9,16 @@ const client = new Client({ }); ``` -例えば、前述のデータの**storage for the data**、**OBS Endpoint**、通信のための**Endpoint**、CORSやプロキシのための**customFetch**、レート制限のための**RateLimitter**などがあります。 +オプションは数種類あり、**storage for the data**や**OBS Endpoint**、通信用の**Endpoint**、CORSやプロキシのための**customFetch**、レート制限のための**RateLimitter**などがあります。 これらを一つずつ説明します。 ## Storage -これは復号キーやキャッシュなどの内部のニーズのためのストレージです。\ +復号キーやキャッシュなどの内部処理のためのストレージです。\ デフォルトでは`MemoryStorage`が使用され、プログラム停止時は最初からログインする必要があります。 -ここで`FileStorage`を使用することができます。 +`FileStorage`を使用することもできます: ```ts import { FileStorage } from "@evex/linejs/storage"; @@ -30,14 +29,13 @@ const client = new Client({ }); ``` -クラウドやデータストレージAPIを使用してストレージに保存したい場合は、`BaseStorage`を拡張して自分の好みに作成できます。\ -サーバーについての詳細をお伝えしたいと思います。 +クラウドやデータストレージAPIを使用してストレージに保存したい場合は、`BaseStorage`を拡張して自分の好みに作成できます。 ## Endpoint -通信のエンドポイントです。\ -このポイントを変更する必要はありません。\ -プロキシサーバーを試したい場合は、使用してください。 +通常、変更する必要はありませんが、通信のエンドポイントです。 + +プロキシサーバーを試したい場合: ```ts const client = new Client({ @@ -47,7 +45,7 @@ const client = new Client({ ## Custom Fetch -これはCORS回避やプロキシのためのものです。fetchを置き換える関数を定義します。 +CORS回避やプロキシのためのものです。fetchを置き換える関数を定義します: ```ts ... @@ -62,5 +60,5 @@ const client = new Client({ }); ``` -これでオプションの説明は終了です!\ +オプションの説明は以上です!\ 次のセクションでは、さまざまなメソッドを紹介します。 From 249d45d77fcecd93c82fe6419d7831d054c0b5d6 Mon Sep 17 00:00:00 2001 From: MocA-Love Date: Fri, 10 Jan 2025 23:16:24 +0900 Subject: [PATCH 24/25] Fix typo --- docs/.vitepress/config.mts | 4 ++-- docs/ja/docs/methods.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 6c67664e..6fc011ba 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -114,7 +114,7 @@ export default defineConfig({ { 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/client-options" }, // { text: "ユーティリティ", link: "/ja/docs/utils" }, { text: "メソッド", link: "/ja/docs/methods" }, ], @@ -123,7 +123,7 @@ export default defineConfig({ text: "ガイド", items: [ { text: "作成者", link: "/ja/docs/authors" }, - { text: "質問", link: "/ja/docs/question" }, + { text: "お問い合わせ", link: "/ja/docs/question" }, ], }, ], diff --git a/docs/ja/docs/methods.md b/docs/ja/docs/methods.md index 6b268953..cd33de15 100644 --- a/docs/ja/docs/methods.md +++ b/docs/ja/docs/methods.md @@ -4,7 +4,7 @@ TalkServiceのすべての関数は`client.talk`にあります。 -例: +例: ```js await client.talk.sendMessage({ @@ -20,7 +20,7 @@ await client.talk.sendMessage({ SquareServiceのすべての関数は`client.square`にあります。 -例: +例: ```js await client.square.findSquareByInvitationTicket({ From 570063bcff58d3b7222424dc3919cd017e3be771 Mon Sep 17 00:00:00 2001 From: Moca-Love Date: Wed, 19 Feb 2025 11:42:07 +0900 Subject: [PATCH 25/25] deno fmt --- docs/.vitepress/config.mts | 5 +- packages/linejs/base/core/mod.ts | 6 +- packages/linejs/base/login/mod.ts | 10 +- packages/linejs/base/obs/mod.ts | 3 +- packages/linejs/base/polling/mod.ts | 10 +- packages/linejs/base/request/mod.ts | 15 +- .../linejs/base/thrift/readwrite/struct.ts | 15270 ++-- packages/linejs/client/features/chat/mod.ts | 4 +- .../linejs/client/features/message/talk.ts | 3 +- packages/linejs/client/features/square/mod.ts | 3 +- packages/linejs/client/mod.ts | 14 +- packages/types/line_types.ts | 23072 ++--- packages/types/thrift.ts | 75244 ++++++++-------- 13 files changed, 58858 insertions(+), 54801 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 6fc011ba..5529ef8b 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -114,7 +114,10 @@ export default defineConfig({ { 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/client-options", + }, // { text: "ユーティリティ", link: "/ja/docs/utils" }, { text: "メソッド", link: "/ja/docs/methods" }, ], 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/login/mod.ts b/packages/linejs/base/login/mod.ts index 419121be..0eb8c68d 100644 --- a/packages/linejs/base/login/mod.ts +++ b/packages/linejs/base/login/mod.ts @@ -111,27 +111,27 @@ export class Login { /** * Logs in the user using the provided options. - * + * * Depending on the options provided, this method will: * - Use QR code authentication if no options are provided or if `options.qr` is true. * - Use an authentication token if `options.authToken` is provided. * - Use email and password authentication if `options.email` is provided. - * + * * @param {LoginOption} [options] - The login options. * @param {boolean} [options.qr] - Whether to use QR code authentication. * @param {boolean} [options.v3] - Whether to use version 3 of QR code authentication. * @param {string} [options.authToken] - The authentication token. * @param {string} [options.email] - The user's email. * @param {string} [options.password] - The user's password. - * + * * @example * // Login with QR code * await login(); - * + * * @example * // Login with authentication token * await login({ authToken: 'your-auth-token' }); - * + * * @example * // Login with email and password * await login({ email: 'user@example.com', password: 'your-password' }); diff --git a/packages/linejs/base/obs/mod.ts b/packages/linejs/base/obs/mod.ts index 26e315a5..8825ceda 100644 --- a/packages/linejs/base/obs/mod.ts +++ b/packages/linejs/base/obs/mod.ts @@ -339,8 +339,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/request/mod.ts b/packages/linejs/base/request/mod.ts index a1dcc854..e61f02be 100644 --- a/packages/linejs/base/request/mod.ts +++ b/packages/linejs/base/request/mod.ts @@ -14,13 +14,13 @@ const square = ["/SQ1", "/SQLV1"]; /** * @class RequestClient * @description A client for making requests to the LINE API. - * + * * @property {BaseClient} client - The base client instance. * @property {string} endpoint - The endpoint for the API requests. * @property {string} userAgent - The user agent string for the requests. * @property {string} systemType - The system type string for the requests. * @property {Record} EXCEPTION_TYPES - A static record of exception types based on request paths. - * + * * @constructor * @param {BaseClient} client - The base client instance. */ @@ -166,7 +166,8 @@ export class RequestClient { res = this.client.thrift.readThrift(parsedBody, protocol); } catch { throw new Error( - `Request internal failed: Invalid response buffer <${[...parsedBody].map((e) => e.toString(16)).join(" ") + `Request internal failed: Invalid response buffer <${ + [...parsedBody].map((e) => e.toString(16)).join(" ") }>`, ); } @@ -218,15 +219,15 @@ export class RequestClient { const isRefresh = Boolean( res.data.e && - res.data.e["code"] === "MUST_REFRESH_V3_TOKEN" && - await this.client.storage.get("refreshToken"), + res.data.e["code"] === "MUST_REFRESH_V3_TOKEN" && + await this.client.storage.get("refreshToken"), ); if (res.data.e && !isRefresh) { throw new InternalError( "RequestError", `Request internal failed, ${methodName}(${path}) -> ` + - JSON.stringify(res.data.e), + JSON.stringify(res.data.e), res.data.e, ); } @@ -234,7 +235,7 @@ export class RequestClient { throw new InternalError( "RequestError", `Request internal failed, ${methodName}(${path}) -> ` + - JSON.stringify(res.data), + JSON.stringify(res.data), res.data, ); } 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/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 2eae044f..448987b8 100644 --- a/packages/linejs/client/features/message/talk.ts +++ b/packages/linejs/client/features/message/talk.ts @@ -105,8 +105,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 222005e6..81bbd48b 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/line_types.ts b/packages/types/line_types.ts index c71a4a90..2bc1898e 100644 --- a/packages/types/line_types.ts +++ b/packages/types/line_types.ts @@ -1,6204 +1,7902 @@ // deno-lint-ignore-file - /* - * @module - * LINEJS Types - * Autogenerated by gen_typedef.ts - * Time 1/23/2025, 10:32:32 PM - */ - +/* + * @module + * LINEJS Types + * Autogenerated by gen_typedef.ts + * Time 1/23/2025, 10:32:32 PM + */ + type Int64 = number | bigint; import type { Buffer } from "node:buffer"; export type { Pb1_C13154r6 as Operation, Pb1_EnumC13151r3 as ContactRelation }; -export const enums:{AR0_g: Record; -AR0_q: Record; -AccountMigrationPincodeType: Record; -ApplicationType: Record; -BotType: Record; -CarrierCode: Record; -ChannelErrorCode: Record; -ContactAttribute: Record; -ContactSetting: Record; -ContactStatus: Record; -ContactType: Record; -ContentType: Record; -Eg_EnumC8927a: Record; -EmailConfirmationStatus: Record; -ErrorCode: Record; -Fg_a: Record; -FriendRequestStatus: Record; -IdentityProvider: Record; -LN0_F0: Record; -LN0_X0: Record; -MIDType: Record; -NZ0_B0: Record; -NZ0_C0: Record; -NZ0_EnumC12154b1: Record; -NZ0_EnumC12169g1: Record; -NZ0_EnumC12170h: Record; -NZ0_EnumC12188n: Record; -NZ0_EnumC12192o0: Record; -NZ0_EnumC12193o1: Record; -NZ0_EnumC12195p0: Record; -NZ0_EnumC12197q: Record; -NZ0_EnumC12218x0: Record; -NZ0_I0: Record; -NZ0_K0: Record; -NZ0_N0: Record; -NZ0_S0: Record; -NZ0_W0: Record; -NotificationStatus: Record; -NotificationType: Record; -Ob1_B0: Record; -Ob1_C1: Record; -Ob1_D0: Record; -Ob1_EnumC12607a1: Record; -Ob1_EnumC12610b1: Record; -Ob1_EnumC12631i1: Record; -Ob1_EnumC12638l: Record; -Ob1_EnumC12641m: Record; -Ob1_EnumC12652p1: Record; -Ob1_EnumC12656r0: Record; -Ob1_EnumC12664u: Record; -Ob1_EnumC12666u1: Record; -Ob1_F1: Record; -Ob1_I: Record; -Ob1_J0: Record; -Ob1_J1: Record; -Ob1_K1: Record; -Ob1_M1: Record; -Ob1_O0: Record; -Ob1_O1: Record; -Ob1_P1: Record; -Ob1_Q1: Record; -Ob1_R1: Record; -Ob1_U1: Record; -Ob1_V1: Record; -Ob1_X1: Record; -Ob1_a2: Record; -Ob1_c2: Record; -OpType: Record; -P70_g: Record; -PaidCallType: Record; -PayloadType: Record; -Pb1_A0: Record; -Pb1_A3: Record; -Pb1_B: Record; -Pb1_D0: Record; -Pb1_D4: Record; -Pb1_D6: Record; -Pb1_E7: Record; -Pb1_EnumC12917a6: Record; -Pb1_EnumC12926b1: Record; -Pb1_EnumC12941c2: Record; -Pb1_EnumC12945c6: Record; -Pb1_EnumC12970e3: Record; -Pb1_EnumC12997g2: Record; -Pb1_EnumC12998g3: Record; -Pb1_EnumC13009h0: Record; -Pb1_EnumC13010h1: Record; -Pb1_EnumC13015h6: Record; -Pb1_EnumC13022i: Record; -Pb1_EnumC13029i6: Record; -Pb1_EnumC13037j0: Record; -Pb1_EnumC13050k: Record; -Pb1_EnumC13082m3: Record; -Pb1_EnumC13093n0: Record; -Pb1_EnumC13127p6: Record; -Pb1_EnumC13128p7: Record; -Pb1_EnumC13148r0: Record; -Pb1_EnumC13151r3: Record; -Pb1_EnumC13162s0: Record; -Pb1_EnumC13196u6: Record; -Pb1_EnumC13209v5: Record; -Pb1_EnumC13221w3: Record; -Pb1_EnumC13222w4: Record; -Pb1_EnumC13237x5: Record; -Pb1_EnumC13238x6: Record; -Pb1_EnumC13251y5: Record; -Pb1_EnumC13252y6: Record; -Pb1_EnumC13260z0: Record; -Pb1_EnumC13267z7: Record; -Pb1_F0: Record; -Pb1_F4: Record; -Pb1_F5: Record; -Pb1_F6: Record; -Pb1_G3: Record; -Pb1_G4: Record; -Pb1_G6: Record; -Pb1_H6: Record; -Pb1_I6: Record; -Pb1_J4: Record; -Pb1_K2: Record; -Pb1_K6: Record; -Pb1_L2: Record; -Pb1_L4: Record; -Pb1_M6: Record; -Pb1_N6: Record; -Pb1_O2: Record; -Pb1_O6: Record; -Pb1_P6: Record; -Pb1_Q2: Record; -Pb1_R3: Record; -Pb1_S7: Record; -Pb1_T3: Record; -Pb1_T7: Record; -Pb1_V7: Record; -Pb1_W2: Record; -Pb1_W3: Record; -Pb1_X1: Record; -Pb1_X2: Record; -Pb1_Z2: Record; -Pb1_gd: Record; -Pb1_od: Record; -PointErrorCode: Record; -Q70_q: Record; -Q70_r: Record; -Qj_EnumC13584a: Record; -Qj_EnumC13585b: Record; -Qj_EnumC13588e: Record; -Qj_EnumC13592i: Record; -Qj_EnumC13597n: Record; -Qj_EnumC13604v: Record; -Qj_EnumC13605w: Record; -Qj_EnumC13606x: Record; -Qj_a0: Record; -Qj_e0: Record; -Qj_h0: Record; -Qj_i0: Record; -R70_e: Record; -RegistrationType: Record; -ReportType: Record; -S70_a: Record; -SettingsAttributeEx: Record; -SnsIdType: Record; -SpammerReason: Record; -SpotCategory: Record; -SquareAttribute: Record; -SquareAuthorityAttribute: Record; -SquareChatType: Record; -SquareMemberAttribute: Record; -SquareMembershipState: Record; -StickerResourceType: Record; -SyncCategory: Record; -T70_C: Record; -T70_EnumC14390b: Record; -T70_EnumC14392c: Record; -T70_EnumC14406j: Record; -T70_K: Record; -T70_L: Record; -T70_Z0: Record; -T70_e1: Record; -T70_j1: Record; -U70_c: Record; -Uf_EnumC14873o: Record; -VR0_l: Record; -VerificationMethod: Record; -VerificationResult: Record; -WR0_a: Record; -a80_EnumC16644b: Record; -FetchDirection: Record; -LiveTalkEventType: Record; -LiveTalkReportType: Record; -MessageSummaryReportType: Record; -NotificationPostType: Record; -SquareEventStatus: Record; -SquareEventType: Record; -AdScreen: Record; -BooleanState: Record; -ChatroomPopupType: Record; -ContentsAttribute: Record; -FetchType: Record; -LiveTalkAttribute: Record; -LiveTalkRole: Record; -LiveTalkSpeakerSetting: Record; -LiveTalkType: Record; -MessageReactionType: Record; -NotifiedMessageType: Record; -PopupAttribute: Record; -PopupType: Record; -SquareChatAttribute: Record; -SquareChatFeatureControlState: Record; -SquareChatMemberAttribute: Record; -SquareChatMembershipState: Record; -SquareChatState: Record; -SquareEmblem: Record; -SquareErrorCode: Record; -SquareFeatureControlState: Record; -SquareFeatureSetAttribute: Record; -SquareJoinMethodType: Record; -SquareMemberRelationState: Record; -SquareMemberRole: Record; -SquareMessageState: Record; -SquareMetadataAttribute: Record; -SquarePreferenceAttribute: Record; -SquareProviderType: Record; -SquareState: Record; -SquareThreadAttribute: Record; -SquareThreadMembershipState: Record; -SquareThreadState: Record; -SquareType: Record; -TargetChatType: Record; -TargetUserType: Record; -do0_EnumC23139B: Record; -do0_EnumC23147e: Record; -do0_EnumC23148f: Record; -do0_G: Record; -do0_M: Record; -fN0_EnumC24466B: Record; -fN0_EnumC24467C: Record; -fN0_EnumC24469a: Record; -fN0_F: Record; -fN0_G: Record; -fN0_H: Record; -fN0_o: Record; -fN0_p: Record; -fN0_q: Record; -g80_EnumC24993a: Record; -h80_EnumC25645e: Record; -I80_EnumC26392b: Record; -I80_EnumC26394c: Record; -I80_EnumC26408j: Record; -I80_EnumC26425y: Record; -j80_EnumC27228a: Record; -jO0_EnumC27533B: Record; -jO0_EnumC27535b: Record; -jO0_EnumC27559z: Record; -jf_EnumC27712a: Record; -jf_EnumC27717f: Record; -kf_EnumC28766a: Record; -kf_o: Record; -kf_p: Record; -kf_r: Record; -kf_u: Record; -kf_x: Record; -n80_o: Record; -o80_e: Record; -og_E: Record; -og_EnumC32661b: Record; -og_EnumC32663d: Record; -og_EnumC32671l: Record; -og_G: Record; -og_I: Record; -q80_EnumC33651c: Record; -qm_EnumC34112e: Record; -qm_s: Record; -r80_EnumC34361a: Record; -r80_EnumC34362b: Record; -r80_EnumC34365e: Record; -r80_EnumC34367g: Record; -r80_EnumC34368h: Record; -r80_EnumC34370j: Record; -r80_EnumC34371k: Record; -r80_EnumC34372l: Record; -r80_EnumC34374n: Record; -r80_EnumC34376p: Record; -r80_EnumC34377q: Record; -r80_EnumC34378s: Record; -r80_e0: Record; -r80_g0: Record; -r80_h0: Record; -r80_i0: Record; -r80_m0: Record; -r80_n0: Record; -r80_r: Record; -t80_h: Record; -t80_i: Record; -t80_n: Record; -t80_r: Record; -vh_EnumC37632c: Record; -vh_m: Record; -wm_EnumC38497a: Record; -zR0_EnumC40578c: Record; -zR0_EnumC40579d: Record; -zR0_h: Record; -zR0_j: Record; -zf_EnumC40713a: Record; -zf_EnumC40715c: Record; -zf_EnumC40716d: Record; -LoginResultType: Record;} = { - "AR0_g": { - "ILLEGAL_ARGUMENT": 16641, - "MAJOR_VERSION_NOT_SUPPORTED": 16642, - "AUTHENTICATION_FAILED": 16897, - "INTERNAL_SERVER_ERROR": 20737, - "SERVICE_UNAVAILABLE": 20739 - }, - "AR0_q": { - "NOT_PURCHASED": 0, - "SUBSCRIPTION": 1 - }, - "AccountMigrationPincodeType": { - "NOT_APPLICABLE": 0, - "NOT_SET": 1, - "SET": 2, - "NEED_ENFORCED_INPUT": 3 - }, - "ApplicationType": { - "IOS": 16, - "IOS_RC": 17, - "IOS_BETA": 18, - "IOS_ALPHA": 19, - "ANDROID": 32, - "ANDROID_RC": 33, - "ANDROID_BETA": 34, - "ANDROID_ALPHA": 35, - "WAP": 48, - "WAP_RC": 49, - "WAP_BETA": 50, - "WAP_ALPHA": 51, - "BOT": 64, - "BOT_RC": 65, - "BOT_BETA": 66, - "BOT_ALPHA": 67, - "WEB": 80, - "WEB_RC": 81, - "WEB_BETA": 82, - "WEB_ALPHA": 83, - "DESKTOPWIN": 96, - "DESKTOPWIN_RC": 97, - "DESKTOPWIN_BETA": 98, - "DESKTOPWIN_ALPHA": 99, - "DESKTOPMAC": 112, - "DESKTOPMAC_RC": 113, - "DESKTOPMAC_BETA": 114, - "DESKTOPMAC_ALPHA": 115, - "CHANNELGW": 128, - "CHANNELGW_RC": 129, - "CHANNELGW_BETA": 130, - "CHANNELGW_ALPHA": 131, - "CHANNELCP": 144, - "CHANNELCP_RC": 145, - "CHANNELCP_BETA": 146, - "CHANNELCP_ALPHA": 147, - "WINPHONE": 160, - "WINPHONE_RC": 161, - "WINPHONE_BETA": 162, - "WINPHONE_ALPHA": 163, - "BLACKBERRY": 176, - "BLACKBERRY_RC": 177, - "BLACKBERRY_BETA": 178, - "BLACKBERRY_ALPHA": 179, - "WINMETRO": 192, - "WINMETRO_RC": 193, - "WINMETRO_BETA": 194, - "WINMETRO_ALPHA": 195, - "S40": 200, - "S40_RC": 209, - "S40_BETA": 210, - "S40_ALPHA": 211, - "CHRONO": 224, - "CHRONO_RC": 225, - "CHRONO_BETA": 226, - "CHRONO_ALPHA": 227, - "TIZEN": 256, - "TIZEN_RC": 257, - "TIZEN_BETA": 258, - "TIZEN_ALPHA": 259, - "VIRTUAL": 272, - "FIREFOXOS": 288, - "FIREFOXOS_RC": 289, - "FIREFOXOS_BETA": 290, - "FIREFOXOS_ALPHA": 291, - "IOSIPAD": 304, - "IOSIPAD_RC": 305, - "IOSIPAD_BETA": 306, - "IOSIPAD_ALPHA": 307, - "BIZIOS": 320, - "BIZIOS_RC": 321, - "BIZIOS_BETA": 322, - "BIZIOS_ALPHA": 323, - "BIZANDROID": 336, - "BIZANDROID_RC": 337, - "BIZANDROID_BETA": 338, - "BIZANDROID_ALPHA": 339, - "BIZBOT": 352, - "BIZBOT_RC": 353, - "BIZBOT_BETA": 354, - "BIZBOT_ALPHA": 355, - "CHROMEOS": 368, - "CHROMEOS_RC": 369, - "CHROMEOS_BETA": 370, - "CHROMEOS_ALPHA": 371, - "ANDROIDLITE": 384, - "ANDROIDLITE_RC": 385, - "ANDROIDLITE_BETA": 386, - "ANDROIDLITE_ALPHA": 387, - "WIN10": 400, - "WIN10_RC": 401, - "WIN10_BETA": 402, - "WIN10_ALPHA": 403, - "BIZWEB": 416, - "BIZWEB_RC": 417, - "BIZWEB_BETA": 418, - "BIZWEB_ALPHA": 419, - "DUMMYPRIMARY": 432, - "DUMMYPRIMARY_RC": 433, - "DUMMYPRIMARY_BETA": 434, - "DUMMYPRIMARY_ALPHA": 435, - "SQUARE": 448, - "SQUARE_RC": 449, - "SQUARE_BETA": 450, - "SQUARE_ALPHA": 451, - "INTERNAL": 464, - "INTERNAL_RC": 465, - "INTERNAL_BETA": 466, - "INTERNAL_ALPHA": 467, - "CLOVAFRIENDS": 480, - "CLOVAFRIENDS_RC": 481, - "CLOVAFRIENDS_BETA": 482, - "CLOVAFRIENDS_ALPHA": 483, - "WATCHOS": 496, - "WATCHOS_RC": 497, - "WATCHOS_BETA": 498, - "WATCHOS_ALPHA": 499, - "OPENCHAT_PLUG": 512, - "OPENCHAT_PLUG_RC": 513, - "OPENCHAT_PLUG_BETA": 514, - "OPENCHAT_PLUG_ALPHA": 515, - "ANDROIDSECONDARY": 528, - "ANDROIDSECONDARY_RC": 529, - "ANDROIDSECONDARY_BETA": 530, - "ANDROIDSECONDARY_ALPHA": 531, - "WEAROS": 544, - "WEAROS_RC": 545, - "WEAROS_BETA": 546, - "WEAROS_ALPHA": 547 - }, - "BotType": { - "RESERVED": 0, - "OFFICIAL": 1, - "LINE_AT_0": 2, - "LINE_AT": 3 - }, - "CarrierCode": { - "NOT_SPECIFIED": 0, - "JP_DOCOMO": 1, - "JP_AU": 2, - "JP_SOFTBANK": 3, - "JP_DOCOMO_LINE": 4, - "JP_SOFTBANK_LINE": 5, - "JP_AU_LINE": 6, - "JP_RAKUTEN": 7, - "JP_MVNO": 8, - "JP_USER_SELECTED_LINE": 9, - "KR_SKT": 17, - "KR_KT": 18, - "KR_LGT": 19 - }, - "ChannelErrorCode": { - "ILLEGAL_ARGUMENT": 0, - "INTERNAL_ERROR": 1, - "CONNECTION_ERROR": 2, - "AUTHENTICATIONI_FAILED": 3, - "NEED_PERMISSION_APPROVAL": 4, - "COIN_NOT_USABLE": 5, - "WEBVIEW_NOT_ALLOWED": 6, - "NOT_AVAILABLE_API": 7 - }, - "ContactAttribute": { - "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL": 1, - "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL": 2, - "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME": 16, - "CONTACT_ATTRIBUTE_CAPABLE_BUDDY": 32 - }, - "ContactSetting": { - "CONTACT_SETTING_NOTIFICATION_DISABLE": 1, - "CONTACT_SETTING_DISPLAY_NAME_OVERRIDE": 2, - "CONTACT_SETTING_CONTACT_HIDE": 4, - "CONTACT_SETTING_FAVORITE": 8, - "CONTACT_SETTING_DELETE": 16, - "CONTACT_SETTING_FRIEND_RINGTONE": 32, - "CONTACT_SETTING_FRIEND_RINGBACK_TONE": 64 - }, - "ContactStatus": { - "UNSPECIFIED": 0, - "FRIEND": 1, - "FRIEND_BLOCKED": 2, - "RECOMMEND": 3, - "RECOMMEND_BLOCKED": 4, - "DELETED": 5, - "DELETED_BLOCKED": 6 - }, - "ContactType": { - "MID": 0, - "PHONE": 1, - "EMAIL": 2, - "USERID": 3, - "PROXIMITY": 4, - "GROUP": 5, - "USER": 6, - "QRCODE": 7, - "PROMOTION_BOT": 8, - "CONTACT_MESSAGE": 9, - "FRIEND_REQUEST": 10, - "BEACON": 11, - "REPAIR": 128, - "FACEBOOK": 2305, - "SINA": 2306, - "RENREN": 2307, - "FEIXIN": 2308, - "BBM": 2309 - }, - "ContentType": { - "NONE": 0, - "IMAGE": 1, - "VIDEO": 2, - "AUDIO": 3, - "HTML": 4, - "PDF": 5, - "CALL": 6, - "STICKER": 7, - "PRESENCE": 8, - "GIFT": 9, - "GROUPBOARD": 10, - "APPLINK": 11, - "LINK": 12, - "CONTACT": 13, - "FILE": 14, - "LOCATION": 15, - "POSTNOTIFICATION": 16, - "RICH": 17, - "CHATEVENT": 18, - "MUSIC": 19, - "PAYMENT": 20, - "EXTIMAGE": 21, - "FLEX": 22 - }, - "Eg_EnumC8927a": { - "NEW": 1, - "UPDATE": 2, - "EVENT": 3 - }, - "EmailConfirmationStatus": { - "NOT_SPECIFIED": 0, - "NOT_YET": 1, - "DONE": 3, - "NEED_ENFORCED_INPUT": 4 - }, - "ErrorCode": { - "ILLEGAL_ARGUMENT": 0, - "AUTHENTICATION_FAILED": 1, - "DB_FAILED": 2, - "INVALID_STATE": 3, - "EXCESSIVE_ACCESS": 4, - "NOT_FOUND": 5, - "INVALID_LENGTH": 6, - "NOT_AVAILABLE_USER": 7, - "NOT_AUTHORIZED_DEVICE": 8, - "INVALID_MID": 9, - "NOT_A_MEMBER": 10, - "INCOMPATIBLE_APP_VERSION": 11, - "NOT_READY": 12, - "NOT_AVAILABLE_SESSION": 13, - "NOT_AUTHORIZED_SESSION": 14, - "SYSTEM_ERROR": 15, - "NO_AVAILABLE_VERIFICATION_METHOD": 16, - "NOT_AUTHENTICATED": 17, - "INVALID_IDENTITY_CREDENTIAL": 18, - "NOT_AVAILABLE_IDENTITY_IDENTIFIER": 19, - "INTERNAL_ERROR": 20, - "NO_SUCH_IDENTITY_IDENFIER": 21, - "DEACTIVATED_ACCOUNT_BOUND_TO_THIS_IDENTITY": 22, - "ILLEGAL_IDENTITY_CREDENTIAL": 23, - "UNKNOWN_CHANNEL": 24, - "NO_SUCH_MESSAGE_BOX": 25, - "NOT_AVAILABLE_MESSAGE_BOX": 26, - "CHANNEL_DOES_NOT_MATCH": 27, - "NOT_YOUR_MESSAGE": 28, - "MESSAGE_DEFINED_ERROR": 29, - "USER_CANNOT_ACCEPT_PRESENTS": 30, - "USER_NOT_STICKER_OWNER": 32, - "MAINTENANCE_ERROR": 33, - "ACCOUNT_NOT_MATCHED": 34, - "ABUSE_BLOCK": 35, - "NOT_FRIEND": 36, - "NOT_ALLOWED_CALL": 37, - "BLOCK_FRIEND": 38, - "INCOMPATIBLE_VOIP_VERSION": 39, - "INVALID_SNS_ACCESS_TOKEN": 40, - "EXTERNAL_SERVICE_NOT_AVAILABLE": 41, - "NOT_ALLOWED_ADD_CONTACT": 42, - "NOT_CERTIFICATED": 43, - "NOT_ALLOWED_SECONDARY_DEVICE": 44, - "INVALID_PIN_CODE": 45, - "EXCEED_FILE_MAX_SIZE": 47, - "EXCEED_DAILY_QUOTA": 48, - "NOT_SUPPORT_SEND_FILE": 49, - "MUST_UPGRADE": 50, - "NOT_AVAILABLE_PIN_CODE_SESSION": 51, - "EXPIRED_REVISION": 52, - "NOT_YET_PHONE_NUMBER": 54, - "BAD_CALL_NUMBER": 55, - "UNAVAILABLE_CALL_NUMBER": 56, - "NOT_SUPPORT_CALL_SERVICE": 57, - "CONGESTION_CONTROL": 58, - "NO_BALANCE": 59, - "NOT_PERMITTED_CALLER_ID": 60, - "NO_CALLER_ID_LIMIT_EXCEEDED": 61, - "CALLER_ID_VERIFICATION_REQUIRED": 62, - "NO_CALLER_ID_LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED": 63, - "MESSAGE_NOT_FOUND": 64, - "INVALID_ACCOUNT_MIGRATION_PINCODE_FORMAT": 65, - "ACCOUNT_MIGRATION_PINCODE_NOT_MATCHED": 66, - "ACCOUNT_MIGRATION_PINCODE_BLOCKED": 67, - "INVALID_PASSWORD_FORMAT": 69, - "FEATURE_RESTRICTED": 70, - "MESSAGE_NOT_DESTRUCTIBLE": 71, - "PAID_CALL_REDEEM_FAILED": 72, - "PREVENTED_JOIN_BY_TICKET": 73, - "SEND_MESSAGE_NOT_PERMITTED_FROM_LINE_AT": 75, - "SEND_MESSAGE_NOT_PERMITTED_WHILE_AUTO_REPLY": 76, - "SECURITY_CENTER_NOT_VERIFIED": 77, - "SECURITY_CENTER_BLOCKED_BY_SETTING": 78, - "SECURITY_CENTER_BLOCKED": 79, - "TALK_PROXY_EXCEPTION": 80, - "E2EE_INVALID_PROTOCOL": 81, - "E2EE_RETRY_ENCRYPT": 82, - "E2EE_UPDATE_SENDER_KEY": 83, - "E2EE_UPDATE_RECEIVER_KEY": 84, - "E2EE_INVALID_ARGUMENT": 85, - "E2EE_INVALID_VERSION": 86, - "E2EE_SENDER_DISABLED": 87, - "E2EE_RECEIVER_DISABLED": 88, - "E2EE_SENDER_NOT_ALLOWED": 89, - "E2EE_RECEIVER_NOT_ALLOWED": 90, - "E2EE_RESEND_FAIL": 91, - "E2EE_RESEND_OK": 92, - "HITOKOTO_BACKUP_NO_AVAILABLE_DATA": 93, - "E2EE_UPDATE_PRIMARY_DEVICE": 94, - "SUCCESS": 95, - "CANCEL": 96, - "E2EE_PRIMARY_NOT_SUPPORT": 97, - "E2EE_RETRY_PLAIN": 98, - "E2EE_RECREATE_GROUP_KEY": 99, - "E2EE_GROUP_TOO_MANY_MEMBERS": 100, - "SERVER_BUSY": 101, - "NOT_ALLOWED_ADD_FOLLOW": 102, - "INCOMING_FRIEND_REQUEST_LIMIT": 103, - "OUTGOING_FRIEND_REQUEST_LIMIT": 104, - "OUTGOING_FRIEND_REQUEST_QUOTA": 105, - "DUPLICATED": 106, - "BANNED": 107, - "NOT_AN_INVITEE": 108, - "NOT_AN_OUTSIDER": 109, - "EMPTY_GROUP": 111, - "EXCEED_FOLLOW_LIMIT": 112, - "UNSUPPORTED_ACCOUNT_TYPE": 113, - "AGREEMENT_REQUIRED": 114, - "SHOULD_RETRY": 115, - "OVER_MAX_CHATS_PER_USER": 116, - "NOT_AVAILABLE_API": 117, - "INVALID_OTP": 118, - "MUST_REFRESH_V3_TOKEN": 119, - "ALREADY_EXPIRED": 120, - "USER_NOT_STICON_OWNER": 121, - "REFRESH_MEDIA_FLOW": 122, - "EXCEED_FOLLOWER_LIMIT": 123, - "INCOMPATIBLE_APP_TYPE": 124, - "NOT_PREMIUM": 125 - }, - "Fg_a": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "NOT_FOUND": 3, - "RETRY_LATER": 4, - "HUMAN_VERIFICATION_REQUIRED": 5, - "NOT_ENABLED": 6, - "INVALID_CONTEXT": 100, - "APP_UPGRADE_REQUIRED": 101, - "NO_CONTENT": 102 - }, - "FriendRequestStatus": { - "NONE": 0, - "AVAILABLE": 1, - "ALREADY_REQUESTED": 2, - "UNAVAILABLE": 3 - }, - "IdentityProvider": { - "UNKNOWN": 0, - "LINE": 1, - "NAVER_KR": 2, - "LINE_PHONE": 3 - }, - "LN0_F0": { - "UNKNOWN": 0, - "INVALID_TARGET_USER": 1, - "AGE_VALIDATION": 2, - "TOO_MANY_FRIENDS": 3, - "TOO_MANY_REQUESTS": 4, - "MALFORMED_REQUEST": 5, - "TRACKING_META_QRCODE_FAVORED": 6 - }, - "LN0_X0": { - "USER": 1, - "BOT": 2 - }, - "MIDType": { - "USER": 0, - "ROOM": 1, - "GROUP": 2, - "SQUARE": 3, - "SQUARE_CHAT": 4, - "SQUARE_MEMBER": 5, - "BOT": 6, - "SQUARE_THREAD": 7 - }, - "NZ0_B0": { - "PAY": 0, - "POI": 1, - "FX": 2, - "SEC": 3, - "BIT": 4, - "LIN": 5, - "SCO": 6, - "POC": 7 - }, - "NZ0_C0": { - "OK": 0, - "MAINTENANCE": 1, - "TPS_EXCEEDED": 2, - "NOT_FOUND": 3, - "BLOCKED": 4, - "INTERNAL_ERROR": 5, - "WALLET_CMS_MAINTENANCE": 6 - }, - "NZ0_EnumC12154b1": { - "NORMAL": 0, - "CAMERA": 1 - }, - "NZ0_EnumC12169g1": { - "WALLET": 101, - "ASSET": 201, - "SHOPPING": 301 - }, - "NZ0_EnumC12170h": { - "HIDE_BADGE": 0, - "SHOW_BADGE": 1 - }, - "NZ0_EnumC12188n": { - "OK": 0, - "UNAVAILABLE": 1, - "DUPLICATAE_REGISTRATION": 2, - "INTERNAL_ERROR": 3 - }, - "NZ0_EnumC12192o0": { - "LV1": 0, - "LV2": 1, - "LV3": 2, - "LV9": 3 - }, - "NZ0_EnumC12193o1": { - "INVALID_PARAMETER": 400, - "AUTHENTICATION_FAILED": 401, - "INTERNAL_SERVER_ERROR": 500, - "SERVICE_IN_MAINTENANCE_MODE": 503 - }, - "NZ0_EnumC12195p0": { - "ALIVE": 1, - "SUSPENDED": 2, - "UNREGISTERED": 3 - }, - "NZ0_EnumC12197q": { - "PREFIX": 0, - "SUFFIX": 1 - }, - "NZ0_EnumC12218x0": { - "NO_CONTENT": 0, - "OK": 1, - "ERROR": 2 - }, - "NZ0_I0": { - "A": 0, - "B": 1, - "C": 2, - "D": 3, - "UNKNOWN": 4 - }, - "NZ0_K0": { - "POCKET_MONEY": 0, - "REFINANCE": 1 - }, - "NZ0_N0": { - "COMPACT": 0, - "EXPANDED": 1 - }, - "NZ0_S0": { - "CARD": 0, - "ACTION": 1 - }, - "NZ0_W0": { - "OK": 0, - "INTERNAL_ERROR": 1 - }, - "NotificationStatus": { - "NOTIFICATION_ITEM_EXIST": 1, - "TIMELINE_ITEM_EXIST": 2, - "NOTE_GROUP_NEW_ITEM_EXIST": 4, - "TIMELINE_BUDDYGROUP_CHANGED": 8, - "NOTE_ONE_TO_ONE_NEW_ITEM_EXIST": 16, - "ALBUM_ITEM_EXIST": 32, - "TIMELINE_ITEM_DELETED": 64, - "OTOGROUP_ITEM_EXIST": 128, - "GROUPHOME_NEW_ITEM_EXIST": 256, - "GROUPHOME_HIDDEN_ITEM_CHANGED": 512, - "NOTIFICATION_ITEM_CHANGED": 1024, - "BEAD_ITEM_HIDE": 2048, - "BEAD_ITEM_SHOW": 4096, - "LINE_TICKET_UPDATED": 8192, - "TIMELINE_STORY_UPDATED": 16384, - "SMARTCH_UPDATED": 32768, - "AVATAR_UPDATED": 65536, - "HOME_NOTIFICATION_ITEM_EXIST": 131072, - "TIMELINE_REBOOT_COMPLETED": 262144, - "TIMELINE_GUIDE_STORY_UPDATED": 524288, - "TIMELINE_F2F_COMPLETED": 1048576, - "VOOM_LIVE_STATE_CHANGED": 2097152, - "VOOM_ACTIVITY_REWARD_ITEM_EXIST": 4194304 - }, - "NotificationType": { - "APPLE_APNS": 1, - "GOOGLE_C2DM": 2, - "NHN_NNI": 3, - "SKT_AOM": 4, - "MS_MPNS": 5, - "RIM_BIS": 6, - "GOOGLE_GCM": 7, - "NOKIA_NNAPI": 8, - "TIZEN": 9, - "MOZILLA_SIMPLE": 10, - "LINE_BOT": 17, - "LINE_WAP": 18, - "APPLE_APNS_VOIP": 19, - "MS_WNS": 20, - "GOOGLE_FCM": 21, - "CLOVA": 22, - "CLOVA_VOIP": 23, - "HUAWEI_HCM": 24 - }, - "Ob1_B0": { - "FOREGROUND": 0, - "BACKGROUND": 1 - }, - "Ob1_C1": { - "NORMAL": 0, - "BIG": 1 - }, - "Ob1_D0": { - "PURCHASE_ONLY": 0, - "PURCHASE_OR_SUBSCRIPTION": 1, - "SUBSCRIPTION_ONLY": 2 - }, - "Ob1_EnumC12607a1": { - "DEFAULT": 1, - "VIEW_VIDEO": 2 - }, - "Ob1_EnumC12610b1": { - "NONE": 0, - "BUDDY": 2, - "INSTALL": 3, - "MISSION": 4, - "MUSTBUY": 5 - }, - "Ob1_EnumC12631i1": { - "UNKNOWN": 0, - "PRODUCT": 1, - "USER": 2, - "PREMIUM_USER": 3 - }, - "Ob1_EnumC12638l": { - "VALID": 0, - "INVALID": 1 - }, - "Ob1_EnumC12641m": { - "PREMIUM": 1, - "VERIFIED": 2, - "UNVERIFIED": 3 - }, - "Ob1_EnumC12652p1": { - "UNKNOWN": 0, - "NONE": 1, - "ILLEGAL_ARGUMENT": 16641, - "NOT_FOUND": 16642, - "NOT_AVAILABLE": 16643, - "NOT_PAID_PRODUCT": 16644, - "NOT_FREE_PRODUCT": 16645, - "ALREADY_OWNED": 16646, - "ERROR_WITH_CUSTOM_MESSAGE": 16647, - "NOT_AVAILABLE_TO_RECIPIENT": 16648, - "NOT_AVAILABLE_FOR_CHANNEL_ID": 16649, - "NOT_SALE_FOR_COUNTRY": 16650, - "NOT_SALES_PERIOD": 16651, - "NOT_SALE_FOR_DEVICE": 16652, - "NOT_SALE_FOR_VERSION": 16653, - "ALREADY_EXPIRED": 16654, - "LIMIT_EXCEEDED": 16655, - "MISSING_CAPABILITY": 16656, - "AUTHENTICATION_FAILED": 16897, - "BALANCE_SHORTAGE": 17153, - "INTERNAL_SERVER_ERROR": 20737, - "SERVICE_IN_MAINTENANCE_MODE": 20738, - "SERVICE_UNAVAILABLE": 20739 - }, - "Ob1_EnumC12656r0": { - "OK": 0, - "PRODUCT_UNSUPPORTED": 1, - "TEXT_NOT_SPECIFIED": 2, - "TEXT_STYLE_UNAVAILABLE": 3, - "CHARACTER_COUNT_LIMIT_EXCEEDED": 4, - "CONTAINS_INVALID_WORD": 5 - }, - "Ob1_EnumC12664u": { - "UNKNOWN": 0, - "NONE": 1, - "ILLEGAL_ARGUMENT": 16641, - "NOT_FOUND": 16642, - "NOT_AVAILABLE": 16643, - "MAX_AMOUNT_OF_PRODUCTS_REACHED": 16644, - "PRODUCT_IS_NOT_PREMIUM": 16645, - "PRODUCT_IS_NOT_AVAILABLE_FOR_USER": 16646, - "AUTHENTICATION_FAILED": 16897, - "INTERNAL_SERVER_ERROR": 20737, - "SERVICE_UNAVAILABLE": 20739 - }, - "Ob1_EnumC12666u1": { - "POPULAR": 0, - "NEW_RELEASE": 1, - "EVENT": 2, - "RECOMMENDED": 3, - "POPULAR_WEEKLY": 4, - "POPULAR_MONTHLY": 5, - "POPULAR_RECENTLY_PUBLISHED": 6, - "BUDDY": 7, - "EXTRA_EVENT": 8, - "BROWSING_HISTORY": 9, - "POPULAR_TOTAL_SALES": 10, - "NEW_SUBSCRIPTION": 11, - "POPULAR_SUBSCRIPTION_30D": 12, - "CPD_STICKER": 13, - "POPULAR_WITH_FREE": 14 - }, - "Ob1_F1": { - "STATIC": 1, - "ANIMATION": 2 - }, - "Ob1_I": { - "STATIC": 0, - "POPULAR": 1, - "NEW_RELEASE": 2 - }, - "Ob1_J0": { - "ON_SALE": 0, - "OUTDATED_VERSION": 1, - "NOT_ON_SALE": 2 - }, - "Ob1_J1": { - "OK": 0, - "INVALID_PARAMETER": 1, - "NOT_FOUND": 2, - "NOT_SUPPORTED": 3, - "CONFLICT": 4, - "NOT_ELIGIBLE": 5 - }, - "Ob1_K1": { - "GOOGLE": 0, - "APPLE": 1, - "WEBSTORE": 2, - "LINEMO": 3, - "LINE_MUSIC": 4, - "LYP": 5, - "TW_CHT": 6, - "FREEMIUM": 7 - }, - "Ob1_M1": { - "OK": 0, - "UNKNOWN": 1, - "NOT_SUPPORTED": 2, - "NO_SUBSCRIPTION": 3, - "SUBSCRIPTION_EXISTS": 4, - "NOT_AVAILABLE": 5, - "CONFLICT": 6, - "OUTDATED_VERSION": 7, - "NO_STUDENT_INFORMATION": 8, - "ACCOUNT_HOLD": 9, - "RETRY_STATE": 10 - }, - "Ob1_O0": { - "STICKER": 1, - "THEME": 2, - "STICON": 3 - }, - "Ob1_O1": { - "AVAILABLE": 0, - "DIFFERENT_STORE": 1, - "NOT_STUDENT": 2, - "ALREADY_PURCHASED": 3 - }, - "Ob1_P1": { - "GENERAL": 1, - "STUDENT": 2 - }, - "Ob1_Q1": { - "BASIC": 1, - "DELUXE": 2 - }, - "Ob1_R1": { - "MONTHLY": 1, - "YEARLY": 2 - }, - "Ob1_U1": { - "OK": 0, - "UNKNOWN": 1, - "NO_SUBSCRIPTION": 2, - "EXISTS": 3, - "NOT_FOUND": 4, - "EXCEEDS_LIMIT": 5, - "NOT_AVAILABLE": 6 - }, - "Ob1_V1": { - "DATE_ASC": 1, - "DATE_DESC": 2 - }, - "Ob1_X1": { - "GENERAL": 0, - "CREATORS": 1, - "STICON": 2 - }, - "Ob1_a2": { - "NOT_PURCHASED": 0, - "SUBSCRIPTION": 1, - "NOT_SUBSCRIBED": 2, - "NOT_ACCEPTED": 3, - "NOT_PURCHASED_U2I": 4, - "BUDDY": 5 - }, - "Ob1_c2": { - "STATIC": 1, - "ANIMATION": 2 - }, - "OpType": { - "END_OF_OPERATION": 0, - "UPDATE_PROFILE": 1, - "NOTIFIED_UPDATE_PROFILE": 2, - "REGISTER_USERID": 3, - "ADD_CONTACT": 4, - "NOTIFIED_ADD_CONTACT": 5, - "BLOCK_CONTACT": 6, - "UNBLOCK_CONTACT": 7, - "NOTIFIED_RECOMMEND_CONTACT": 8, - "CREATE_GROUP": 9, - "UPDATE_GROUP": 10, - "NOTIFIED_UPDATE_GROUP": 11, - "INVITE_INTO_GROUP": 12, - "NOTIFIED_INVITE_INTO_GROUP": 13, - "LEAVE_GROUP": 14, - "NOTIFIED_LEAVE_GROUP": 15, - "ACCEPT_GROUP_INVITATION": 16, - "NOTIFIED_ACCEPT_GROUP_INVITATION": 17, - "KICKOUT_FROM_GROUP": 18, - "NOTIFIED_KICKOUT_FROM_GROUP": 19, - "CREATE_ROOM": 20, - "INVITE_INTO_ROOM": 21, - "NOTIFIED_INVITE_INTO_ROOM": 22, - "LEAVE_ROOM": 23, - "NOTIFIED_LEAVE_ROOM": 24, - "SEND_MESSAGE": 25, - "RECEIVE_MESSAGE": 26, - "SEND_MESSAGE_RECEIPT": 27, - "RECEIVE_MESSAGE_RECEIPT": 28, - "SEND_CONTENT_RECEIPT": 29, - "RECEIVE_ANNOUNCEMENT": 30, - "CANCEL_INVITATION_GROUP": 31, - "NOTIFIED_CANCEL_INVITATION_GROUP": 32, - "NOTIFIED_UNREGISTER_USER": 33, - "REJECT_GROUP_INVITATION": 34, - "NOTIFIED_REJECT_GROUP_INVITATION": 35, - "UPDATE_SETTINGS": 36, - "NOTIFIED_REGISTER_USER": 37, - "INVITE_VIA_EMAIL": 38, - "NOTIFIED_REQUEST_RECOVERY": 39, - "SEND_CHAT_CHECKED": 40, - "SEND_CHAT_REMOVED": 41, - "NOTIFIED_FORCE_SYNC": 42, - "SEND_CONTENT": 43, - "SEND_MESSAGE_MYHOME": 44, - "NOTIFIED_UPDATE_CONTENT_PREVIEW": 45, - "REMOVE_ALL_MESSAGES": 46, - "NOTIFIED_UPDATE_PURCHASES": 47, - "DUMMY": 48, - "UPDATE_CONTACT": 49, - "NOTIFIED_RECEIVED_CALL": 50, - "CANCEL_CALL": 51, - "NOTIFIED_REDIRECT": 52, - "NOTIFIED_CHANNEL_SYNC": 53, - "FAILED_SEND_MESSAGE": 54, - "NOTIFIED_READ_MESSAGE": 55, - "FAILED_EMAIL_CONFIRMATION": 56, - "NOTIFIED_CHAT_CONTENT": 58, - "NOTIFIED_PUSH_NOTICENTER_ITEM": 59, - "NOTIFIED_JOIN_CHAT": 60, - "NOTIFIED_LEAVE_CHAT": 61, - "NOTIFIED_TYPING": 62, - "FRIEND_REQUEST_ACCEPTED": 63, - "DESTROY_MESSAGE": 64, - "NOTIFIED_DESTROY_MESSAGE": 65, - "UPDATE_PUBLICKEYCHAIN": 66, - "NOTIFIED_UPDATE_PUBLICKEYCHAIN": 67, - "NOTIFIED_BLOCK_CONTACT": 68, - "NOTIFIED_UNBLOCK_CONTACT": 69, - "UPDATE_GROUPPREFERENCE": 70, - "NOTIFIED_PAYMENT_EVENT": 71, - "REGISTER_E2EE_PUBLICKEY": 72, - "NOTIFIED_E2EE_KEY_EXCHANGE_REQ": 73, - "NOTIFIED_E2EE_KEY_EXCHANGE_RESP": 74, - "NOTIFIED_E2EE_MESSAGE_RESEND_REQ": 75, - "NOTIFIED_E2EE_MESSAGE_RESEND_RESP": 76, - "NOTIFIED_E2EE_KEY_UPDATE": 77, - "NOTIFIED_BUDDY_UPDATE_PROFILE": 78, - "NOTIFIED_UPDATE_LINEAT_TABS": 79, - "UPDATE_ROOM": 80, - "NOTIFIED_BEACON_DETECTED": 81, - "UPDATE_EXTENDED_PROFILE": 82, - "ADD_FOLLOW": 83, - "NOTIFIED_ADD_FOLLOW": 84, - "DELETE_FOLLOW": 85, - "NOTIFIED_DELETE_FOLLOW": 86, - "UPDATE_TIMELINE_SETTINGS": 87, - "NOTIFIED_FRIEND_REQUEST": 88, - "UPDATE_RINGBACK_TONE": 89, - "NOTIFIED_POSTBACK": 90, - "RECEIVE_READ_WATERMARK": 91, - "NOTIFIED_MESSAGE_DELIVERED": 92, - "NOTIFIED_UPDATE_CHAT_BAR": 93, - "NOTIFIED_CHATAPP_INSTALLED": 94, - "NOTIFIED_CHATAPP_UPDATED": 95, - "NOTIFIED_CHATAPP_NEW_MARK": 96, - "NOTIFIED_CHATAPP_DELETED": 97, - "NOTIFIED_CHATAPP_SYNC": 98, - "NOTIFIED_UPDATE_MESSAGE": 99, - "UPDATE_CHATROOMBGM": 100, - "NOTIFIED_UPDATE_CHATROOMBGM": 101, - "UPDATE_RINGTONE": 102, - "UPDATE_USER_SETTINGS": 118, - "NOTIFIED_UPDATE_STATUS_BAR": 119, - "CREATE_CHAT": 120, - "UPDATE_CHAT": 121, - "NOTIFIED_UPDATE_CHAT": 122, - "INVITE_INTO_CHAT": 123, - "NOTIFIED_INVITE_INTO_CHAT": 124, - "CANCEL_CHAT_INVITATION": 125, - "NOTIFIED_CANCEL_CHAT_INVITATION": 126, - "DELETE_SELF_FROM_CHAT": 127, - "NOTIFIED_DELETE_SELF_FROM_CHAT": 128, - "ACCEPT_CHAT_INVITATION": 129, - "NOTIFIED_ACCEPT_CHAT_INVITATION": 130, - "REJECT_CHAT_INVITATION": 131, - "DELETE_OTHER_FROM_CHAT": 132, - "NOTIFIED_DELETE_OTHER_FROM_CHAT": 133, - "NOTIFIED_CONTACT_CALENDAR_EVENT": 134, - "NOTIFIED_CONTACT_CALENDAR_EVENT_ALL": 135, - "UPDATE_THINGS_OPERATIONS": 136, - "SEND_CHAT_HIDDEN": 137, - "CHAT_META_SYNC_ALL": 138, - "SEND_REACTION": 139, - "NOTIFIED_SEND_REACTION": 140, - "NOTIFIED_UPDATE_PROFILE_CONTENT": 141, - "FAILED_DELIVERY_MESSAGE": 142, - "SEND_ENCRYPTED_E2EE_KEY_REQUESTED": 143, - "CHANNEL_PAAK_AUTHENTICATION_REQUESTED": 144, - "UPDATE_PIN_STATE": 145, - "NOTIFIED_PREMIUMBACKUP_STATE_CHANGED": 146, - "CREATE_MULTI_PROFILE": 147, - "MULTI_PROFILE_STATUS_CHANGED": 148, - "DELETE_MULTI_PROFILE": 149, - "UPDATE_PROFILE_MAPPING": 150, - "DELETE_PROFILE_MAPPING": 151, - "NOTIFIED_DESTROY_NOTICENTER_PUSH": 152 - }, - "P70_g": { - "INVALID_REQUEST": 1000, - "RETRY_REQUIRED": 1001 - }, - "PaidCallType": { - "OUT": 0, - "IN": 1, - "TOLLFREE": 2, - "RECORD": 3, - "AD": 4, - "CS": 5, - "OA": 6, - "OAM": 7 - }, - "PayloadType": { - "PAYLOAD_BUY": 101, - "PAYLOAD_CS": 111, - "PAYLOAD_BONUS": 121, - "PAYLOAD_EVENT": 131, - "PAYLOAD_POINT_AUTO_EXCHANGED": 141, - "PAYLOAD_POINT_MANUAL_EXCHANGED": 151 - }, - "Pb1_A0": { - "NORMAL": 0, - "VIDEOCAM": 1, - "VOIP": 2, - "RECORD": 3 - }, - "Pb1_A3": { - "UNKNOWN": 0, - "BACKGROUND_NEW_KEY_CREATED": 1, - "BACKGROUND_PERIODICAL_VERIFICATION": 2, - "FOREGROUND_NEW_PIN_REGISTERED": 3, - "FOREGROUND_VERIFICATION": 4 - }, - "Pb1_B": { - "SIRI": 1, - "GOOGLE_ASSISTANT": 2, - "OS_SHARE": 3 - }, - "Pb1_D0": { - "RICH_MENU_ID": 0, - "STATUS_BAR": 1, - "BUDDY_CAUTION_NOTICE": 2 - }, - "Pb1_D4": { - "AUDIO": 1, - "VIDEO": 2, - "FACEPLAY": 3 - }, - "Pb1_D6": { - "GOOGLE": 0, - "BAIDU": 1, - "FOURSQUARE": 2, - "YAHOOJAPAN": 3, - "KINGWAY": 4 - }, - "Pb1_E7": { - "UNKNOWN": 0, - "TALK": 1, - "SQUARE": 2 - }, - "Pb1_EnumC12917a6": { - "UNKNOWN": 0, - "APP_FOREGROUND": 1, - "PERIODIC": 2, - "MANUAL": 3 - }, - "Pb1_EnumC12926b1": { - "NOT_A_FRIEND": 0, - "ALWAYS": 1 - }, - "Pb1_EnumC12941c2": { - "BLE_LCS_API_USABLE": 26, - "PROHIBIT_MINIMIZE_CHANNEL_BROWSER": 27, - "ALLOW_IOS_WEBKIT": 28, - "PURCHASE_LCS_API_USABLE": 38, - "ALLOW_ANDROID_ENABLE_ZOOM": 48 - }, - "Pb1_EnumC12945c6": { - "V1": 1, - "V2": 2 - }, - "Pb1_EnumC12970e3": { - "USER_AGE_CHECKED": 1, - "USER_APPROVAL_REQUIRED": 2 - }, - "Pb1_EnumC12997g2": { - "PROFILE": 0, - "FRIENDS": 1, - "GROUP": 2 - }, - "Pb1_EnumC12998g3": { - "UNKNOWN": 0, - "WIFI": 1, - "CELLULAR_NETWORK": 2 - }, - "Pb1_EnumC13009h0": { - "NORMAL": 1, - "LOW_BATTERY": 2 - }, - "Pb1_EnumC13010h1": { - "NEW": 1, - "PLANET": 2 - }, - "Pb1_EnumC13015h6": { - "FORWARD": 0, - "AUTO_REPLY": 1, - "SUBORDINATE": 2, - "REPLY": 3 - }, - "Pb1_EnumC13022i": { - "SKIP": 0, - "PINCODE": 1, - "SECURITY_CENTER": 2 - }, - "Pb1_EnumC13029i6": { - "ADD": 0, - "REMOVE": 1, - "MODIFY": 2 - }, - "Pb1_EnumC13037j0": { - "UNSPECIFIED": 0, - "INACTIVE": 1, - "ACTIVE": 2, - "DELETED": 3 - }, - "Pb1_EnumC13050k": { - "UNKNOWN": 0, - "IOS_REDUCED_ACCURACY": 1, - "IOS_FULL_ACCURACY": 2, - "AOS_PRECISE_LOCATION": 3, - "AOS_APPROXIMATE_LOCATION": 4 - }, - "Pb1_EnumC13082m3": { - "SHOW": 0, - "HIDE": 1 - }, - "Pb1_EnumC13093n0": { - "NONE": 0, - "TOP": 1 - }, - "Pb1_EnumC13127p6": { - "NORMAL": 0, - "ALERT_DISABLED": 1, - "ALWAYS": 2 - }, - "Pb1_EnumC13128p7": { - "UNKNOWN": 0, - "DIRECT_INVITATION": 1, - "DIRECT_CHAT": 2, - "GROUP_INVITATION": 3, - "GROUP_CHAT": 4, - "ROOM_INVITATION": 5, - "ROOM_CHAT": 6, - "FRIEND_PROFILE": 7, - "DIRECT_CHAT_SELECTED": 8, - "GROUP_CHAT_SELECTED": 9, - "ROOM_CHAT_SELECTED": 10, - "DEPRECATED": 11 - }, - "Pb1_EnumC13148r0": { - "ALWAYS_HIDDEN": 1, - "ALWAYS_SHOWN": 2, - "SHOWN_BY_CONDITION": 3 - }, - "Pb1_EnumC13151r3": { - "ONEWAY": 0, - "BOTH": 1, - "NOT_REGISTERED": 2 - }, - "Pb1_EnumC13162s0": { - "NOT_SUSPICIOUS": 1, - "SUSPICIOUS_00": 2, - "SUSPICIOUS_01": 3 - }, - "Pb1_EnumC13196u6": { - "COIN": 0, - "CREDIT": 1, - "MONTHLY": 2, - "OAM": 3 - }, - "Pb1_EnumC13209v5": { - "DUMMY": 0, - "NOTICE": 1, - "MORETAB": 2, - "STICKERSHOP": 3, - "CHANNEL": 4, - "DENY_KEYWORD": 5, - "CONNECTIONINFO": 6, - "BUDDY": 7, - "TIMELINEINFO": 8, - "THEMESHOP": 9, - "CALLRATE": 10, - "CONFIGURATION": 11, - "STICONSHOP": 12, - "SUGGESTDICTIONARY": 13, - "SUGGESTSETTINGS": 14, - "USERSETTINGS": 15, - "ANALYTICSINFO": 16, - "SEARCHPOPULARKEYWORD": 17, - "SEARCHNOTICE": 18, - "TIMELINE": 19, - "SEARCHPOPULARCATEGORY": 20, - "EXTENDEDPROFILE": 21, - "SEASONALMARKETING": 22, - "NEWSTAB": 23, - "SUGGESTDICTIONARYV2": 24, - "CHATAPPSYNC": 25, - "AGREEMENTS": 26, - "INSTANTNEWS": 27, - "EMOJI_MAPPING": 28, - "SEARCHBARKEYWORDS": 29, - "SHOPPING": 30, - "CHAT_EFFECT_BACKGROUND": 31, - "CHAT_EFFECT_KEYWORD": 32, - "SEARCHINDEX": 33, - "HUBTAB": 34, - "PAY_RULE_UPDATED": 35, - "SMARTCH": 36, - "HOME_SERVICE_LIST": 37, - "TIMELINESTORY": 38, - "WALLET_TAB": 39, - "POD_TAB": 40, - "HOME_SAFETY_CHECK": 41, - "HOME_SEASONAL_EFFECT": 42, - "OPENCHAT_MAIN": 43, - "CHAT_EFFECT_CONTENT_METADATA_TAG": 44, - "VOOM_LIVE_STATE_CHANGED": 45, - "PROFILE_STUDIO_N_BADGE": 46, - "LYP_FONT": 47, - "TIMELINESTORY_OA": 48, - "TRAVEL": 49 - }, - "Pb1_EnumC13221w3": { - "UNKNOWN": 0, - "EUROPEAN_ECONOMIC_AREA": 1 - }, - "Pb1_EnumC13222w4": { - "OBS_VIDEO": 1, - "OBS_GENERAL": 2, - "OBS_RINGBACK_TONE": 3 - }, - "Pb1_EnumC13237x5": { - "AUDIO": 1, - "VIDEO": 2, - "LIVE": 3, - "PHOTOBOOTH": 4 - }, - "Pb1_EnumC13238x6": { - "NOT_SPECIFIED": 0, - "VALID": 1, - "VERIFICATION_REQUIRED": 2, - "NOT_PERMITTED": 3, - "LIMIT_EXCEEDED": 4, - "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED": 5 - }, - "Pb1_EnumC13251y5": { - "STANDARD": 1, - "CONSTELLA": 2 - }, - "Pb1_EnumC13252y6": { - "ALL": 0, - "PROFILE": 1, - "SETTINGS": 2, - "CONFIGURATIONS": 3, - "CONTACT": 4, - "GROUP": 5, - "E2EE": 6, - "MESSAGE": 7 - }, - "Pb1_EnumC13260z0": { - "ON_AIR": 0, - "LIVE": 1, - "GLP": 2 - }, - "Pb1_EnumC13267z7": { - "NOTIFICATION_SETTING": 1, - "ALL": 255 - }, - "Pb1_F0": { - "NA": 0, - "FRIEND_VIEW": 1, - "OFFICIAL_ACCOUNT_VIEW": 2 - }, - "Pb1_F4": { - "INCOMING": 1, - "OUTGOING": 2 - }, - "Pb1_F5": { - "UNKNOWN": 0, - "SUCCESS": 1, - "REQUIRE_SERVER_SIDE_EMAIL": 2, - "REQUIRE_CLIENT_SIDE_EMAIL": 3 - }, - "Pb1_F6": { - "JBU": 0, - "LIP": 1 - }, - "Pb1_G3": { - "PROMOTION_FRIENDS_INVITE": 1, - "CAPABILITY_SERVER_SIDE_SMS": 2, - "LINE_CLIENT_ANALYTICS_CONFIGURATION": 3 - }, - "Pb1_G4": { - "TIMELINE": 1, - "NEARBY": 2, - "SQUARE": 3 - }, - "Pb1_G6": { - "NICE": 2, - "LOVE": 3, - "FUN": 4, - "AMAZING": 5, - "SAD": 6, - "OMG": 7 - }, - "Pb1_H6": { - "PUBLIC": 0, - "PRIVATE": 1 - }, - "Pb1_I6": { - "NEVER_SHOW": 0, - "ONE_WAY": 1, - "MUTUAL": 2 - }, - "Pb1_J4": { - "OTHER": 0, - "INITIALIZATION": 1, - "PERIODIC_SYNC": 2, - "MANUAL_SYNC": 3, - "LOCAL_DB_CORRUPTED": 4 - }, - "Pb1_K2": { - "CHANNEL_INFO": 1, - "CHANNEL_TOKEN": 2, - "COMMON_DOMAIN": 4, - "ALL": 255 - }, - "Pb1_K6": { - "EMAIL": 1, - "DISPLAY_NAME": 2, - "PHONETIC_NAME": 4, - "PICTURE": 8, - "STATUS_MESSAGE": 16, - "ALLOW_SEARCH_BY_USERID": 32, - "ALLOW_SEARCH_BY_EMAIL": 64, - "BUDDY_STATUS": 128, - "MUSIC_PROFILE": 256, - "AVATAR_PROFILE": 512, - "ALL": 2147483647 - }, - "Pb1_L2": { - "SYNC": 0, - "REMOVE": 1, - "REMOVE_ALL": 2 - }, - "Pb1_L4": { - "UNKNOWN": 0, - "REVISION_GAP_TOO_LARGE_CLIENT": 1, - "REVISION_GAP_TOO_LARGE_SERVER": 2, - "OPERATION_EXPIRED": 3, - "REVISION_HOLE": 4, - "FORCE_TRIGGERED": 5 - }, - "Pb1_M6": { - "OWNER": 0, - "FRIEND": 1 - }, - "Pb1_N6": { - "NFT": 1, - "AVATAR": 2, - "SNOW": 3, - "ARCZ": 4, - "FRENZ": 5 - }, - "Pb1_O2": { - "NAME": 1, - "PICTURE_STATUS": 2, - "PREVENTED_JOIN_BY_TICKET": 4, - "NOTIFICATION_SETTING": 8, - "INVITATION_TICKET": 16, - "FAVORITE_TIMESTAMP": 32, - "CHAT_TYPE": 64 - }, - "Pb1_O6": { - "DEFAULT": 1, - "MULTI_PROFILE": 2 - }, - "Pb1_P6": { - "HIDDEN": 0, - "PUBLIC": 1000 - }, - "Pb1_Q2": { - "BACKGROUND": 0, - "KEYWORD": 1, - "CONTENT_METADATA_TAG_BASED": 2 - }, - "Pb1_R3": { - "BEACON_AGREEMENT": 1, - "BLUETOOTH": 2, - "SHAKE_AGREEMENT": 3, - "AUTO_SUGGEST": 4, - "CHATROOM_CAPTURE": 5, - "CHATROOM_MINIMIZEBROWSER": 6, - "CHATROOM_MOBILESAFARI": 7, - "VIDEO_HIGHTLIGHT_WIZARD": 8, - "CHAT_FOLDER": 9, - "BLUETOOTH_SCAN": 10, - "AUTO_SUGGEST_FOLLOW_UP": 11 - }, - "Pb1_S7": { - "NONE": 1, - "ALL": 2 - }, - "Pb1_T3": { - "LOCATION_OS": 1, - "LOCATION_APP": 2, - "VIDEO_AUTO_PLAY": 3, - "HNI": 4, - "AUTO_SUGGEST_LANG": 5, - "CHAT_EFFECT_CACHED_CONTENT_LIST": 6, - "IFA": 7, - "ACCURACY_MODE": 8 - }, - "Pb1_T7": { - "SYNC": 0, - "REPORT": 1 - }, - "Pb1_V7": { - "UNSPECIFIED": 0, - "UNKNOWN": 1, - "INITIALIZATION": 2, - "OPERATION": 3, - "FULL_SYNC": 4, - "AUTO_REPAIR": 5, - "MANUAL_REPAIR": 6, - "INTERNAL": 7, - "USER_INITIATED": 8 - }, - "Pb1_W2": { - "ANYONE_IN_CHAT": 0, - "CREATOR_ONLY": 1, - "NO_ONE": 2 - }, - "Pb1_W3": { - "ILLEGAL_ARGUMENT": 0, - "AUTHENTICATION_FAILED": 1, - "INTERNAL_ERROR": 2, - "RESTORE_KEY_FIRST": 3, - "NO_BACKUP": 4, - "INVALID_PIN": 6, - "PERMANENTLY_LOCKED": 7, - "INVALID_PASSWORD": 8, - "MASTER_KEY_CONFLICT": 9 - }, - "Pb1_X1": { - "MESSAGE": 0, - "MESSAGE_NOTIFICATION": 1, - "NOTIFICATION_CENTER": 2 - }, - "Pb1_X2": { - "MESSAGE": 0, - "NOTE": 1, - "CHANNEL": 2 - }, - "Pb1_Z2": { - "GROUP": 0, - "ROOM": 1, - "PEER": 2 - }, - "Pb1_gd": { - "OVER": 1, - "UNDER": 2, - "UNDEFINED": 3 - }, - "Pb1_od": { - "UNKNOWN": 0, - "LOCATION": 1 - }, - "PointErrorCode": { - "REQUEST_DUPLICATION": 3001, - "INVALID_PARAMETER": 3002, - "NOT_ENOUGH_BALANCE": 3003, - "AUTHENTICATION_FAIL": 3004, - "API_ACCESS_FORBIDDEN": 3005, - "MEMBER_ACCOUNT_NOT_FOUND": 3006, - "SERVICE_ACCOUNT_NOT_FOUND": 3007, - "TRANSACTION_NOT_FOUND": 3008, - "ALREADY_REVERSED_TRANSACTION": 3009, - "MESSAGE_NOT_READABLE": 3010, - "HTTP_REQUEST_METHOD_NOT_SUPPORTED": 3011, - "HTTP_MEDIA_TYPE_NOT_SUPPORTED": 3012, - "NOT_ALLOWED_TO_DEPOSIT": 3013, - "NOT_ALLOWED_TO_PAY": 3014, - "TRANSACTION_ACCESS_FORBIDDEN": 3015, - "INVALID_SERVICE_CONFIGURATION": 4001, - "DCS_COMMUNICATION_FAIL": 5004, - "UPDATE_BALANCE_FAIL": 5007, - "SYSTEM_MAINTENANCE": 5888, - "SYSTEM_ERROR": 5999 - }, - "Q70_q": { - "UNKNOWN": 0, - "FACEBOOK": 1, - "APPLE": 2, - "GOOGLE": 3 - }, - "Q70_r": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "RETRY_LATER": 4, - "HUMAN_VERIFICATION_REQUIRED": 5, - "APP_UPGRADE_REQUIRED": 101 - }, - "Qj_EnumC13584a": { - "NOT_DETERMINED": 0, - "RESTRICTED": 1, - "DENIED": 2, - "AUTHORIZED": 3 - }, - "Qj_EnumC13585b": { - "WHITE": 1, - "BLACK": 2 - }, - "Qj_EnumC13588e": { - "LIGHT": 1, - "DARK": 2 - }, - "Qj_EnumC13592i": { - "ILLEGAL_ARGUMENT": 0, - "INTERNAL_ERROR": 1, - "CONNECTION_ERROR": 2, - "AUTHENTICATION_FAILED": 3, - "NEED_PERMISSION_APPROVAL": 4, - "COIN_NOT_USABLE": 5, - "WEBVIEW_NOT_ALLOWED": 6 - }, - "Qj_EnumC13597n": { - "INVALID_REQUEST": 1, - "UNAUTHORIZED": 2, - "CONSENT_REQUIRED": 3, - "VERSION_UPDATE_REQUIRED": 4, - "COMPREHENSIVE_AGREEMENT_REQUIRED": 5, - "SPLASH_SCREEN_REQUIRED": 6, - "PERMANENT_LINK_INVALID_REQUEST": 7, - "NO_DESTINATION_URL": 8, - "SERVICE_ALREADY_TERMINATED": 9, - "SERVER_ERROR": 100 - }, - "Qj_EnumC13604v": { - "GEOLOCATION": 1, - "ADVERTISING_ID": 2, - "BLUETOOTH_LE": 3, - "QR_CODE": 4, - "ADVERTISING_SDK": 5, - "ADD_TO_HOME": 6, - "SHARE_TARGET_MESSAGE": 7, - "VIDEO_AUTO_PLAY": 8, - "PROFILE_PLUS": 9, - "SUBWINDOW_OPEN": 10, - "SUBWINDOW_COMMON_MODULE": 11, - "NO_LIFF_REFERRER": 12, - "SKIP_CHANNEL_VERIFICATION_SCREEN": 13, - "PROVIDER_PAGE": 14, - "BASIC_AUTH": 15, - "SIRI_DONATION": 16 - }, - "Qj_EnumC13605w": { - "ALLOW_DIRECT_LINK": 1, - "ALLOW_DIRECT_LINK_V2": 2 - }, - "Qj_EnumC13606x": { - "LIGHT": 1, - "LIGHT_TRANSLUCENT": 2, - "DARK_TRANSLUCENT": 3, - "LIGHT_ICON": 4, - "DARK_ICON": 5 - }, - "Qj_a0": { - "CONCAT": 1, - "REPLACE": 2 - }, - "Qj_e0": { - "SUCCESS": 0, - "FAILURE": 1, - "CANCEL": 2 - }, - "Qj_h0": { - "RIGHT": 1, - "LEFT": 2 - }, - "Qj_i0": { - "FULL": 1, - "TALL": 2, - "COMPACT": 3 - }, - "R70_e": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "EXTERNAL_SERVICE_UNAVAILABLE": 3, - "RETRY_LATER": 4, - "INVALID_CONTEXT": 100, - "NOT_SUPPORTED": 101, - "FORBIDDEN": 102, - "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201 - }, - "RegistrationType": { - "PHONE": 0, - "EMAIL_WAP": 1, - "FACEBOOK": 2305, - "SINA": 2306, - "RENREN": 2307, - "FEIXIN": 2308, - "APPLE": 2309, - "YAHOOJAPAN": 2310, - "GOOGLE": 2311 - }, - "ReportType": { - "ADVERTISING": 1, - "GENDER_HARASSMENT": 2, - "HARASSMENT": 3, - "OTHER": 4, - "IRRELEVANT_CONTENT": 5, - "IMPERSONATION": 6, - "SCAM": 7 - }, - "S70_a": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "RETRY_LATER": 3, - "INVALID_CONTEXT": 100, - "APP_UPGRADE_REQUIRED": 101 - }, - "SettingsAttributeEx": { - "NOTIFICATION_ENABLE": 0, - "NOTIFICATION_MUTE_EXPIRATION": 1, - "NOTIFICATION_NEW_MESSAGE": 2, - "NOTIFICATION_GROUP_INVITATION": 3, - "NOTIFICATION_SHOW_MESSAGE": 4, - "NOTIFICATION_INCOMING_CALL": 5, - "PRIVACY_SYNC_CONTACTS": 6, - "PRIVACY_SEARCH_BY_PHONE_NUMBER": 7, - "NOTIFICATION_SOUND_MESSAGE": 8, - "NOTIFICATION_SOUND_GROUP": 9, - "CONTACT_MY_TICKET": 10, - "IDENTITY_PROVIDER": 11, - "IDENTITY_IDENTIFIER": 12, - "PRIVACY_SEARCH_BY_USERID": 13, - "PRIVACY_SEARCH_BY_EMAIL": 14, - "PREFERENCE_LOCALE": 15, - "NOTIFICATION_DISABLED_WITH_SUB": 16, - "NOTIFICATION_PAYMENT": 17, - "SECURITY_CENTER_SETTINGS": 18, - "SNS_ACCOUNT": 19, - "PHONE_REGISTRATION": 20, - "PRIVACY_ALLOW_SECONDARY_DEVICE_LOGIN": 21, - "CUSTOM_MODE": 22, - "PRIVACY_PROFILE_IMAGE_POST_TO_MYHOME": 23, - "EMAIL_CONFIRMATION_STATUS": 24, - "PRIVACY_RECV_MESSAGES_FROM_NOT_FRIEND": 25, - "PRIVACY_AGREE_USE_LINECOIN_TO_PAIDCALL": 26, - "PRIVACY_AGREE_USE_PAIDCALL": 27, - "ACCOUNT_MIGRATION_PINCODE": 28, - "ENFORCED_INPUT_ACCOUNT_MIGRATION_PINCODE": 29, - "PRIVACY_ALLOW_FRIEND_REQUEST": 30, - "PWLESS_PRIMARY_CREDENTIAL_REGISTRATION": 31, - "ALLOWED_TO_CONNECT_EAP_ACCOUNT": 32, - "E2EE_ENABLE": 33, - "HITOKOTO_BACKUP_REQUESTED": 34, - "PRIVACY_PROFILE_MUSIC_POST_TO_MYHOME": 35, - "CONTACT_ALLOW_FOLLOWING": 36, - "PRIVACY_ALLOW_NEARBY": 37, - "AGREEMENT_NEARBY": 38, - "AGREEMENT_SQUARE": 39, - "NOTIFICATION_MENTION": 40, - "ALLOW_UNREGISTRATION_SECONDARY_DEVICE": 41, - "AGREEMENT_BOT_USE": 42, - "AGREEMENT_SHAKE_FUNCTION": 43, - "AGREEMENT_MOBILE_CONTACT_NAME": 44, - "NOTIFICATION_THUMBNAIL": 45, - "AGREEMENT_SOUND_TO_TEXT": 46, - "AGREEMENT_PRIVACY_POLICY_VERSION": 47, - "AGREEMENT_AD_BY_WEB_ACCESS": 48, - "AGREEMENT_PHONE_NUMBER_MATCHING": 49, - "AGREEMENT_COMMUNICATION_INFO": 50, - "PRIVACY_SHARE_PERSONAL_INFO_TO_FRIENDS": 51, - "AGREEMENT_THINGS_WIRELESS_COMMUNICATION": 52, - "AGREEMENT_GDPR": 53, - "PRIVACY_STATUS_MESSAGE_HISTORY": 54, - "AGREEMENT_PROVIDE_LOCATION": 55, - "AGREEMENT_BEACON": 56, - "PRIVACY_PROFILE_HISTORY": 57, - "AGREEMENT_CONTENTS_SUGGEST": 58, - "AGREEMENT_CONTENTS_SUGGEST_DATA_COLLECTION": 59, - "PRIVACY_AGE_RESULT": 60, - "PRIVACY_AGE_RESULT_RECEIVED": 61, - "AGREEMENT_OCR_IMAGE_COLLECTION": 62, - "PRIVACY_ALLOW_FOLLOW": 63, - "PRIVACY_SHOW_FOLLOW_LIST": 64, - "NOTIFICATION_BADGE_TALK_ONLY": 65, - "AGREEMENT_ICNA": 66, - "NOTIFICATION_REACTION": 67, - "AGREEMENT_MID": 68, - "HOME_NOTIFICATION_NEW_FRIEND": 69, - "HOME_NOTIFICATION_FAVORITE_FRIEND_UPDATE": 70, - "HOME_NOTIFICATION_GROUP_MEMBER_UPDATE": 71, - "HOME_NOTIFICATION_BIRTHDAY": 72, - "AGREEMENT_LINE_OUT_USE": 73, - "AGREEMENT_LINE_OUT_PROVIDE_INFO": 74, - "NOTIFICATION_SHOW_PROFILE_IMAGE": 75, - "AGREEMENT_PDPA": 76, - "AGREEMENT_LOCATION_VERSION": 77, - "ALLOWED_TO_SHOW_ZHD_PAGE": 78, - "AGREEMENT_SNOW_AI_AVATAR": 79, - "EAP_ONLY_ACCOUNT_TARGET_COUNTRY": 80, - "AGREEMENT_LYP_PREMIUM_ALBUM": 81, - "AGREEMENT_LYP_PREMIUM_ALBUM_VERSION": 82, - "AGREEMENT_ALBUM_USAGE_DATA": 83, - "AGREEMENT_ALBUM_USAGE_DATA_VERSION": 84, - "AGREEMENT_LYP_PREMIUM_BACKUP": 85, - "AGREEMENT_LYP_PREMIUM_BACKUP_VERSION": 86, - "AGREEMENT_OA_AI_ASSISTANT": 87, - "AGREEMENT_OA_AI_ASSISTANT_VERSION": 88, - "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE": 89, - "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE_VERSION": 90 - }, - "SnsIdType": { - "FACEBOOK": 1, - "SINA": 2, - "RENREN": 3, - "FEIXIN": 4, - "BBM": 5, - "APPLE": 6, - "YAHOOJAPAN": 7, - "GOOGLE": 8 - }, - "SpammerReason": { - "OTHER": 0, - "ADVERTISING": 1, - "GENDER_HARASSMENT": 2, - "HARASSMENT": 3, - "IMPERSONATION": 4, - "SCAM": 5 - }, - "SpotCategory": { - "UNKNOWN": 0, - "GOURMET": 1, - "BEAUTY": 2, - "TRAVEL": 3, - "SHOPPING": 4, - "ENTERTAINMENT": 5, - "SPORTS": 6, - "TRANSPORT": 7, - "LIFE": 8, - "HOSPITAL": 9, - "FINANCE": 10, - "EDUCATION": 11, - "OTHER": 12, - "ALL": 10000 - }, - "SquareAttribute": { - "NAME": 1, - "WELCOME_MESSAGE": 2, - "PROFILE_IMAGE": 3, - "DESCRIPTION": 4, - "SEARCHABLE": 6, - "CATEGORY": 7, - "INVITATION_URL": 8, - "ABLE_TO_USE_INVITATION_URL": 9, - "STATE": 10, - "EMBLEMS": 11, - "JOIN_METHOD": 12, - "CHANNEL_ID": 13, - "SVC_TAGS": 14 - }, - "SquareAuthorityAttribute": { - "UPDATE_SQUARE_PROFILE": 1, - "INVITE_NEW_MEMBER": 2, - "APPROVE_JOIN_REQUEST": 3, - "CREATE_POST": 4, - "CREATE_OPEN_SQUARE_CHAT": 5, - "DELETE_SQUARE_CHAT_OR_POST": 6, - "REMOVE_SQUARE_MEMBER": 7, - "GRANT_ROLE": 8, - "ENABLE_INVITATION_TICKET": 9, - "CREATE_CHAT_ANNOUNCEMENT": 10, - "UPDATE_MAX_CHAT_MEMBER_COUNT": 11, - "USE_READONLY_DEFAULT_CHAT": 12, - "SEND_ALL_MENTION": 13 - }, - "SquareChatType": { - "OPEN": 1, - "SECRET": 2, - "ONE_ON_ONE": 3, - "SQUARE_DEFAULT": 4 - }, - "SquareMemberAttribute": { - "DISPLAY_NAME": 1, - "PROFILE_IMAGE": 2, - "ABLE_TO_RECEIVE_MESSAGE": 3, - "MEMBERSHIP_STATE": 5, - "ROLE": 6, - "PREFERENCE": 7 - }, - "SquareMembershipState": { - "JOIN_REQUESTED": 1, - "JOINED": 2, - "REJECTED": 3, - "LEFT": 4, - "KICK_OUT": 5, - "BANNED": 6, - "DELETED": 7, - "JOIN_REQUEST_WITHDREW": 8 - }, - "StickerResourceType": { - "STATIC": 1, - "ANIMATION": 2, - "SOUND": 3, - "ANIMATION_SOUND": 4, - "POPUP": 5, - "POPUP_SOUND": 6, - "NAME_TEXT": 7, - "PER_STICKER_TEXT": 8 - }, - "SyncCategory": { - "PROFILE": 0, - "SETTINGS": 1, - "OPS": 2, - "CONTACT": 3, - "RECOMMEND": 4, - "BLOCK": 5, - "GROUP": 6, - "ROOM": 7, - "NOTIFICATION": 8, - "ADDRESS_BOOK": 9 - }, - "T70_C": { - "INITIAL_BACKUP_STATE_UNSPECIFIED": 0, - "INITIAL_BACKUP_STATE_READY": 1, - "INITIAL_BACKUP_STATE_MESSAGE_ONGOING": 2, - "INITIAL_BACKUP_STATE_FINISHED": 3, - "INITIAL_BACKUP_STATE_ABORTED": 4, - "INITIAL_BACKUP_STATE_MEDIA_ONGOING": 5 - }, - "T70_EnumC14390b": { - "UNKNOWN": 0, - "PHONE_NUMBER": 1, - "EMAIL": 2 - }, - "T70_EnumC14392c": { - "UNKNOWN": 0, - "SKIP": 1, - "PASSWORD": 2, - "WEB_BASED": 3, - "EMAIL_BASED": 4, - "NONE": 11 - }, - "T70_EnumC14406j": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "NOT_FOUND": 3, - "RETRY_LATER": 4, - "HUMAN_VERIFICATION_REQUIRED": 5, - "INVALID_CONTEXT": 100, - "APP_UPGRADE_REQUIRED": 101 - }, - "T70_K": { - "UNKNOWN": 0, - "SMS": 1, - "IVR": 2, - "SMSPULL": 3 - }, - "T70_L": { - "PREMIUM_TYPE_UNSPECIFIED": 0, - "PREMIUM_TYPE_LYP": 1, - "PREMIUM_TYPE_LINE": 2 - }, - "T70_Z0": { - "PHONE_VERIF": 1, - "EAP_VERIF": 2 - }, - "T70_e1": { - "UNKNOWN": 0, - "SKIP": 1, - "WEB_BASED": 2 - }, - "T70_j1": { - "UNKNOWN": 0, - "FACEBOOK": 1, - "APPLE": 2, - "GOOGLE": 3 - }, - "U70_c": { - "INTERNAL_ERROR": 0, - "FORBIDDEN": 1, - "INVALID_CONTEXT": 100 - }, - "Uf_EnumC14873o": { - "ANDROID": 1, - "IOS": 2 - }, - "VR0_l": { - "DEFAULT": 1, - "UEN": 2 - }, - "VerificationMethod": { - "NO_AVAILABLE": 0, - "PIN_VIA_SMS": 1, - "CALLERID_INDIGO": 2, - "PIN_VIA_TTS": 4, - "SKIP": 10 - }, - "VerificationResult": { - "FAILED": 0, - "OK_NOT_REGISTERED_YET": 1, - "OK_REGISTERED_WITH_SAME_DEVICE": 2, - "OK_REGISTERED_WITH_ANOTHER_DEVICE": 3 - }, - "WR0_a": { - "FREE": 1, - "PREMIUM": 2 - }, - "a80_EnumC16644b": { - "UNKNOWN": 0, - "FACEBOOK": 1, - "APPLE": 2, - "GOOGLE": 3 - }, - "FetchDirection": { - "FORWARD": 1, - "BACKWARD": 2 - }, - "LiveTalkEventType": { - "NOTIFIED_UPDATE_LIVE_TALK_TITLE": 1, - "NOTIFIED_UPDATE_LIVE_TALK_ANNOUNCEMENT": 2, - "NOTIFIED_UPDATE_SQUARE_MEMBER_ROLE": 3, - "NOTIFIED_UPDATE_LIVE_TALK_ALLOW_REQUEST_TO_SPEAK": 4, - "NOTIFIED_UPDATE_SQUARE_MEMBER": 5 - }, - "LiveTalkReportType": { - "ADVERTISING": 1, - "GENDER_HARASSMENT": 2, - "HARASSMENT": 3, - "IRRELEVANT_CONTENT": 4, - "OTHER": 5, - "IMPERSONATION": 6, - "SCAM": 7 - }, - "MessageSummaryReportType": { - "LEGAL_VIOLATION": 1, - "HARASSMENT": 2, - "PERSONAL_IDENTIFIER": 3, - "FALSE_INFORMATION": 4, - "GENDER_HARASSMENT": 5, - "OTHER": 6 - }, - "NotificationPostType": { - "POST_MENTION": 2, - "POST_LIKE": 3, - "POST_COMMENT": 4, - "POST_COMMENT_MENTION": 5, - "POST_COMMENT_LIKE": 6, - "POST_RELAY_JOIN": 7 - }, - "SquareEventStatus": { - "NORMAL": 1, - "ALERT_DISABLED": 2 - }, - "SquareEventType": { - "RECEIVE_MESSAGE": 0, - "SEND_MESSAGE": 1, - "NOTIFIED_JOIN_SQUARE_CHAT": 2, - "NOTIFIED_INVITE_INTO_SQUARE_CHAT": 3, - "NOTIFIED_LEAVE_SQUARE_CHAT": 4, - "NOTIFIED_DESTROY_MESSAGE": 5, - "NOTIFIED_MARK_AS_READ": 6, - "NOTIFIED_UPDATE_SQUARE_MEMBER_PROFILE": 7, - "NOTIFIED_UPDATE_SQUARE": 8, - "NOTIFIED_UPDATE_SQUARE_STATUS": 9, - "NOTIFIED_UPDATE_SQUARE_AUTHORITY": 10, - "NOTIFIED_UPDATE_SQUARE_MEMBER": 11, - "NOTIFIED_UPDATE_SQUARE_CHAT": 12, - "NOTIFIED_UPDATE_SQUARE_CHAT_STATUS": 13, - "NOTIFIED_UPDATE_SQUARE_CHAT_MEMBER": 14, - "NOTIFIED_CREATE_SQUARE_MEMBER": 15, - "NOTIFIED_CREATE_SQUARE_CHAT_MEMBER": 16, - "NOTIFIED_UPDATE_SQUARE_MEMBER_RELATION": 17, - "NOTIFIED_SHUTDOWN_SQUARE": 18, - "NOTIFIED_KICKOUT_FROM_SQUARE": 19, - "NOTIFIED_DELETE_SQUARE_CHAT": 20, - "NOTIFICATION_JOIN_REQUEST": 21, - "NOTIFICATION_JOINED": 22, - "NOTIFICATION_PROMOTED_COADMIN": 23, - "NOTIFICATION_PROMOTED_ADMIN": 24, - "NOTIFICATION_DEMOTED_MEMBER": 25, - "NOTIFICATION_KICKED_OUT": 26, - "NOTIFICATION_SQUARE_DELETE": 27, - "NOTIFICATION_SQUARE_CHAT_DELETE": 28, - "NOTIFICATION_MESSAGE": 29, - "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_NAME": 30, - "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_IMAGE": 31, - "NOTIFIED_UPDATE_SQUARE_FEATURE_SET": 32, - "NOTIFIED_ADD_BOT": 33, - "NOTIFIED_REMOVE_BOT": 34, - "NOTIFIED_UPDATE_SQUARE_NOTE_STATUS": 36, - "NOTIFIED_UPDATE_SQUARE_CHAT_ANNOUNCEMENT": 37, - "NOTIFIED_UPDATE_SQUARE_CHAT_MAX_MEMBER_COUNT": 38, - "NOTIFICATION_POST_ANNOUNCEMENT": 39, - "NOTIFICATION_POST": 40, - "MUTATE_MESSAGE": 41, - "NOTIFICATION_NEW_CHAT_MEMBER": 42, - "NOTIFIED_UPDATE_READONLY_CHAT": 43, - "NOTIFIED_UPDATE_MESSAGE_STATUS": 46, - "NOTIFICATION_MESSAGE_REACTION": 47, - "NOTIFIED_CHAT_POPUP": 48, - "NOTIFIED_SYSTEM_MESSAGE": 49, - "NOTIFIED_UPDATE_SQUARE_CHAT_FEATURE_SET": 50, - "NOTIFIED_UPDATE_LIVE_TALK": 51, - "NOTIFICATION_LIVE_TALK": 52, - "NOTIFIED_UPDATE_LIVE_TALK_INFO": 53, - "NOTIFICATION_THREAD_MESSAGE": 54, - "NOTIFICATION_THREAD_MESSAGE_REACTION": 55, - "NOTIFIED_UPDATE_THREAD": 56, - "NOTIFIED_UPDATE_THREAD_STATUS": 57, - "NOTIFIED_UPDATE_THREAD_MEMBER": 58, - "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE": 59, - "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE_STATUS": 60 - }, - "AdScreen": { - "CHATROOM": 1, - "THREAD_SPACE": 2, - "YOUR_THREADS": 3, - "NOTE_LIST": 4, - "NOTE_END": 5, - "WEB_MAIN": 6, - "WEB_SEARCH_RESULT": 7 - }, - "BooleanState": { - "NONE": 0, - "OFF": 1, - "ON": 2 - }, - "ChatroomPopupType": { - "IMG_TEXT": 1, - "TEXT_ONLY": 2, - "IMG_ONLY": 3 - }, - "ContentsAttribute": { - "NONE": 1, - "CONTENTS_HIDDEN": 2 - }, - "FetchType": { - "DEFAULT": 1, - "PREFETCH_BY_SERVER": 2, - "PREFETCH_BY_CLIENT": 3 - }, - "LiveTalkAttribute": { - "TITLE": 1, - "ALLOW_REQUEST_TO_SPEAK": 2 - }, - "LiveTalkRole": { - "HOST": 1, - "CO_HOST": 2, - "GUEST": 3 - }, - "LiveTalkSpeakerSetting": { - "APPROVAL": 1, - "ALL": 2 - }, - "LiveTalkType": { - "PUBLIC": 1, - "PRIVATE": 2 - }, - "MessageReactionType": { - "ALL": 0, - "UNDO": 1, - "NICE": 2, - "LOVE": 3, - "FUN": 4, - "AMAZING": 5, - "SAD": 6, - "OMG": 7 - }, - "NotifiedMessageType": { - "MENTION": 1, - "REPLY": 2 - }, - "PopupAttribute": { - "NAME": 1, - "ACTIVATED": 2, - "STARTS_AT": 3, - "ENDS_AT": 4, - "CONTENT": 5 - }, - "PopupType": { - "MAIN": 1, - "CHATROOM": 2 - }, - "SquareChatAttribute": { - "NAME": 2, - "SQUARE_CHAT_IMAGE": 3, - "STATE": 4, - "TYPE": 5, - "MAX_MEMBER_COUNT": 6, - "MESSAGE_VISIBILITY": 7, - "ABLE_TO_SEARCH_MESSAGE": 8 - }, - "SquareChatFeatureControlState": { - "DISABLED": 1, - "ENABLED": 2 - }, - "SquareChatMemberAttribute": { - "MEMBERSHIP_STATE": 4, - "NOTIFICATION_MESSAGE": 6, - "NOTIFICATION_NEW_MEMBER": 7, - "LEFT_BY_KICK_MESSAGE_LOCAL_ID": 8, - "MESSAGE_LOCAL_ID_WHEN_BLOCK": 9 - }, - "SquareChatMembershipState": { - "JOINED": 1, - "LEFT": 2 - }, - "SquareChatState": { - "ALIVE": 0, - "DELETED": 1, - "SUSPENDED": 2 - }, - "SquareEmblem": { - "SUPER": 1, - "OFFICIAL": 2 - }, - "SquareErrorCode": { - "UNKNOWN": 0, - "ILLEGAL_ARGUMENT": 400, - "AUTHENTICATION_FAILURE": 401, - "FORBIDDEN": 403, - "NOT_FOUND": 404, - "REVISION_MISMATCH": 409, - "PRECONDITION_FAILED": 410, - "INTERNAL_ERROR": 500, - "NOT_IMPLEMENTED": 501, - "TRY_AGAIN_LATER": 503, - "MAINTENANCE": 505, - "NO_PRESENCE_EXISTS": 506 - }, - "SquareFeatureControlState": { - "DISABLED": 1, - "ENABLED": 2 - }, - "SquareFeatureSetAttribute": { - "CREATING_SECRET_SQUARE_CHAT": 1, - "INVITING_INTO_OPEN_SQUARE_CHAT": 2, - "CREATING_SQUARE_CHAT": 3, - "READONLY_DEFAULT_CHAT": 4, - "SHOWING_ADVERTISEMENT": 5, - "DELEGATE_JOIN_TO_PLUG": 6, - "DELEGATE_KICK_OUT_TO_PLUG": 7, - "DISABLE_UPDATE_JOIN_METHOD": 8, - "DISABLE_TRANSFER_ADMIN": 9, - "CREATING_LIVE_TALK": 10, - "DISABLE_UPDATE_SEARCHABLE": 11, - "SUMMARIZING_MESSAGES": 12, - "CREATING_SQUARE_THREAD": 13, - "ENABLE_SQUARE_THREAD": 14, - "DISABLE_CHANGE_ROLE_CO_ADMIN": 15 - }, - "SquareJoinMethodType": { - "NONE": 0, - "APPROVAL": 1, - "CODE": 2 - }, - "SquareMemberRelationState": { - "NONE": 1, - "BLOCKED": 2 - }, - "SquareMemberRole": { - "ADMIN": 1, - "CO_ADMIN": 2, - "MEMBER": 10 - }, - "SquareMessageState": { - "SENT": 1, - "DELETED": 2, - "FORBIDDEN": 3, - "UNSENT": 4 - }, - "SquareMetadataAttribute": { - "EXCLUDED": 1, - "NO_AD": 2 - }, - "SquarePreferenceAttribute": { - "FAVORITE": 1, - "NOTI_FOR_NEW_JOIN_REQUEST": 2 - }, - "SquareProviderType": { - "UNKNOWN": 1, - "YOUTUBE": 2, - "OA_FANSPACE": 3 - }, - "SquareState": { - "ALIVE": 0, - "DELETED": 1, - "SUSPENDED": 2 - }, - "SquareThreadAttribute": { - "STATE": 1, - "EXPIRES_AT": 2, - "READ_ONLY_AT": 3 - }, - "SquareThreadMembershipState": { - "JOINED": 1, - "LEFT": 2 - }, - "SquareThreadState": { - "ALIVE": 1, - "DELETED": 2 - }, - "SquareType": { - "CLOSED": 0, - "OPEN": 1 - }, - "TargetChatType": { - "ALL": 0, - "MIDS": 1, - "CATEGORIES": 2, - "CHANNEL_ID": 3 - }, - "TargetUserType": { - "ALL": 0, - "MIDS": 1 - }, - "do0_EnumC23139B": { - "CLOUD": 1, - "BLE": 2, - "BEACON": 3 - }, - "do0_EnumC23147e": { - "SUCCESS": 0, - "UNKNOWN_ERROR": 1, - "BLUETOOTH_NOT_AVAILABLE": 2, - "CONNECTION_TIMEOUT": 3, - "CONNECTION_ERROR": 4, - "CONNECTION_IN_PROGRESS": 5 - }, - "do0_EnumC23148f": { - "ONETIME": 0, - "AUTOMATIC": 1, - "BEACON": 2 - }, - "do0_G": { - "SUCCESS": 0, - "UNKNOWN_ERROR": 1, - "GATT_ERROR": 2, - "GATT_OPERATION_NOT_SUPPORTED": 3, - "GATT_SERVICE_NOT_FOUND": 4, - "GATT_CHARACTERISTIC_NOT_FOUND": 5, - "GATT_CONNECTION_CLOSED": 6, - "CONNECTION_INVALID": 7 - }, - "do0_M": { - "INTERNAL_SERVER_ERROR": 0, - "UNAUTHORIZED": 1, - "INVALID_REQUEST": 2, - "INVALID_STATE": 3, - "DEVICE_LIMIT_EXCEEDED": 4096, - "UNSUPPORTED_REGION": 4097 - }, - "fN0_EnumC24466B": { - "LINE_PREMIUM": 0, - "LYP_PREMIUM": 1 - }, - "fN0_EnumC24467C": { - "LINE": 1, - "YAHOO_JAPAN": 2 - }, - "fN0_EnumC24469a": { - "OK": 1, - "NOT_SUPPORTED": 2, - "UNDEFINED": 3, - "NOT_ENOUGH_TICKETS": 4, - "NOT_FRIENDS": 5, - "NO_AGREEMENT": 6 - }, - "fN0_F": { - "OK": 1, - "NOT_SUPPORTED": 2, - "UNDEFINED": 3, - "CONFLICT": 4, - "NOT_AVAILABLE": 5, - "INVALID_INVITATION": 6, - "IN_PAYMENT_FAILURE_STATE": 7 - }, - "fN0_G": { - "APPLE": 1, - "GOOGLE": 2 - }, - "fN0_H": { - "INACTIVE": 1, - "ACTIVE_FINITE": 2, - "ACTIVE_INFINITE": 3 - }, - "fN0_o": { - "AVAILABLE": 1, - "ALREADY_SUBSCRIBED": 2 - }, - "fN0_p": { - "UNKNOWN": 0, - "SOFTBANK_BUNDLE": 1, - "YBB_BUNDLE": 2, - "YAHOO_MOBILE_BUNDLE": 3, - "PPCG_BUNDLE": 4, - "ENJOY_BUNDLE": 5, - "YAHOO_TRIAL_BUNDLE": 6, - "YAHOO_APPLE": 7, - "YAHOO_GOOGLE": 8, - "LINE_APPLE": 9, - "LINE_GOOGLE": 10, - "YAHOO_WALLET": 11 - }, - "fN0_q": { - "UNKNOWN": 0, - "NONE": 1, - "ILLEGAL_ARGUMENT": 16641, - "NOT_FOUND": 16642, - "NOT_AVAILABLE": 16643, - "INTERNAL_SERVER_ERROR": 16644, - "AUTHENTICATION_FAILED": 16645 - }, - "g80_EnumC24993a": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "INVALID_CONTEXT": 2, - "TOO_MANY_REQUESTS": 3 - }, - "h80_EnumC25645e": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "NOT_FOUND": 2, - "RETRY_LATER": 3, - "INVALID_CONTEXT": 100, - "NOT_SUPPORTED": 101 - }, - "I80_EnumC26392b": { - "UNKNOWN": 0, - "SKIP": 1, - "PASSWORD": 2, - "EMAIL_BASED": 4, - "NONE": 11 - }, - "I80_EnumC26394c": { - "PHONE_NUMBER": 0, - "APPLE": 1, - "GOOGLE": 2 - }, - "I80_EnumC26408j": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "NOT_FOUND": 3, - "RETRY_LATER": 4, - "HUMAN_VERIFICATION_REQUIRED": 5, - "INVALID_CONTEXT": 100, - "APP_UPGRADE_REQUIRED": 101 - }, - "I80_EnumC26425y": { - "UNKNOWN": 0, - "SMS": 1, - "IVR": 2 - }, - "j80_EnumC27228a": { - "AUTHENTICATION_FAILED": 1, - "INVALID_STATE": 2, - "NOT_AUTHORIZED_DEVICE": 3, - "MUST_REFRESH_V3_TOKEN": 4 - }, - "jO0_EnumC27533B": { - "PAYMENT_APPLE": 1, - "PAYMENT_GOOGLE": 2 - }, - "jO0_EnumC27535b": { - "ILLEGAL_ARGUMENT": 0, - "AUTHENTICATION_FAILED": 1, - "INTERNAL_ERROR": 20, - "MESSAGE_DEFINED_ERROR": 29, - "MAINTENANCE_ERROR": 33 - }, - "jO0_EnumC27559z": { - "PAYMENT_PG_NONE": 0, - "PAYMENT_PG_AU": 1, - "PAYMENT_PG_AL": 2 - }, - "jf_EnumC27712a": { - "NONE": 1, - "DOES_NOT_RESPOND": 2, - "RESPOND_MANUALLY": 3, - "RESPOND_AUTOMATICALLY": 4 - }, - "jf_EnumC27717f": { - "UNKNOWN": 0, - "BAD_REQUEST": 1, - "NOT_FOUND": 2, - "FORBIDDEN": 3, - "INTERNAL_SERVER_ERROR": 4 - }, - "kf_EnumC28766a": { - "ILLEGAL_ARGUMENT": 0, - "INTERNAL_ERROR": 1, - "UNAUTHORIZED": 2 - }, - "kf_o": { - "ANDROID": 0, - "IOS": 1 - }, - "kf_p": { - "RICHMENU": 0, - "TALK_ROOM": 1 - }, - "kf_r": { - "WEB": 0, - "POSTBACK": 1, - "SEND_MESSAGE": 2 - }, - "kf_u": { - "CLICK": 0, - "IMPRESSION": 1 - }, - "kf_x": { - "UNKNOWN": 0, - "PROFILE": 1, - "TALK_LIST": 2, - "OA_CALL": 3 - }, - "n80_o": { - "INTERNAL_ERROR": 0, - "INVALID_CONTEXT": 100, - "FIDO_UNKNOWN_CREDENTIAL_ID": 200, - "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201, - "FIDO_UNACCEPTABLE_CONTENT": 202, - "FIDO_INVALID_REQUEST": 203 - }, - "o80_e": { - "INTERNAL_ERROR": 0, - "VERIFICATION_FAILED": 1, - "LOGIN_NOT_ALLOWED": 2, - "EXTERNAL_SERVICE_UNAVAILABLE": 3, - "RETRY_LATER": 4, - "NOT_SUPPORTED": 100, - "ILLEGAL_ARGUMENT": 101, - "INVALID_CONTEXT": 102, - "FORBIDDEN": 103, - "FIDO_UNKNOWN_CREDENTIAL_ID": 200, - "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201, - "FIDO_UNACCEPTABLE_CONTENT": 202, - "FIDO_INVALID_REQUEST": 203 - }, - "og_E": { - "RUNNING": 1, - "CLOSING": 2, - "CLOSED": 3, - "SUSPEND": 4 - }, - "og_EnumC32661b": { - "INACTIVE": 0, - "ACTIVE": 1 - }, - "og_EnumC32663d": { - "PREMIUM": 0, - "VERIFIED": 1, - "UNVERIFIED": 2 - }, - "og_EnumC32671l": { - "ILLEGAL_ARGUMENT": 0, - "AUTHENTICATION_FAILED": 1, - "INVALID_STATE": 3, - "NOT_FOUND": 5, - "INTERNAL_ERROR": 20, - "MAINTENANCE_ERROR": 33 - }, - "og_G": { - "FREE": 0, - "MONTHLY": 1, - "PER_PAYMENT": 2 - }, - "og_I": { - "OK": 0, - "REACHED_TIER_LIMIT": 1, - "REACHED_MEMBER_LIMIT": 2, - "ALREADY_JOINED": 3, - "NOT_SUPPORTED_LINE_VERSION": 4, - "BOT_USER_REGION_IS_NOT_MATCH": 5 - }, - "q80_EnumC33651c": { - "INTERNAL_ERROR": 0, - "ILLEGAL_ARGUMENT": 1, - "VERIFICATION_FAILED": 2, - "NOT_ALLOWED_QR_CODE_LOGIN": 3, - "VERIFICATION_NOTICE_FAILED": 4, - "RETRY_LATER": 5, - "INVALID_CONTEXT": 100, - "APP_UPGRADE_REQUIRED": 101 - }, - "qm_EnumC34112e": { - "BUTTON": 1, - "ENTRY_SELECTED": 2, - "BROADCAST_ENTER": 3, - "BROADCAST_LEAVE": 4, - "BROADCAST_STAY": 5 - }, - "qm_s": { - "ILLEGAL_ARGUMENT": 0, - "NOT_FOUND": 5, - "INTERNAL_ERROR": 20 - }, - "r80_EnumC34361a": { - "PERSONAL_ACCOUNT": 1, - "CURRENT_ACCOUNT": 2 - }, - "r80_EnumC34362b": { - "BANK_ALL": 1, - "BANK_DEPOSIT": 2, - "BANK_WITHDRAWAL": 3 - }, - "r80_EnumC34365e": { - "BANK": 1, - "ATM": 2, - "CONVENIENCE_STORE": 3, - "DEBIT_CARD": 4, - "E_CHANNEL": 5, - "VIRTUAL_BANK_ACCOUNT": 6, - "AUTO": 7, - "CVS_LAWSON": 8, - "SEVEN_BANK_DEPOSIT": 9, - "CODE_DEPOSIT": 10 - }, - "r80_EnumC34367g": { - "AVAILABLE": 0, - "DIFFERENT_REGION": 1, - "UNSUPPORTED_DEVICE": 2, - "PHONE_NUMBER_UNREGISTERED": 3, - "UNAVAILABLE_FROM_LINE_PAY": 4, - "INVALID_USER": 5 - }, - "r80_EnumC34368h": { - "CHARGE": 1, - "WITHDRAW": 2 - }, - "r80_EnumC34370j": { - "UNKNOWN": 0, - "VISA": 1, - "MASTER": 2, - "AMEX": 3, - "DINERS": 4, - "JCB": 5 - }, - "r80_EnumC34371k": { - "NULL": 0, - "ATM": 1, - "CONVENIENCE_STORE": 2 - }, - "r80_EnumC34372l": { - "SCALE2": 1, - "SCALE3": 2, - "HDPI": 3, - "XHDPI": 4 - }, - "r80_EnumC34374n": { - "SUCCESS": 0, - "GENERAL_USER_ERROR": 1000, - "ACCOUNT_NOT_EXISTS": 1101, - "ACCOUNT_INVALID_STATUS": 1102, - "ACCOUNT_ALREADY_EXISTS": 1103, - "MERCHANT_NOT_EXISTS": 1104, - "MERCHANT_INVALID_STATUS": 1105, - "AGREEMENT_REQUIRED": 1107, - "BLACKLISTED": 1108, - "WRONG_PASSWORD": 1109, - "INVALID_CREDIT_CARD": 1110, - "LIMIT_EXCEEDED": 1111, - "CANNOT_PROCEED": 1115, - "TOO_WEAK_PASSWORD": 1120, - "CANNOT_CREATE_ACCOUNT": 1125, - "TEMPORARY_PASSWORD_ERROR": 1130, - "MISSING_PARAMETERS": 1140, - "NO_VALID_MYCODE_ACCOUNT": 1141, - "INSUFFICIENT_BALANCE": 1142, - "TRANSACTION_NOT_FOUND": 1150, - "TRANSACTION_FINISHED": 1152, - "PAYMENT_AMOUNT_WRONG": 1153, - "BALANCE_ACCOUNT_NOT_EXISTS": 1157, - "DUPLICATED_CITIZEN_ID": 1158, - "PAYMENT_REQUEST_NOT_FOUND": 1159, - "AUTH_FAILED": 1169, - "PASSWORD_SETTING_REQUIRED": 1171, - "TRANSACTION_ALREADY_PROCESSED": 1172, - "CURRENCY_NOT_SUPPORTED": 1178, - "PAYMENT_NOT_AVAILABLE": 1180, - "TRANSFER_REQUEST_NOT_FOUND": 1181, - "INVALID_PAYMENT_AMOUNT": 1183, - "INSUFFICIENT_PAYMENT_AMOUNT": 1184, - "EXTERNAL_SYSTEM_MAINTENANCE": 1185, - "EXTERNAL_SYSTEM_INOPERATIONAL": 1186, - "SESSION_EXPIRED": 1192, - "UPGRADE_REQUIRED": 1195, - "REQUEST_TOKEN_EXPIRED": 1196, - "OPERATION_FINISHED": 1198, - "EXTERNAL_SYSTEM_ERROR": 1199, - "PARTIAL_AMOUNT_APPROVED": 1299, - "PINCODE_AUTH_REQUIRED": 1600, - "ADDITIONAL_AUTH_REQUIRED": 1601, - "NOT_BOUND": 1603, - "OTP_USER_REGISTRATION_ERROR": 1610, - "OTP_CARD_REGISTRATION_ERROR": 1611, - "NO_AUTH_METHOD": 1612, - "GENERAL_USER_ERROR_RESTART": 1696, - "GENERAL_USER_ERROR_REFRESH": 1697, - "GENERAL_USER_ERROR_CLOSE": 1698, - "INTERNAL_SERVER_ERROR": 9000, - "INTERNAL_SYSTEM_MAINTENANCE": 9999, - "UNKNOWN_ERROR": 10000 - }, - "r80_EnumC34376p": { - "TRANSFER": 1, - "TRANSFER_REQUEST": 2, - "DUTCH": 3, - "INVITATION": 4 - }, - "r80_EnumC34377q": { - "NULL": 0, - "UNIDEN": 1, - "WAIT": 2, - "IDENTIFIED": 3, - "CHECKING": 4 - }, - "r80_EnumC34378s": { - "UNKNOWN": 0, - "MORE_TAB": 1, - "CHAT_ROOM_PLUS_MENU": 2, - "TRANSFER": 3, - "PAYMENT": 4, - "LINECARD": 5, - "INVITATION": 6 - }, - "r80_e0": { - "NONE": 0, - "ONE_TIME_PAYMENT_AGREEMENT": 1, - "SIMPLE_JOINING_AGREEMENT": 2, - "LINE_CARD_CASH_AGREEMENT": 3, - "LINE_CARD_MONEY_AGREEMENT": 4, - "JOINING_WITH_LINE_CARD_AGREEMENT": 5, - "LINE_CARD_AGREEMENT": 6 - }, - "r80_g0": { - "NULL": 0, - "ATM": 1, - "CONVENIENCE_STORE": 2, - "ALL": 3 - }, - "r80_h0": { - "READY": 1, - "COMPLETE": 2, - "WAIT": 3, - "CANCEL": 4, - "FAIL": 5, - "EXPIRE": 6, - "ALL": 7 - }, - "r80_i0": { - "TRANSFER_ACCEPTABLE": 1, - "REMOVE_INVOICE": 2, - "INVOICE_CODE": 3, - "SHOW_ALWAYS_INVOICE": 4 - }, - "r80_m0": { - "OK": 1, - "NOT_ALIVE_USER": 2, - "NEED_BALANCE_DISCLAIMER": 3, - "ECONTEXT_CHARGING_IN_PROGRESS": 4, - "TRANSFER_IN_PROGRESS": 6, - "OK_REMAINING_BALANCE": 7, - "ADVERSE_BALANCE": 8, - "CONFIRM_REQUIRED": 9 - }, - "r80_n0": { - "LINE": 1, - "LINEPAY": 2 - }, - "r80_r": { - "CITIZEN_ID": 1, - "PASSPORT": 2, - "WORK_PERMIT": 3, - "ALIEN_CARD": 4 - }, - "t80_h": { - "CLIENT": 1, - "SERVER": 2 - }, - "t80_i": { - "APP_INSTANCE_LOCAL": 1, - "APP_TYPE_LOCAL": 2, - "GLOBAL": 3 - }, - "t80_n": { - "UNKNOWN": 0, - "NONE": 1, - "ILLEGAL_ARGUMENT": 16641, - "NOT_FOUND": 16642, - "NOT_AVAILABLE": 16643, - "TOO_LARGE_VALUE": 16644, - "CLOCK_DRIFT_DETECTED": 16645, - "UNSUPPORTED_APPLICATION_TYPE": 16646, - "DUPLICATED_ENTRY": 16647, - "AUTHENTICATION_FAILED": 16897, - "INTERNAL_SERVER_ERROR": 20737, - "SERVICE_IN_MAINTENANCE_MODE": 20738, - "SERVICE_UNAVAILABLE": 20739 - }, - "t80_r": { - "USER_ACTION": 1, - "DATA_OUTDATED": 2, - "APP_MIGRATION": 3, - "OTHER": 100 - }, - "vh_EnumC37632c": { - "ACTIVE": 1, - "INACTIVE": 2 - }, - "vh_m": { - "SAFE": 1, - "NOT_SAFE": 2 - }, - "wm_EnumC38497a": { - "UNKNOWN": 0, - "BOT_NOT_FOUND": 1, - "BOT_NOT_AVAILABLE": 2, - "NOT_A_MEMBER": 3, - "SQUARECHAT_NOT_FOUND": 4, - "FORBIDDEN": 5, - "ILLEGAL_ARGUMENT": 400, - "AUTHENTICATION_FAILED": 401, - "INTERNAL_ERROR": 500 - }, - "zR0_EnumC40578c": { - "FOREGROUND": 0, - "BACKGROUND": 1 - }, - "zR0_EnumC40579d": { - "STICKER": 1, - "THEME": 2, - "STICON": 3 - }, - "zR0_h": { - "NORMAL": 0, - "BIG": 1 - }, - "zR0_j": { - "UNKNOWN": 0, - "NONE": 1, - "ILLEGAL_ARGUMENT": 16641, - "NOT_FOUND": 16642, - "NOT_AVAILABLE": 16643, - "AUTHENTICATION_FAILED": 16897, - "INTERNAL_SERVER_ERROR": 20737, - "SERVICE_UNAVAILABLE": 20739 - }, - "zf_EnumC40713a": { - "PERSONAL": 1, - "ROOM": 2, - "GROUP": 3, - "SQUARE_CHAT": 4 - }, - "zf_EnumC40715c": { - "REGULAR": 1, - "PRIORITY": 2, - "MORE": 3 - }, - "zf_EnumC40716d": { - "INVALID_REQUEST": 1, - "UNAUTHORIZED": 2, - "SERVER_ERROR": 100 - }, - "LoginResultType": { - "SUCCESS": 1, - "REQUIRE_QRCODE": 2, - "REQUIRE_DEVICE_CONFIRM": 3, - "REQUIRE_SMS_CONFIRM": 4 - } +export const enums: { + AR0_g: Record; + AR0_q: Record; + AccountMigrationPincodeType: Record< + AccountMigrationPincodeType & string, + AccountMigrationPincodeType & number + >; + ApplicationType: Record; + BotType: Record; + CarrierCode: Record; + ChannelErrorCode: Record< + ChannelErrorCode & string, + ChannelErrorCode & number + >; + ContactAttribute: Record< + ContactAttribute & string, + ContactAttribute & number + >; + ContactSetting: Record; + ContactStatus: Record; + ContactType: Record; + ContentType: Record; + Eg_EnumC8927a: Record; + EmailConfirmationStatus: Record< + EmailConfirmationStatus & string, + EmailConfirmationStatus & number + >; + ErrorCode: Record; + Fg_a: Record; + FriendRequestStatus: Record< + FriendRequestStatus & string, + FriendRequestStatus & number + >; + IdentityProvider: Record< + IdentityProvider & string, + IdentityProvider & number + >; + LN0_F0: Record; + LN0_X0: Record; + MIDType: Record; + NZ0_B0: Record; + NZ0_C0: Record; + NZ0_EnumC12154b1: Record< + NZ0_EnumC12154b1 & string, + NZ0_EnumC12154b1 & number + >; + NZ0_EnumC12169g1: Record< + NZ0_EnumC12169g1 & string, + NZ0_EnumC12169g1 & number + >; + NZ0_EnumC12170h: Record; + NZ0_EnumC12188n: Record; + NZ0_EnumC12192o0: Record< + NZ0_EnumC12192o0 & string, + NZ0_EnumC12192o0 & number + >; + NZ0_EnumC12193o1: Record< + NZ0_EnumC12193o1 & string, + NZ0_EnumC12193o1 & number + >; + NZ0_EnumC12195p0: Record< + NZ0_EnumC12195p0 & string, + NZ0_EnumC12195p0 & number + >; + NZ0_EnumC12197q: Record; + NZ0_EnumC12218x0: Record< + NZ0_EnumC12218x0 & string, + NZ0_EnumC12218x0 & number + >; + NZ0_I0: Record; + NZ0_K0: Record; + NZ0_N0: Record; + NZ0_S0: Record; + NZ0_W0: Record; + NotificationStatus: Record< + NotificationStatus & string, + NotificationStatus & number + >; + NotificationType: Record< + NotificationType & string, + NotificationType & number + >; + Ob1_B0: Record; + Ob1_C1: Record; + Ob1_D0: Record; + Ob1_EnumC12607a1: Record< + Ob1_EnumC12607a1 & string, + Ob1_EnumC12607a1 & number + >; + Ob1_EnumC12610b1: Record< + Ob1_EnumC12610b1 & string, + Ob1_EnumC12610b1 & number + >; + Ob1_EnumC12631i1: Record< + Ob1_EnumC12631i1 & string, + Ob1_EnumC12631i1 & number + >; + Ob1_EnumC12638l: Record; + Ob1_EnumC12641m: Record; + Ob1_EnumC12652p1: Record< + Ob1_EnumC12652p1 & string, + Ob1_EnumC12652p1 & number + >; + Ob1_EnumC12656r0: Record< + Ob1_EnumC12656r0 & string, + Ob1_EnumC12656r0 & number + >; + Ob1_EnumC12664u: Record; + Ob1_EnumC12666u1: Record< + Ob1_EnumC12666u1 & string, + Ob1_EnumC12666u1 & number + >; + Ob1_F1: Record; + Ob1_I: Record; + Ob1_J0: Record; + Ob1_J1: Record; + Ob1_K1: Record; + Ob1_M1: Record; + Ob1_O0: Record; + Ob1_O1: Record; + Ob1_P1: Record; + Ob1_Q1: Record; + Ob1_R1: Record; + Ob1_U1: Record; + Ob1_V1: Record; + Ob1_X1: Record; + Ob1_a2: Record; + Ob1_c2: Record; + OpType: Record; + P70_g: Record; + PaidCallType: Record; + PayloadType: Record; + Pb1_A0: Record; + Pb1_A3: Record; + Pb1_B: Record; + Pb1_D0: Record; + Pb1_D4: Record; + Pb1_D6: Record; + Pb1_E7: Record; + Pb1_EnumC12917a6: Record< + Pb1_EnumC12917a6 & string, + Pb1_EnumC12917a6 & number + >; + Pb1_EnumC12926b1: Record< + Pb1_EnumC12926b1 & string, + Pb1_EnumC12926b1 & number + >; + Pb1_EnumC12941c2: Record< + Pb1_EnumC12941c2 & string, + Pb1_EnumC12941c2 & number + >; + Pb1_EnumC12945c6: Record< + Pb1_EnumC12945c6 & string, + Pb1_EnumC12945c6 & number + >; + Pb1_EnumC12970e3: Record< + Pb1_EnumC12970e3 & string, + Pb1_EnumC12970e3 & number + >; + Pb1_EnumC12997g2: Record< + Pb1_EnumC12997g2 & string, + Pb1_EnumC12997g2 & number + >; + Pb1_EnumC12998g3: Record< + Pb1_EnumC12998g3 & string, + Pb1_EnumC12998g3 & number + >; + Pb1_EnumC13009h0: Record< + Pb1_EnumC13009h0 & string, + Pb1_EnumC13009h0 & number + >; + Pb1_EnumC13010h1: Record< + Pb1_EnumC13010h1 & string, + Pb1_EnumC13010h1 & number + >; + Pb1_EnumC13015h6: Record< + Pb1_EnumC13015h6 & string, + Pb1_EnumC13015h6 & number + >; + Pb1_EnumC13022i: Record; + Pb1_EnumC13029i6: Record< + Pb1_EnumC13029i6 & string, + Pb1_EnumC13029i6 & number + >; + Pb1_EnumC13037j0: Record< + Pb1_EnumC13037j0 & string, + Pb1_EnumC13037j0 & number + >; + Pb1_EnumC13050k: Record; + Pb1_EnumC13082m3: Record< + Pb1_EnumC13082m3 & string, + Pb1_EnumC13082m3 & number + >; + Pb1_EnumC13093n0: Record< + Pb1_EnumC13093n0 & string, + Pb1_EnumC13093n0 & number + >; + Pb1_EnumC13127p6: Record< + Pb1_EnumC13127p6 & string, + Pb1_EnumC13127p6 & number + >; + Pb1_EnumC13128p7: Record< + Pb1_EnumC13128p7 & string, + Pb1_EnumC13128p7 & number + >; + Pb1_EnumC13148r0: Record< + Pb1_EnumC13148r0 & string, + Pb1_EnumC13148r0 & number + >; + Pb1_EnumC13151r3: Record< + Pb1_EnumC13151r3 & string, + Pb1_EnumC13151r3 & number + >; + Pb1_EnumC13162s0: Record< + Pb1_EnumC13162s0 & string, + Pb1_EnumC13162s0 & number + >; + Pb1_EnumC13196u6: Record< + Pb1_EnumC13196u6 & string, + Pb1_EnumC13196u6 & number + >; + Pb1_EnumC13209v5: Record< + Pb1_EnumC13209v5 & string, + Pb1_EnumC13209v5 & number + >; + Pb1_EnumC13221w3: Record< + Pb1_EnumC13221w3 & string, + Pb1_EnumC13221w3 & number + >; + Pb1_EnumC13222w4: Record< + Pb1_EnumC13222w4 & string, + Pb1_EnumC13222w4 & number + >; + Pb1_EnumC13237x5: Record< + Pb1_EnumC13237x5 & string, + Pb1_EnumC13237x5 & number + >; + Pb1_EnumC13238x6: Record< + Pb1_EnumC13238x6 & string, + Pb1_EnumC13238x6 & number + >; + Pb1_EnumC13251y5: Record< + Pb1_EnumC13251y5 & string, + Pb1_EnumC13251y5 & number + >; + Pb1_EnumC13252y6: Record< + Pb1_EnumC13252y6 & string, + Pb1_EnumC13252y6 & number + >; + Pb1_EnumC13260z0: Record< + Pb1_EnumC13260z0 & string, + Pb1_EnumC13260z0 & number + >; + Pb1_EnumC13267z7: Record< + Pb1_EnumC13267z7 & string, + Pb1_EnumC13267z7 & number + >; + Pb1_F0: Record; + Pb1_F4: Record; + Pb1_F5: Record; + Pb1_F6: Record; + Pb1_G3: Record; + Pb1_G4: Record; + Pb1_G6: Record; + Pb1_H6: Record; + Pb1_I6: Record; + Pb1_J4: Record; + Pb1_K2: Record; + Pb1_K6: Record; + Pb1_L2: Record; + Pb1_L4: Record; + Pb1_M6: Record; + Pb1_N6: Record; + Pb1_O2: Record; + Pb1_O6: Record; + Pb1_P6: Record; + Pb1_Q2: Record; + Pb1_R3: Record; + Pb1_S7: Record; + Pb1_T3: Record; + Pb1_T7: Record; + Pb1_V7: Record; + Pb1_W2: Record; + Pb1_W3: Record; + Pb1_X1: Record; + Pb1_X2: Record; + Pb1_Z2: Record; + Pb1_gd: Record; + Pb1_od: Record; + PointErrorCode: Record; + Q70_q: Record; + Q70_r: Record; + Qj_EnumC13584a: Record; + Qj_EnumC13585b: Record; + Qj_EnumC13588e: Record; + Qj_EnumC13592i: Record; + Qj_EnumC13597n: Record; + Qj_EnumC13604v: Record; + Qj_EnumC13605w: Record; + Qj_EnumC13606x: Record; + Qj_a0: Record; + Qj_e0: Record; + Qj_h0: Record; + Qj_i0: Record; + R70_e: Record; + RegistrationType: Record< + RegistrationType & string, + RegistrationType & number + >; + ReportType: Record; + S70_a: Record; + SettingsAttributeEx: Record< + SettingsAttributeEx & string, + SettingsAttributeEx & number + >; + SnsIdType: Record; + SpammerReason: Record; + SpotCategory: Record; + SquareAttribute: Record; + SquareAuthorityAttribute: Record< + SquareAuthorityAttribute & string, + SquareAuthorityAttribute & number + >; + SquareChatType: Record; + SquareMemberAttribute: Record< + SquareMemberAttribute & string, + SquareMemberAttribute & number + >; + SquareMembershipState: Record< + SquareMembershipState & string, + SquareMembershipState & number + >; + StickerResourceType: Record< + StickerResourceType & string, + StickerResourceType & number + >; + SyncCategory: Record; + T70_C: Record; + T70_EnumC14390b: Record; + T70_EnumC14392c: Record; + T70_EnumC14406j: Record; + T70_K: Record; + T70_L: Record; + T70_Z0: Record; + T70_e1: Record; + T70_j1: Record; + U70_c: Record; + Uf_EnumC14873o: Record; + VR0_l: Record; + VerificationMethod: Record< + VerificationMethod & string, + VerificationMethod & number + >; + VerificationResult: Record< + VerificationResult & string, + VerificationResult & number + >; + WR0_a: Record; + a80_EnumC16644b: Record; + FetchDirection: Record; + LiveTalkEventType: Record< + LiveTalkEventType & string, + LiveTalkEventType & number + >; + LiveTalkReportType: Record< + LiveTalkReportType & string, + LiveTalkReportType & number + >; + MessageSummaryReportType: Record< + MessageSummaryReportType & string, + MessageSummaryReportType & number + >; + NotificationPostType: Record< + NotificationPostType & string, + NotificationPostType & number + >; + SquareEventStatus: Record< + SquareEventStatus & string, + SquareEventStatus & number + >; + SquareEventType: Record; + AdScreen: Record; + BooleanState: Record; + ChatroomPopupType: Record< + ChatroomPopupType & string, + ChatroomPopupType & number + >; + ContentsAttribute: Record< + ContentsAttribute & string, + ContentsAttribute & number + >; + FetchType: Record; + LiveTalkAttribute: Record< + LiveTalkAttribute & string, + LiveTalkAttribute & number + >; + LiveTalkRole: Record; + LiveTalkSpeakerSetting: Record< + LiveTalkSpeakerSetting & string, + LiveTalkSpeakerSetting & number + >; + LiveTalkType: Record; + MessageReactionType: Record< + MessageReactionType & string, + MessageReactionType & number + >; + NotifiedMessageType: Record< + NotifiedMessageType & string, + NotifiedMessageType & number + >; + PopupAttribute: Record; + PopupType: Record; + SquareChatAttribute: Record< + SquareChatAttribute & string, + SquareChatAttribute & number + >; + SquareChatFeatureControlState: Record< + SquareChatFeatureControlState & string, + SquareChatFeatureControlState & number + >; + SquareChatMemberAttribute: Record< + SquareChatMemberAttribute & string, + SquareChatMemberAttribute & number + >; + SquareChatMembershipState: Record< + SquareChatMembershipState & string, + SquareChatMembershipState & number + >; + SquareChatState: Record; + SquareEmblem: Record; + SquareErrorCode: Record; + SquareFeatureControlState: Record< + SquareFeatureControlState & string, + SquareFeatureControlState & number + >; + SquareFeatureSetAttribute: Record< + SquareFeatureSetAttribute & string, + SquareFeatureSetAttribute & number + >; + SquareJoinMethodType: Record< + SquareJoinMethodType & string, + SquareJoinMethodType & number + >; + SquareMemberRelationState: Record< + SquareMemberRelationState & string, + SquareMemberRelationState & number + >; + SquareMemberRole: Record< + SquareMemberRole & string, + SquareMemberRole & number + >; + SquareMessageState: Record< + SquareMessageState & string, + SquareMessageState & number + >; + SquareMetadataAttribute: Record< + SquareMetadataAttribute & string, + SquareMetadataAttribute & number + >; + SquarePreferenceAttribute: Record< + SquarePreferenceAttribute & string, + SquarePreferenceAttribute & number + >; + SquareProviderType: Record< + SquareProviderType & string, + SquareProviderType & number + >; + SquareState: Record; + SquareThreadAttribute: Record< + SquareThreadAttribute & string, + SquareThreadAttribute & number + >; + SquareThreadMembershipState: Record< + SquareThreadMembershipState & string, + SquareThreadMembershipState & number + >; + SquareThreadState: Record< + SquareThreadState & string, + SquareThreadState & number + >; + SquareType: Record; + TargetChatType: Record; + TargetUserType: Record; + do0_EnumC23139B: Record; + do0_EnumC23147e: Record; + do0_EnumC23148f: Record; + do0_G: Record; + do0_M: Record; + fN0_EnumC24466B: Record; + fN0_EnumC24467C: Record; + fN0_EnumC24469a: Record; + fN0_F: Record; + fN0_G: Record; + fN0_H: Record; + fN0_o: Record; + fN0_p: Record; + fN0_q: Record; + g80_EnumC24993a: Record; + h80_EnumC25645e: Record; + I80_EnumC26392b: Record; + I80_EnumC26394c: Record; + I80_EnumC26408j: Record; + I80_EnumC26425y: Record; + j80_EnumC27228a: Record; + jO0_EnumC27533B: Record; + jO0_EnumC27535b: Record; + jO0_EnumC27559z: Record; + jf_EnumC27712a: Record; + jf_EnumC27717f: Record; + kf_EnumC28766a: Record; + kf_o: Record; + kf_p: Record; + kf_r: Record; + kf_u: Record; + kf_x: Record; + n80_o: Record; + o80_e: Record; + og_E: Record; + og_EnumC32661b: Record; + og_EnumC32663d: Record; + og_EnumC32671l: Record; + og_G: Record; + og_I: Record; + q80_EnumC33651c: Record; + qm_EnumC34112e: Record; + qm_s: Record; + r80_EnumC34361a: Record; + r80_EnumC34362b: Record; + r80_EnumC34365e: Record; + r80_EnumC34367g: Record; + r80_EnumC34368h: Record; + r80_EnumC34370j: Record; + r80_EnumC34371k: Record; + r80_EnumC34372l: Record; + r80_EnumC34374n: Record; + r80_EnumC34376p: Record; + r80_EnumC34377q: Record; + r80_EnumC34378s: Record; + r80_e0: Record; + r80_g0: Record; + r80_h0: Record; + r80_i0: Record; + r80_m0: Record; + r80_n0: Record; + r80_r: Record; + t80_h: Record; + t80_i: Record; + t80_n: Record; + t80_r: Record; + vh_EnumC37632c: Record; + vh_m: Record; + wm_EnumC38497a: Record; + zR0_EnumC40578c: Record; + zR0_EnumC40579d: Record; + zR0_h: Record; + zR0_j: Record; + zf_EnumC40713a: Record; + zf_EnumC40715c: Record; + zf_EnumC40716d: Record; + LoginResultType: Record; +} = { + "AR0_g": { + "ILLEGAL_ARGUMENT": 16641, + "MAJOR_VERSION_NOT_SUPPORTED": 16642, + "AUTHENTICATION_FAILED": 16897, + "INTERNAL_SERVER_ERROR": 20737, + "SERVICE_UNAVAILABLE": 20739, + }, + "AR0_q": { + "NOT_PURCHASED": 0, + "SUBSCRIPTION": 1, + }, + "AccountMigrationPincodeType": { + "NOT_APPLICABLE": 0, + "NOT_SET": 1, + "SET": 2, + "NEED_ENFORCED_INPUT": 3, + }, + "ApplicationType": { + "IOS": 16, + "IOS_RC": 17, + "IOS_BETA": 18, + "IOS_ALPHA": 19, + "ANDROID": 32, + "ANDROID_RC": 33, + "ANDROID_BETA": 34, + "ANDROID_ALPHA": 35, + "WAP": 48, + "WAP_RC": 49, + "WAP_BETA": 50, + "WAP_ALPHA": 51, + "BOT": 64, + "BOT_RC": 65, + "BOT_BETA": 66, + "BOT_ALPHA": 67, + "WEB": 80, + "WEB_RC": 81, + "WEB_BETA": 82, + "WEB_ALPHA": 83, + "DESKTOPWIN": 96, + "DESKTOPWIN_RC": 97, + "DESKTOPWIN_BETA": 98, + "DESKTOPWIN_ALPHA": 99, + "DESKTOPMAC": 112, + "DESKTOPMAC_RC": 113, + "DESKTOPMAC_BETA": 114, + "DESKTOPMAC_ALPHA": 115, + "CHANNELGW": 128, + "CHANNELGW_RC": 129, + "CHANNELGW_BETA": 130, + "CHANNELGW_ALPHA": 131, + "CHANNELCP": 144, + "CHANNELCP_RC": 145, + "CHANNELCP_BETA": 146, + "CHANNELCP_ALPHA": 147, + "WINPHONE": 160, + "WINPHONE_RC": 161, + "WINPHONE_BETA": 162, + "WINPHONE_ALPHA": 163, + "BLACKBERRY": 176, + "BLACKBERRY_RC": 177, + "BLACKBERRY_BETA": 178, + "BLACKBERRY_ALPHA": 179, + "WINMETRO": 192, + "WINMETRO_RC": 193, + "WINMETRO_BETA": 194, + "WINMETRO_ALPHA": 195, + "S40": 200, + "S40_RC": 209, + "S40_BETA": 210, + "S40_ALPHA": 211, + "CHRONO": 224, + "CHRONO_RC": 225, + "CHRONO_BETA": 226, + "CHRONO_ALPHA": 227, + "TIZEN": 256, + "TIZEN_RC": 257, + "TIZEN_BETA": 258, + "TIZEN_ALPHA": 259, + "VIRTUAL": 272, + "FIREFOXOS": 288, + "FIREFOXOS_RC": 289, + "FIREFOXOS_BETA": 290, + "FIREFOXOS_ALPHA": 291, + "IOSIPAD": 304, + "IOSIPAD_RC": 305, + "IOSIPAD_BETA": 306, + "IOSIPAD_ALPHA": 307, + "BIZIOS": 320, + "BIZIOS_RC": 321, + "BIZIOS_BETA": 322, + "BIZIOS_ALPHA": 323, + "BIZANDROID": 336, + "BIZANDROID_RC": 337, + "BIZANDROID_BETA": 338, + "BIZANDROID_ALPHA": 339, + "BIZBOT": 352, + "BIZBOT_RC": 353, + "BIZBOT_BETA": 354, + "BIZBOT_ALPHA": 355, + "CHROMEOS": 368, + "CHROMEOS_RC": 369, + "CHROMEOS_BETA": 370, + "CHROMEOS_ALPHA": 371, + "ANDROIDLITE": 384, + "ANDROIDLITE_RC": 385, + "ANDROIDLITE_BETA": 386, + "ANDROIDLITE_ALPHA": 387, + "WIN10": 400, + "WIN10_RC": 401, + "WIN10_BETA": 402, + "WIN10_ALPHA": 403, + "BIZWEB": 416, + "BIZWEB_RC": 417, + "BIZWEB_BETA": 418, + "BIZWEB_ALPHA": 419, + "DUMMYPRIMARY": 432, + "DUMMYPRIMARY_RC": 433, + "DUMMYPRIMARY_BETA": 434, + "DUMMYPRIMARY_ALPHA": 435, + "SQUARE": 448, + "SQUARE_RC": 449, + "SQUARE_BETA": 450, + "SQUARE_ALPHA": 451, + "INTERNAL": 464, + "INTERNAL_RC": 465, + "INTERNAL_BETA": 466, + "INTERNAL_ALPHA": 467, + "CLOVAFRIENDS": 480, + "CLOVAFRIENDS_RC": 481, + "CLOVAFRIENDS_BETA": 482, + "CLOVAFRIENDS_ALPHA": 483, + "WATCHOS": 496, + "WATCHOS_RC": 497, + "WATCHOS_BETA": 498, + "WATCHOS_ALPHA": 499, + "OPENCHAT_PLUG": 512, + "OPENCHAT_PLUG_RC": 513, + "OPENCHAT_PLUG_BETA": 514, + "OPENCHAT_PLUG_ALPHA": 515, + "ANDROIDSECONDARY": 528, + "ANDROIDSECONDARY_RC": 529, + "ANDROIDSECONDARY_BETA": 530, + "ANDROIDSECONDARY_ALPHA": 531, + "WEAROS": 544, + "WEAROS_RC": 545, + "WEAROS_BETA": 546, + "WEAROS_ALPHA": 547, + }, + "BotType": { + "RESERVED": 0, + "OFFICIAL": 1, + "LINE_AT_0": 2, + "LINE_AT": 3, + }, + "CarrierCode": { + "NOT_SPECIFIED": 0, + "JP_DOCOMO": 1, + "JP_AU": 2, + "JP_SOFTBANK": 3, + "JP_DOCOMO_LINE": 4, + "JP_SOFTBANK_LINE": 5, + "JP_AU_LINE": 6, + "JP_RAKUTEN": 7, + "JP_MVNO": 8, + "JP_USER_SELECTED_LINE": 9, + "KR_SKT": 17, + "KR_KT": 18, + "KR_LGT": 19, + }, + "ChannelErrorCode": { + "ILLEGAL_ARGUMENT": 0, + "INTERNAL_ERROR": 1, + "CONNECTION_ERROR": 2, + "AUTHENTICATIONI_FAILED": 3, + "NEED_PERMISSION_APPROVAL": 4, + "COIN_NOT_USABLE": 5, + "WEBVIEW_NOT_ALLOWED": 6, + "NOT_AVAILABLE_API": 7, + }, + "ContactAttribute": { + "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL": 1, + "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL": 2, + "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME": 16, + "CONTACT_ATTRIBUTE_CAPABLE_BUDDY": 32, + }, + "ContactSetting": { + "CONTACT_SETTING_NOTIFICATION_DISABLE": 1, + "CONTACT_SETTING_DISPLAY_NAME_OVERRIDE": 2, + "CONTACT_SETTING_CONTACT_HIDE": 4, + "CONTACT_SETTING_FAVORITE": 8, + "CONTACT_SETTING_DELETE": 16, + "CONTACT_SETTING_FRIEND_RINGTONE": 32, + "CONTACT_SETTING_FRIEND_RINGBACK_TONE": 64, + }, + "ContactStatus": { + "UNSPECIFIED": 0, + "FRIEND": 1, + "FRIEND_BLOCKED": 2, + "RECOMMEND": 3, + "RECOMMEND_BLOCKED": 4, + "DELETED": 5, + "DELETED_BLOCKED": 6, + }, + "ContactType": { + "MID": 0, + "PHONE": 1, + "EMAIL": 2, + "USERID": 3, + "PROXIMITY": 4, + "GROUP": 5, + "USER": 6, + "QRCODE": 7, + "PROMOTION_BOT": 8, + "CONTACT_MESSAGE": 9, + "FRIEND_REQUEST": 10, + "BEACON": 11, + "REPAIR": 128, + "FACEBOOK": 2305, + "SINA": 2306, + "RENREN": 2307, + "FEIXIN": 2308, + "BBM": 2309, + }, + "ContentType": { + "NONE": 0, + "IMAGE": 1, + "VIDEO": 2, + "AUDIO": 3, + "HTML": 4, + "PDF": 5, + "CALL": 6, + "STICKER": 7, + "PRESENCE": 8, + "GIFT": 9, + "GROUPBOARD": 10, + "APPLINK": 11, + "LINK": 12, + "CONTACT": 13, + "FILE": 14, + "LOCATION": 15, + "POSTNOTIFICATION": 16, + "RICH": 17, + "CHATEVENT": 18, + "MUSIC": 19, + "PAYMENT": 20, + "EXTIMAGE": 21, + "FLEX": 22, + }, + "Eg_EnumC8927a": { + "NEW": 1, + "UPDATE": 2, + "EVENT": 3, + }, + "EmailConfirmationStatus": { + "NOT_SPECIFIED": 0, + "NOT_YET": 1, + "DONE": 3, + "NEED_ENFORCED_INPUT": 4, + }, + "ErrorCode": { + "ILLEGAL_ARGUMENT": 0, + "AUTHENTICATION_FAILED": 1, + "DB_FAILED": 2, + "INVALID_STATE": 3, + "EXCESSIVE_ACCESS": 4, + "NOT_FOUND": 5, + "INVALID_LENGTH": 6, + "NOT_AVAILABLE_USER": 7, + "NOT_AUTHORIZED_DEVICE": 8, + "INVALID_MID": 9, + "NOT_A_MEMBER": 10, + "INCOMPATIBLE_APP_VERSION": 11, + "NOT_READY": 12, + "NOT_AVAILABLE_SESSION": 13, + "NOT_AUTHORIZED_SESSION": 14, + "SYSTEM_ERROR": 15, + "NO_AVAILABLE_VERIFICATION_METHOD": 16, + "NOT_AUTHENTICATED": 17, + "INVALID_IDENTITY_CREDENTIAL": 18, + "NOT_AVAILABLE_IDENTITY_IDENTIFIER": 19, + "INTERNAL_ERROR": 20, + "NO_SUCH_IDENTITY_IDENFIER": 21, + "DEACTIVATED_ACCOUNT_BOUND_TO_THIS_IDENTITY": 22, + "ILLEGAL_IDENTITY_CREDENTIAL": 23, + "UNKNOWN_CHANNEL": 24, + "NO_SUCH_MESSAGE_BOX": 25, + "NOT_AVAILABLE_MESSAGE_BOX": 26, + "CHANNEL_DOES_NOT_MATCH": 27, + "NOT_YOUR_MESSAGE": 28, + "MESSAGE_DEFINED_ERROR": 29, + "USER_CANNOT_ACCEPT_PRESENTS": 30, + "USER_NOT_STICKER_OWNER": 32, + "MAINTENANCE_ERROR": 33, + "ACCOUNT_NOT_MATCHED": 34, + "ABUSE_BLOCK": 35, + "NOT_FRIEND": 36, + "NOT_ALLOWED_CALL": 37, + "BLOCK_FRIEND": 38, + "INCOMPATIBLE_VOIP_VERSION": 39, + "INVALID_SNS_ACCESS_TOKEN": 40, + "EXTERNAL_SERVICE_NOT_AVAILABLE": 41, + "NOT_ALLOWED_ADD_CONTACT": 42, + "NOT_CERTIFICATED": 43, + "NOT_ALLOWED_SECONDARY_DEVICE": 44, + "INVALID_PIN_CODE": 45, + "EXCEED_FILE_MAX_SIZE": 47, + "EXCEED_DAILY_QUOTA": 48, + "NOT_SUPPORT_SEND_FILE": 49, + "MUST_UPGRADE": 50, + "NOT_AVAILABLE_PIN_CODE_SESSION": 51, + "EXPIRED_REVISION": 52, + "NOT_YET_PHONE_NUMBER": 54, + "BAD_CALL_NUMBER": 55, + "UNAVAILABLE_CALL_NUMBER": 56, + "NOT_SUPPORT_CALL_SERVICE": 57, + "CONGESTION_CONTROL": 58, + "NO_BALANCE": 59, + "NOT_PERMITTED_CALLER_ID": 60, + "NO_CALLER_ID_LIMIT_EXCEEDED": 61, + "CALLER_ID_VERIFICATION_REQUIRED": 62, + "NO_CALLER_ID_LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED": 63, + "MESSAGE_NOT_FOUND": 64, + "INVALID_ACCOUNT_MIGRATION_PINCODE_FORMAT": 65, + "ACCOUNT_MIGRATION_PINCODE_NOT_MATCHED": 66, + "ACCOUNT_MIGRATION_PINCODE_BLOCKED": 67, + "INVALID_PASSWORD_FORMAT": 69, + "FEATURE_RESTRICTED": 70, + "MESSAGE_NOT_DESTRUCTIBLE": 71, + "PAID_CALL_REDEEM_FAILED": 72, + "PREVENTED_JOIN_BY_TICKET": 73, + "SEND_MESSAGE_NOT_PERMITTED_FROM_LINE_AT": 75, + "SEND_MESSAGE_NOT_PERMITTED_WHILE_AUTO_REPLY": 76, + "SECURITY_CENTER_NOT_VERIFIED": 77, + "SECURITY_CENTER_BLOCKED_BY_SETTING": 78, + "SECURITY_CENTER_BLOCKED": 79, + "TALK_PROXY_EXCEPTION": 80, + "E2EE_INVALID_PROTOCOL": 81, + "E2EE_RETRY_ENCRYPT": 82, + "E2EE_UPDATE_SENDER_KEY": 83, + "E2EE_UPDATE_RECEIVER_KEY": 84, + "E2EE_INVALID_ARGUMENT": 85, + "E2EE_INVALID_VERSION": 86, + "E2EE_SENDER_DISABLED": 87, + "E2EE_RECEIVER_DISABLED": 88, + "E2EE_SENDER_NOT_ALLOWED": 89, + "E2EE_RECEIVER_NOT_ALLOWED": 90, + "E2EE_RESEND_FAIL": 91, + "E2EE_RESEND_OK": 92, + "HITOKOTO_BACKUP_NO_AVAILABLE_DATA": 93, + "E2EE_UPDATE_PRIMARY_DEVICE": 94, + "SUCCESS": 95, + "CANCEL": 96, + "E2EE_PRIMARY_NOT_SUPPORT": 97, + "E2EE_RETRY_PLAIN": 98, + "E2EE_RECREATE_GROUP_KEY": 99, + "E2EE_GROUP_TOO_MANY_MEMBERS": 100, + "SERVER_BUSY": 101, + "NOT_ALLOWED_ADD_FOLLOW": 102, + "INCOMING_FRIEND_REQUEST_LIMIT": 103, + "OUTGOING_FRIEND_REQUEST_LIMIT": 104, + "OUTGOING_FRIEND_REQUEST_QUOTA": 105, + "DUPLICATED": 106, + "BANNED": 107, + "NOT_AN_INVITEE": 108, + "NOT_AN_OUTSIDER": 109, + "EMPTY_GROUP": 111, + "EXCEED_FOLLOW_LIMIT": 112, + "UNSUPPORTED_ACCOUNT_TYPE": 113, + "AGREEMENT_REQUIRED": 114, + "SHOULD_RETRY": 115, + "OVER_MAX_CHATS_PER_USER": 116, + "NOT_AVAILABLE_API": 117, + "INVALID_OTP": 118, + "MUST_REFRESH_V3_TOKEN": 119, + "ALREADY_EXPIRED": 120, + "USER_NOT_STICON_OWNER": 121, + "REFRESH_MEDIA_FLOW": 122, + "EXCEED_FOLLOWER_LIMIT": 123, + "INCOMPATIBLE_APP_TYPE": 124, + "NOT_PREMIUM": 125, + }, + "Fg_a": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "NOT_FOUND": 3, + "RETRY_LATER": 4, + "HUMAN_VERIFICATION_REQUIRED": 5, + "NOT_ENABLED": 6, + "INVALID_CONTEXT": 100, + "APP_UPGRADE_REQUIRED": 101, + "NO_CONTENT": 102, + }, + "FriendRequestStatus": { + "NONE": 0, + "AVAILABLE": 1, + "ALREADY_REQUESTED": 2, + "UNAVAILABLE": 3, + }, + "IdentityProvider": { + "UNKNOWN": 0, + "LINE": 1, + "NAVER_KR": 2, + "LINE_PHONE": 3, + }, + "LN0_F0": { + "UNKNOWN": 0, + "INVALID_TARGET_USER": 1, + "AGE_VALIDATION": 2, + "TOO_MANY_FRIENDS": 3, + "TOO_MANY_REQUESTS": 4, + "MALFORMED_REQUEST": 5, + "TRACKING_META_QRCODE_FAVORED": 6, + }, + "LN0_X0": { + "USER": 1, + "BOT": 2, + }, + "MIDType": { + "USER": 0, + "ROOM": 1, + "GROUP": 2, + "SQUARE": 3, + "SQUARE_CHAT": 4, + "SQUARE_MEMBER": 5, + "BOT": 6, + "SQUARE_THREAD": 7, + }, + "NZ0_B0": { + "PAY": 0, + "POI": 1, + "FX": 2, + "SEC": 3, + "BIT": 4, + "LIN": 5, + "SCO": 6, + "POC": 7, + }, + "NZ0_C0": { + "OK": 0, + "MAINTENANCE": 1, + "TPS_EXCEEDED": 2, + "NOT_FOUND": 3, + "BLOCKED": 4, + "INTERNAL_ERROR": 5, + "WALLET_CMS_MAINTENANCE": 6, + }, + "NZ0_EnumC12154b1": { + "NORMAL": 0, + "CAMERA": 1, + }, + "NZ0_EnumC12169g1": { + "WALLET": 101, + "ASSET": 201, + "SHOPPING": 301, + }, + "NZ0_EnumC12170h": { + "HIDE_BADGE": 0, + "SHOW_BADGE": 1, + }, + "NZ0_EnumC12188n": { + "OK": 0, + "UNAVAILABLE": 1, + "DUPLICATAE_REGISTRATION": 2, + "INTERNAL_ERROR": 3, + }, + "NZ0_EnumC12192o0": { + "LV1": 0, + "LV2": 1, + "LV3": 2, + "LV9": 3, + }, + "NZ0_EnumC12193o1": { + "INVALID_PARAMETER": 400, + "AUTHENTICATION_FAILED": 401, + "INTERNAL_SERVER_ERROR": 500, + "SERVICE_IN_MAINTENANCE_MODE": 503, + }, + "NZ0_EnumC12195p0": { + "ALIVE": 1, + "SUSPENDED": 2, + "UNREGISTERED": 3, + }, + "NZ0_EnumC12197q": { + "PREFIX": 0, + "SUFFIX": 1, + }, + "NZ0_EnumC12218x0": { + "NO_CONTENT": 0, + "OK": 1, + "ERROR": 2, + }, + "NZ0_I0": { + "A": 0, + "B": 1, + "C": 2, + "D": 3, + "UNKNOWN": 4, + }, + "NZ0_K0": { + "POCKET_MONEY": 0, + "REFINANCE": 1, + }, + "NZ0_N0": { + "COMPACT": 0, + "EXPANDED": 1, + }, + "NZ0_S0": { + "CARD": 0, + "ACTION": 1, + }, + "NZ0_W0": { + "OK": 0, + "INTERNAL_ERROR": 1, + }, + "NotificationStatus": { + "NOTIFICATION_ITEM_EXIST": 1, + "TIMELINE_ITEM_EXIST": 2, + "NOTE_GROUP_NEW_ITEM_EXIST": 4, + "TIMELINE_BUDDYGROUP_CHANGED": 8, + "NOTE_ONE_TO_ONE_NEW_ITEM_EXIST": 16, + "ALBUM_ITEM_EXIST": 32, + "TIMELINE_ITEM_DELETED": 64, + "OTOGROUP_ITEM_EXIST": 128, + "GROUPHOME_NEW_ITEM_EXIST": 256, + "GROUPHOME_HIDDEN_ITEM_CHANGED": 512, + "NOTIFICATION_ITEM_CHANGED": 1024, + "BEAD_ITEM_HIDE": 2048, + "BEAD_ITEM_SHOW": 4096, + "LINE_TICKET_UPDATED": 8192, + "TIMELINE_STORY_UPDATED": 16384, + "SMARTCH_UPDATED": 32768, + "AVATAR_UPDATED": 65536, + "HOME_NOTIFICATION_ITEM_EXIST": 131072, + "TIMELINE_REBOOT_COMPLETED": 262144, + "TIMELINE_GUIDE_STORY_UPDATED": 524288, + "TIMELINE_F2F_COMPLETED": 1048576, + "VOOM_LIVE_STATE_CHANGED": 2097152, + "VOOM_ACTIVITY_REWARD_ITEM_EXIST": 4194304, + }, + "NotificationType": { + "APPLE_APNS": 1, + "GOOGLE_C2DM": 2, + "NHN_NNI": 3, + "SKT_AOM": 4, + "MS_MPNS": 5, + "RIM_BIS": 6, + "GOOGLE_GCM": 7, + "NOKIA_NNAPI": 8, + "TIZEN": 9, + "MOZILLA_SIMPLE": 10, + "LINE_BOT": 17, + "LINE_WAP": 18, + "APPLE_APNS_VOIP": 19, + "MS_WNS": 20, + "GOOGLE_FCM": 21, + "CLOVA": 22, + "CLOVA_VOIP": 23, + "HUAWEI_HCM": 24, + }, + "Ob1_B0": { + "FOREGROUND": 0, + "BACKGROUND": 1, + }, + "Ob1_C1": { + "NORMAL": 0, + "BIG": 1, + }, + "Ob1_D0": { + "PURCHASE_ONLY": 0, + "PURCHASE_OR_SUBSCRIPTION": 1, + "SUBSCRIPTION_ONLY": 2, + }, + "Ob1_EnumC12607a1": { + "DEFAULT": 1, + "VIEW_VIDEO": 2, + }, + "Ob1_EnumC12610b1": { + "NONE": 0, + "BUDDY": 2, + "INSTALL": 3, + "MISSION": 4, + "MUSTBUY": 5, + }, + "Ob1_EnumC12631i1": { + "UNKNOWN": 0, + "PRODUCT": 1, + "USER": 2, + "PREMIUM_USER": 3, + }, + "Ob1_EnumC12638l": { + "VALID": 0, + "INVALID": 1, + }, + "Ob1_EnumC12641m": { + "PREMIUM": 1, + "VERIFIED": 2, + "UNVERIFIED": 3, + }, + "Ob1_EnumC12652p1": { + "UNKNOWN": 0, + "NONE": 1, + "ILLEGAL_ARGUMENT": 16641, + "NOT_FOUND": 16642, + "NOT_AVAILABLE": 16643, + "NOT_PAID_PRODUCT": 16644, + "NOT_FREE_PRODUCT": 16645, + "ALREADY_OWNED": 16646, + "ERROR_WITH_CUSTOM_MESSAGE": 16647, + "NOT_AVAILABLE_TO_RECIPIENT": 16648, + "NOT_AVAILABLE_FOR_CHANNEL_ID": 16649, + "NOT_SALE_FOR_COUNTRY": 16650, + "NOT_SALES_PERIOD": 16651, + "NOT_SALE_FOR_DEVICE": 16652, + "NOT_SALE_FOR_VERSION": 16653, + "ALREADY_EXPIRED": 16654, + "LIMIT_EXCEEDED": 16655, + "MISSING_CAPABILITY": 16656, + "AUTHENTICATION_FAILED": 16897, + "BALANCE_SHORTAGE": 17153, + "INTERNAL_SERVER_ERROR": 20737, + "SERVICE_IN_MAINTENANCE_MODE": 20738, + "SERVICE_UNAVAILABLE": 20739, + }, + "Ob1_EnumC12656r0": { + "OK": 0, + "PRODUCT_UNSUPPORTED": 1, + "TEXT_NOT_SPECIFIED": 2, + "TEXT_STYLE_UNAVAILABLE": 3, + "CHARACTER_COUNT_LIMIT_EXCEEDED": 4, + "CONTAINS_INVALID_WORD": 5, + }, + "Ob1_EnumC12664u": { + "UNKNOWN": 0, + "NONE": 1, + "ILLEGAL_ARGUMENT": 16641, + "NOT_FOUND": 16642, + "NOT_AVAILABLE": 16643, + "MAX_AMOUNT_OF_PRODUCTS_REACHED": 16644, + "PRODUCT_IS_NOT_PREMIUM": 16645, + "PRODUCT_IS_NOT_AVAILABLE_FOR_USER": 16646, + "AUTHENTICATION_FAILED": 16897, + "INTERNAL_SERVER_ERROR": 20737, + "SERVICE_UNAVAILABLE": 20739, + }, + "Ob1_EnumC12666u1": { + "POPULAR": 0, + "NEW_RELEASE": 1, + "EVENT": 2, + "RECOMMENDED": 3, + "POPULAR_WEEKLY": 4, + "POPULAR_MONTHLY": 5, + "POPULAR_RECENTLY_PUBLISHED": 6, + "BUDDY": 7, + "EXTRA_EVENT": 8, + "BROWSING_HISTORY": 9, + "POPULAR_TOTAL_SALES": 10, + "NEW_SUBSCRIPTION": 11, + "POPULAR_SUBSCRIPTION_30D": 12, + "CPD_STICKER": 13, + "POPULAR_WITH_FREE": 14, + }, + "Ob1_F1": { + "STATIC": 1, + "ANIMATION": 2, + }, + "Ob1_I": { + "STATIC": 0, + "POPULAR": 1, + "NEW_RELEASE": 2, + }, + "Ob1_J0": { + "ON_SALE": 0, + "OUTDATED_VERSION": 1, + "NOT_ON_SALE": 2, + }, + "Ob1_J1": { + "OK": 0, + "INVALID_PARAMETER": 1, + "NOT_FOUND": 2, + "NOT_SUPPORTED": 3, + "CONFLICT": 4, + "NOT_ELIGIBLE": 5, + }, + "Ob1_K1": { + "GOOGLE": 0, + "APPLE": 1, + "WEBSTORE": 2, + "LINEMO": 3, + "LINE_MUSIC": 4, + "LYP": 5, + "TW_CHT": 6, + "FREEMIUM": 7, + }, + "Ob1_M1": { + "OK": 0, + "UNKNOWN": 1, + "NOT_SUPPORTED": 2, + "NO_SUBSCRIPTION": 3, + "SUBSCRIPTION_EXISTS": 4, + "NOT_AVAILABLE": 5, + "CONFLICT": 6, + "OUTDATED_VERSION": 7, + "NO_STUDENT_INFORMATION": 8, + "ACCOUNT_HOLD": 9, + "RETRY_STATE": 10, + }, + "Ob1_O0": { + "STICKER": 1, + "THEME": 2, + "STICON": 3, + }, + "Ob1_O1": { + "AVAILABLE": 0, + "DIFFERENT_STORE": 1, + "NOT_STUDENT": 2, + "ALREADY_PURCHASED": 3, + }, + "Ob1_P1": { + "GENERAL": 1, + "STUDENT": 2, + }, + "Ob1_Q1": { + "BASIC": 1, + "DELUXE": 2, + }, + "Ob1_R1": { + "MONTHLY": 1, + "YEARLY": 2, + }, + "Ob1_U1": { + "OK": 0, + "UNKNOWN": 1, + "NO_SUBSCRIPTION": 2, + "EXISTS": 3, + "NOT_FOUND": 4, + "EXCEEDS_LIMIT": 5, + "NOT_AVAILABLE": 6, + }, + "Ob1_V1": { + "DATE_ASC": 1, + "DATE_DESC": 2, + }, + "Ob1_X1": { + "GENERAL": 0, + "CREATORS": 1, + "STICON": 2, + }, + "Ob1_a2": { + "NOT_PURCHASED": 0, + "SUBSCRIPTION": 1, + "NOT_SUBSCRIBED": 2, + "NOT_ACCEPTED": 3, + "NOT_PURCHASED_U2I": 4, + "BUDDY": 5, + }, + "Ob1_c2": { + "STATIC": 1, + "ANIMATION": 2, + }, + "OpType": { + "END_OF_OPERATION": 0, + "UPDATE_PROFILE": 1, + "NOTIFIED_UPDATE_PROFILE": 2, + "REGISTER_USERID": 3, + "ADD_CONTACT": 4, + "NOTIFIED_ADD_CONTACT": 5, + "BLOCK_CONTACT": 6, + "UNBLOCK_CONTACT": 7, + "NOTIFIED_RECOMMEND_CONTACT": 8, + "CREATE_GROUP": 9, + "UPDATE_GROUP": 10, + "NOTIFIED_UPDATE_GROUP": 11, + "INVITE_INTO_GROUP": 12, + "NOTIFIED_INVITE_INTO_GROUP": 13, + "LEAVE_GROUP": 14, + "NOTIFIED_LEAVE_GROUP": 15, + "ACCEPT_GROUP_INVITATION": 16, + "NOTIFIED_ACCEPT_GROUP_INVITATION": 17, + "KICKOUT_FROM_GROUP": 18, + "NOTIFIED_KICKOUT_FROM_GROUP": 19, + "CREATE_ROOM": 20, + "INVITE_INTO_ROOM": 21, + "NOTIFIED_INVITE_INTO_ROOM": 22, + "LEAVE_ROOM": 23, + "NOTIFIED_LEAVE_ROOM": 24, + "SEND_MESSAGE": 25, + "RECEIVE_MESSAGE": 26, + "SEND_MESSAGE_RECEIPT": 27, + "RECEIVE_MESSAGE_RECEIPT": 28, + "SEND_CONTENT_RECEIPT": 29, + "RECEIVE_ANNOUNCEMENT": 30, + "CANCEL_INVITATION_GROUP": 31, + "NOTIFIED_CANCEL_INVITATION_GROUP": 32, + "NOTIFIED_UNREGISTER_USER": 33, + "REJECT_GROUP_INVITATION": 34, + "NOTIFIED_REJECT_GROUP_INVITATION": 35, + "UPDATE_SETTINGS": 36, + "NOTIFIED_REGISTER_USER": 37, + "INVITE_VIA_EMAIL": 38, + "NOTIFIED_REQUEST_RECOVERY": 39, + "SEND_CHAT_CHECKED": 40, + "SEND_CHAT_REMOVED": 41, + "NOTIFIED_FORCE_SYNC": 42, + "SEND_CONTENT": 43, + "SEND_MESSAGE_MYHOME": 44, + "NOTIFIED_UPDATE_CONTENT_PREVIEW": 45, + "REMOVE_ALL_MESSAGES": 46, + "NOTIFIED_UPDATE_PURCHASES": 47, + "DUMMY": 48, + "UPDATE_CONTACT": 49, + "NOTIFIED_RECEIVED_CALL": 50, + "CANCEL_CALL": 51, + "NOTIFIED_REDIRECT": 52, + "NOTIFIED_CHANNEL_SYNC": 53, + "FAILED_SEND_MESSAGE": 54, + "NOTIFIED_READ_MESSAGE": 55, + "FAILED_EMAIL_CONFIRMATION": 56, + "NOTIFIED_CHAT_CONTENT": 58, + "NOTIFIED_PUSH_NOTICENTER_ITEM": 59, + "NOTIFIED_JOIN_CHAT": 60, + "NOTIFIED_LEAVE_CHAT": 61, + "NOTIFIED_TYPING": 62, + "FRIEND_REQUEST_ACCEPTED": 63, + "DESTROY_MESSAGE": 64, + "NOTIFIED_DESTROY_MESSAGE": 65, + "UPDATE_PUBLICKEYCHAIN": 66, + "NOTIFIED_UPDATE_PUBLICKEYCHAIN": 67, + "NOTIFIED_BLOCK_CONTACT": 68, + "NOTIFIED_UNBLOCK_CONTACT": 69, + "UPDATE_GROUPPREFERENCE": 70, + "NOTIFIED_PAYMENT_EVENT": 71, + "REGISTER_E2EE_PUBLICKEY": 72, + "NOTIFIED_E2EE_KEY_EXCHANGE_REQ": 73, + "NOTIFIED_E2EE_KEY_EXCHANGE_RESP": 74, + "NOTIFIED_E2EE_MESSAGE_RESEND_REQ": 75, + "NOTIFIED_E2EE_MESSAGE_RESEND_RESP": 76, + "NOTIFIED_E2EE_KEY_UPDATE": 77, + "NOTIFIED_BUDDY_UPDATE_PROFILE": 78, + "NOTIFIED_UPDATE_LINEAT_TABS": 79, + "UPDATE_ROOM": 80, + "NOTIFIED_BEACON_DETECTED": 81, + "UPDATE_EXTENDED_PROFILE": 82, + "ADD_FOLLOW": 83, + "NOTIFIED_ADD_FOLLOW": 84, + "DELETE_FOLLOW": 85, + "NOTIFIED_DELETE_FOLLOW": 86, + "UPDATE_TIMELINE_SETTINGS": 87, + "NOTIFIED_FRIEND_REQUEST": 88, + "UPDATE_RINGBACK_TONE": 89, + "NOTIFIED_POSTBACK": 90, + "RECEIVE_READ_WATERMARK": 91, + "NOTIFIED_MESSAGE_DELIVERED": 92, + "NOTIFIED_UPDATE_CHAT_BAR": 93, + "NOTIFIED_CHATAPP_INSTALLED": 94, + "NOTIFIED_CHATAPP_UPDATED": 95, + "NOTIFIED_CHATAPP_NEW_MARK": 96, + "NOTIFIED_CHATAPP_DELETED": 97, + "NOTIFIED_CHATAPP_SYNC": 98, + "NOTIFIED_UPDATE_MESSAGE": 99, + "UPDATE_CHATROOMBGM": 100, + "NOTIFIED_UPDATE_CHATROOMBGM": 101, + "UPDATE_RINGTONE": 102, + "UPDATE_USER_SETTINGS": 118, + "NOTIFIED_UPDATE_STATUS_BAR": 119, + "CREATE_CHAT": 120, + "UPDATE_CHAT": 121, + "NOTIFIED_UPDATE_CHAT": 122, + "INVITE_INTO_CHAT": 123, + "NOTIFIED_INVITE_INTO_CHAT": 124, + "CANCEL_CHAT_INVITATION": 125, + "NOTIFIED_CANCEL_CHAT_INVITATION": 126, + "DELETE_SELF_FROM_CHAT": 127, + "NOTIFIED_DELETE_SELF_FROM_CHAT": 128, + "ACCEPT_CHAT_INVITATION": 129, + "NOTIFIED_ACCEPT_CHAT_INVITATION": 130, + "REJECT_CHAT_INVITATION": 131, + "DELETE_OTHER_FROM_CHAT": 132, + "NOTIFIED_DELETE_OTHER_FROM_CHAT": 133, + "NOTIFIED_CONTACT_CALENDAR_EVENT": 134, + "NOTIFIED_CONTACT_CALENDAR_EVENT_ALL": 135, + "UPDATE_THINGS_OPERATIONS": 136, + "SEND_CHAT_HIDDEN": 137, + "CHAT_META_SYNC_ALL": 138, + "SEND_REACTION": 139, + "NOTIFIED_SEND_REACTION": 140, + "NOTIFIED_UPDATE_PROFILE_CONTENT": 141, + "FAILED_DELIVERY_MESSAGE": 142, + "SEND_ENCRYPTED_E2EE_KEY_REQUESTED": 143, + "CHANNEL_PAAK_AUTHENTICATION_REQUESTED": 144, + "UPDATE_PIN_STATE": 145, + "NOTIFIED_PREMIUMBACKUP_STATE_CHANGED": 146, + "CREATE_MULTI_PROFILE": 147, + "MULTI_PROFILE_STATUS_CHANGED": 148, + "DELETE_MULTI_PROFILE": 149, + "UPDATE_PROFILE_MAPPING": 150, + "DELETE_PROFILE_MAPPING": 151, + "NOTIFIED_DESTROY_NOTICENTER_PUSH": 152, + }, + "P70_g": { + "INVALID_REQUEST": 1000, + "RETRY_REQUIRED": 1001, + }, + "PaidCallType": { + "OUT": 0, + "IN": 1, + "TOLLFREE": 2, + "RECORD": 3, + "AD": 4, + "CS": 5, + "OA": 6, + "OAM": 7, + }, + "PayloadType": { + "PAYLOAD_BUY": 101, + "PAYLOAD_CS": 111, + "PAYLOAD_BONUS": 121, + "PAYLOAD_EVENT": 131, + "PAYLOAD_POINT_AUTO_EXCHANGED": 141, + "PAYLOAD_POINT_MANUAL_EXCHANGED": 151, + }, + "Pb1_A0": { + "NORMAL": 0, + "VIDEOCAM": 1, + "VOIP": 2, + "RECORD": 3, + }, + "Pb1_A3": { + "UNKNOWN": 0, + "BACKGROUND_NEW_KEY_CREATED": 1, + "BACKGROUND_PERIODICAL_VERIFICATION": 2, + "FOREGROUND_NEW_PIN_REGISTERED": 3, + "FOREGROUND_VERIFICATION": 4, + }, + "Pb1_B": { + "SIRI": 1, + "GOOGLE_ASSISTANT": 2, + "OS_SHARE": 3, + }, + "Pb1_D0": { + "RICH_MENU_ID": 0, + "STATUS_BAR": 1, + "BUDDY_CAUTION_NOTICE": 2, + }, + "Pb1_D4": { + "AUDIO": 1, + "VIDEO": 2, + "FACEPLAY": 3, + }, + "Pb1_D6": { + "GOOGLE": 0, + "BAIDU": 1, + "FOURSQUARE": 2, + "YAHOOJAPAN": 3, + "KINGWAY": 4, + }, + "Pb1_E7": { + "UNKNOWN": 0, + "TALK": 1, + "SQUARE": 2, + }, + "Pb1_EnumC12917a6": { + "UNKNOWN": 0, + "APP_FOREGROUND": 1, + "PERIODIC": 2, + "MANUAL": 3, + }, + "Pb1_EnumC12926b1": { + "NOT_A_FRIEND": 0, + "ALWAYS": 1, + }, + "Pb1_EnumC12941c2": { + "BLE_LCS_API_USABLE": 26, + "PROHIBIT_MINIMIZE_CHANNEL_BROWSER": 27, + "ALLOW_IOS_WEBKIT": 28, + "PURCHASE_LCS_API_USABLE": 38, + "ALLOW_ANDROID_ENABLE_ZOOM": 48, + }, + "Pb1_EnumC12945c6": { + "V1": 1, + "V2": 2, + }, + "Pb1_EnumC12970e3": { + "USER_AGE_CHECKED": 1, + "USER_APPROVAL_REQUIRED": 2, + }, + "Pb1_EnumC12997g2": { + "PROFILE": 0, + "FRIENDS": 1, + "GROUP": 2, + }, + "Pb1_EnumC12998g3": { + "UNKNOWN": 0, + "WIFI": 1, + "CELLULAR_NETWORK": 2, + }, + "Pb1_EnumC13009h0": { + "NORMAL": 1, + "LOW_BATTERY": 2, + }, + "Pb1_EnumC13010h1": { + "NEW": 1, + "PLANET": 2, + }, + "Pb1_EnumC13015h6": { + "FORWARD": 0, + "AUTO_REPLY": 1, + "SUBORDINATE": 2, + "REPLY": 3, + }, + "Pb1_EnumC13022i": { + "SKIP": 0, + "PINCODE": 1, + "SECURITY_CENTER": 2, + }, + "Pb1_EnumC13029i6": { + "ADD": 0, + "REMOVE": 1, + "MODIFY": 2, + }, + "Pb1_EnumC13037j0": { + "UNSPECIFIED": 0, + "INACTIVE": 1, + "ACTIVE": 2, + "DELETED": 3, + }, + "Pb1_EnumC13050k": { + "UNKNOWN": 0, + "IOS_REDUCED_ACCURACY": 1, + "IOS_FULL_ACCURACY": 2, + "AOS_PRECISE_LOCATION": 3, + "AOS_APPROXIMATE_LOCATION": 4, + }, + "Pb1_EnumC13082m3": { + "SHOW": 0, + "HIDE": 1, + }, + "Pb1_EnumC13093n0": { + "NONE": 0, + "TOP": 1, + }, + "Pb1_EnumC13127p6": { + "NORMAL": 0, + "ALERT_DISABLED": 1, + "ALWAYS": 2, + }, + "Pb1_EnumC13128p7": { + "UNKNOWN": 0, + "DIRECT_INVITATION": 1, + "DIRECT_CHAT": 2, + "GROUP_INVITATION": 3, + "GROUP_CHAT": 4, + "ROOM_INVITATION": 5, + "ROOM_CHAT": 6, + "FRIEND_PROFILE": 7, + "DIRECT_CHAT_SELECTED": 8, + "GROUP_CHAT_SELECTED": 9, + "ROOM_CHAT_SELECTED": 10, + "DEPRECATED": 11, + }, + "Pb1_EnumC13148r0": { + "ALWAYS_HIDDEN": 1, + "ALWAYS_SHOWN": 2, + "SHOWN_BY_CONDITION": 3, + }, + "Pb1_EnumC13151r3": { + "ONEWAY": 0, + "BOTH": 1, + "NOT_REGISTERED": 2, + }, + "Pb1_EnumC13162s0": { + "NOT_SUSPICIOUS": 1, + "SUSPICIOUS_00": 2, + "SUSPICIOUS_01": 3, + }, + "Pb1_EnumC13196u6": { + "COIN": 0, + "CREDIT": 1, + "MONTHLY": 2, + "OAM": 3, + }, + "Pb1_EnumC13209v5": { + "DUMMY": 0, + "NOTICE": 1, + "MORETAB": 2, + "STICKERSHOP": 3, + "CHANNEL": 4, + "DENY_KEYWORD": 5, + "CONNECTIONINFO": 6, + "BUDDY": 7, + "TIMELINEINFO": 8, + "THEMESHOP": 9, + "CALLRATE": 10, + "CONFIGURATION": 11, + "STICONSHOP": 12, + "SUGGESTDICTIONARY": 13, + "SUGGESTSETTINGS": 14, + "USERSETTINGS": 15, + "ANALYTICSINFO": 16, + "SEARCHPOPULARKEYWORD": 17, + "SEARCHNOTICE": 18, + "TIMELINE": 19, + "SEARCHPOPULARCATEGORY": 20, + "EXTENDEDPROFILE": 21, + "SEASONALMARKETING": 22, + "NEWSTAB": 23, + "SUGGESTDICTIONARYV2": 24, + "CHATAPPSYNC": 25, + "AGREEMENTS": 26, + "INSTANTNEWS": 27, + "EMOJI_MAPPING": 28, + "SEARCHBARKEYWORDS": 29, + "SHOPPING": 30, + "CHAT_EFFECT_BACKGROUND": 31, + "CHAT_EFFECT_KEYWORD": 32, + "SEARCHINDEX": 33, + "HUBTAB": 34, + "PAY_RULE_UPDATED": 35, + "SMARTCH": 36, + "HOME_SERVICE_LIST": 37, + "TIMELINESTORY": 38, + "WALLET_TAB": 39, + "POD_TAB": 40, + "HOME_SAFETY_CHECK": 41, + "HOME_SEASONAL_EFFECT": 42, + "OPENCHAT_MAIN": 43, + "CHAT_EFFECT_CONTENT_METADATA_TAG": 44, + "VOOM_LIVE_STATE_CHANGED": 45, + "PROFILE_STUDIO_N_BADGE": 46, + "LYP_FONT": 47, + "TIMELINESTORY_OA": 48, + "TRAVEL": 49, + }, + "Pb1_EnumC13221w3": { + "UNKNOWN": 0, + "EUROPEAN_ECONOMIC_AREA": 1, + }, + "Pb1_EnumC13222w4": { + "OBS_VIDEO": 1, + "OBS_GENERAL": 2, + "OBS_RINGBACK_TONE": 3, + }, + "Pb1_EnumC13237x5": { + "AUDIO": 1, + "VIDEO": 2, + "LIVE": 3, + "PHOTOBOOTH": 4, + }, + "Pb1_EnumC13238x6": { + "NOT_SPECIFIED": 0, + "VALID": 1, + "VERIFICATION_REQUIRED": 2, + "NOT_PERMITTED": 3, + "LIMIT_EXCEEDED": 4, + "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED": 5, + }, + "Pb1_EnumC13251y5": { + "STANDARD": 1, + "CONSTELLA": 2, + }, + "Pb1_EnumC13252y6": { + "ALL": 0, + "PROFILE": 1, + "SETTINGS": 2, + "CONFIGURATIONS": 3, + "CONTACT": 4, + "GROUP": 5, + "E2EE": 6, + "MESSAGE": 7, + }, + "Pb1_EnumC13260z0": { + "ON_AIR": 0, + "LIVE": 1, + "GLP": 2, + }, + "Pb1_EnumC13267z7": { + "NOTIFICATION_SETTING": 1, + "ALL": 255, + }, + "Pb1_F0": { + "NA": 0, + "FRIEND_VIEW": 1, + "OFFICIAL_ACCOUNT_VIEW": 2, + }, + "Pb1_F4": { + "INCOMING": 1, + "OUTGOING": 2, + }, + "Pb1_F5": { + "UNKNOWN": 0, + "SUCCESS": 1, + "REQUIRE_SERVER_SIDE_EMAIL": 2, + "REQUIRE_CLIENT_SIDE_EMAIL": 3, + }, + "Pb1_F6": { + "JBU": 0, + "LIP": 1, + }, + "Pb1_G3": { + "PROMOTION_FRIENDS_INVITE": 1, + "CAPABILITY_SERVER_SIDE_SMS": 2, + "LINE_CLIENT_ANALYTICS_CONFIGURATION": 3, + }, + "Pb1_G4": { + "TIMELINE": 1, + "NEARBY": 2, + "SQUARE": 3, + }, + "Pb1_G6": { + "NICE": 2, + "LOVE": 3, + "FUN": 4, + "AMAZING": 5, + "SAD": 6, + "OMG": 7, + }, + "Pb1_H6": { + "PUBLIC": 0, + "PRIVATE": 1, + }, + "Pb1_I6": { + "NEVER_SHOW": 0, + "ONE_WAY": 1, + "MUTUAL": 2, + }, + "Pb1_J4": { + "OTHER": 0, + "INITIALIZATION": 1, + "PERIODIC_SYNC": 2, + "MANUAL_SYNC": 3, + "LOCAL_DB_CORRUPTED": 4, + }, + "Pb1_K2": { + "CHANNEL_INFO": 1, + "CHANNEL_TOKEN": 2, + "COMMON_DOMAIN": 4, + "ALL": 255, + }, + "Pb1_K6": { + "EMAIL": 1, + "DISPLAY_NAME": 2, + "PHONETIC_NAME": 4, + "PICTURE": 8, + "STATUS_MESSAGE": 16, + "ALLOW_SEARCH_BY_USERID": 32, + "ALLOW_SEARCH_BY_EMAIL": 64, + "BUDDY_STATUS": 128, + "MUSIC_PROFILE": 256, + "AVATAR_PROFILE": 512, + "ALL": 2147483647, + }, + "Pb1_L2": { + "SYNC": 0, + "REMOVE": 1, + "REMOVE_ALL": 2, + }, + "Pb1_L4": { + "UNKNOWN": 0, + "REVISION_GAP_TOO_LARGE_CLIENT": 1, + "REVISION_GAP_TOO_LARGE_SERVER": 2, + "OPERATION_EXPIRED": 3, + "REVISION_HOLE": 4, + "FORCE_TRIGGERED": 5, + }, + "Pb1_M6": { + "OWNER": 0, + "FRIEND": 1, + }, + "Pb1_N6": { + "NFT": 1, + "AVATAR": 2, + "SNOW": 3, + "ARCZ": 4, + "FRENZ": 5, + }, + "Pb1_O2": { + "NAME": 1, + "PICTURE_STATUS": 2, + "PREVENTED_JOIN_BY_TICKET": 4, + "NOTIFICATION_SETTING": 8, + "INVITATION_TICKET": 16, + "FAVORITE_TIMESTAMP": 32, + "CHAT_TYPE": 64, + }, + "Pb1_O6": { + "DEFAULT": 1, + "MULTI_PROFILE": 2, + }, + "Pb1_P6": { + "HIDDEN": 0, + "PUBLIC": 1000, + }, + "Pb1_Q2": { + "BACKGROUND": 0, + "KEYWORD": 1, + "CONTENT_METADATA_TAG_BASED": 2, + }, + "Pb1_R3": { + "BEACON_AGREEMENT": 1, + "BLUETOOTH": 2, + "SHAKE_AGREEMENT": 3, + "AUTO_SUGGEST": 4, + "CHATROOM_CAPTURE": 5, + "CHATROOM_MINIMIZEBROWSER": 6, + "CHATROOM_MOBILESAFARI": 7, + "VIDEO_HIGHTLIGHT_WIZARD": 8, + "CHAT_FOLDER": 9, + "BLUETOOTH_SCAN": 10, + "AUTO_SUGGEST_FOLLOW_UP": 11, + }, + "Pb1_S7": { + "NONE": 1, + "ALL": 2, + }, + "Pb1_T3": { + "LOCATION_OS": 1, + "LOCATION_APP": 2, + "VIDEO_AUTO_PLAY": 3, + "HNI": 4, + "AUTO_SUGGEST_LANG": 5, + "CHAT_EFFECT_CACHED_CONTENT_LIST": 6, + "IFA": 7, + "ACCURACY_MODE": 8, + }, + "Pb1_T7": { + "SYNC": 0, + "REPORT": 1, + }, + "Pb1_V7": { + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "INITIALIZATION": 2, + "OPERATION": 3, + "FULL_SYNC": 4, + "AUTO_REPAIR": 5, + "MANUAL_REPAIR": 6, + "INTERNAL": 7, + "USER_INITIATED": 8, + }, + "Pb1_W2": { + "ANYONE_IN_CHAT": 0, + "CREATOR_ONLY": 1, + "NO_ONE": 2, + }, + "Pb1_W3": { + "ILLEGAL_ARGUMENT": 0, + "AUTHENTICATION_FAILED": 1, + "INTERNAL_ERROR": 2, + "RESTORE_KEY_FIRST": 3, + "NO_BACKUP": 4, + "INVALID_PIN": 6, + "PERMANENTLY_LOCKED": 7, + "INVALID_PASSWORD": 8, + "MASTER_KEY_CONFLICT": 9, + }, + "Pb1_X1": { + "MESSAGE": 0, + "MESSAGE_NOTIFICATION": 1, + "NOTIFICATION_CENTER": 2, + }, + "Pb1_X2": { + "MESSAGE": 0, + "NOTE": 1, + "CHANNEL": 2, + }, + "Pb1_Z2": { + "GROUP": 0, + "ROOM": 1, + "PEER": 2, + }, + "Pb1_gd": { + "OVER": 1, + "UNDER": 2, + "UNDEFINED": 3, + }, + "Pb1_od": { + "UNKNOWN": 0, + "LOCATION": 1, + }, + "PointErrorCode": { + "REQUEST_DUPLICATION": 3001, + "INVALID_PARAMETER": 3002, + "NOT_ENOUGH_BALANCE": 3003, + "AUTHENTICATION_FAIL": 3004, + "API_ACCESS_FORBIDDEN": 3005, + "MEMBER_ACCOUNT_NOT_FOUND": 3006, + "SERVICE_ACCOUNT_NOT_FOUND": 3007, + "TRANSACTION_NOT_FOUND": 3008, + "ALREADY_REVERSED_TRANSACTION": 3009, + "MESSAGE_NOT_READABLE": 3010, + "HTTP_REQUEST_METHOD_NOT_SUPPORTED": 3011, + "HTTP_MEDIA_TYPE_NOT_SUPPORTED": 3012, + "NOT_ALLOWED_TO_DEPOSIT": 3013, + "NOT_ALLOWED_TO_PAY": 3014, + "TRANSACTION_ACCESS_FORBIDDEN": 3015, + "INVALID_SERVICE_CONFIGURATION": 4001, + "DCS_COMMUNICATION_FAIL": 5004, + "UPDATE_BALANCE_FAIL": 5007, + "SYSTEM_MAINTENANCE": 5888, + "SYSTEM_ERROR": 5999, + }, + "Q70_q": { + "UNKNOWN": 0, + "FACEBOOK": 1, + "APPLE": 2, + "GOOGLE": 3, + }, + "Q70_r": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "RETRY_LATER": 4, + "HUMAN_VERIFICATION_REQUIRED": 5, + "APP_UPGRADE_REQUIRED": 101, + }, + "Qj_EnumC13584a": { + "NOT_DETERMINED": 0, + "RESTRICTED": 1, + "DENIED": 2, + "AUTHORIZED": 3, + }, + "Qj_EnumC13585b": { + "WHITE": 1, + "BLACK": 2, + }, + "Qj_EnumC13588e": { + "LIGHT": 1, + "DARK": 2, + }, + "Qj_EnumC13592i": { + "ILLEGAL_ARGUMENT": 0, + "INTERNAL_ERROR": 1, + "CONNECTION_ERROR": 2, + "AUTHENTICATION_FAILED": 3, + "NEED_PERMISSION_APPROVAL": 4, + "COIN_NOT_USABLE": 5, + "WEBVIEW_NOT_ALLOWED": 6, + }, + "Qj_EnumC13597n": { + "INVALID_REQUEST": 1, + "UNAUTHORIZED": 2, + "CONSENT_REQUIRED": 3, + "VERSION_UPDATE_REQUIRED": 4, + "COMPREHENSIVE_AGREEMENT_REQUIRED": 5, + "SPLASH_SCREEN_REQUIRED": 6, + "PERMANENT_LINK_INVALID_REQUEST": 7, + "NO_DESTINATION_URL": 8, + "SERVICE_ALREADY_TERMINATED": 9, + "SERVER_ERROR": 100, + }, + "Qj_EnumC13604v": { + "GEOLOCATION": 1, + "ADVERTISING_ID": 2, + "BLUETOOTH_LE": 3, + "QR_CODE": 4, + "ADVERTISING_SDK": 5, + "ADD_TO_HOME": 6, + "SHARE_TARGET_MESSAGE": 7, + "VIDEO_AUTO_PLAY": 8, + "PROFILE_PLUS": 9, + "SUBWINDOW_OPEN": 10, + "SUBWINDOW_COMMON_MODULE": 11, + "NO_LIFF_REFERRER": 12, + "SKIP_CHANNEL_VERIFICATION_SCREEN": 13, + "PROVIDER_PAGE": 14, + "BASIC_AUTH": 15, + "SIRI_DONATION": 16, + }, + "Qj_EnumC13605w": { + "ALLOW_DIRECT_LINK": 1, + "ALLOW_DIRECT_LINK_V2": 2, + }, + "Qj_EnumC13606x": { + "LIGHT": 1, + "LIGHT_TRANSLUCENT": 2, + "DARK_TRANSLUCENT": 3, + "LIGHT_ICON": 4, + "DARK_ICON": 5, + }, + "Qj_a0": { + "CONCAT": 1, + "REPLACE": 2, + }, + "Qj_e0": { + "SUCCESS": 0, + "FAILURE": 1, + "CANCEL": 2, + }, + "Qj_h0": { + "RIGHT": 1, + "LEFT": 2, + }, + "Qj_i0": { + "FULL": 1, + "TALL": 2, + "COMPACT": 3, + }, + "R70_e": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "EXTERNAL_SERVICE_UNAVAILABLE": 3, + "RETRY_LATER": 4, + "INVALID_CONTEXT": 100, + "NOT_SUPPORTED": 101, + "FORBIDDEN": 102, + "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201, + }, + "RegistrationType": { + "PHONE": 0, + "EMAIL_WAP": 1, + "FACEBOOK": 2305, + "SINA": 2306, + "RENREN": 2307, + "FEIXIN": 2308, + "APPLE": 2309, + "YAHOOJAPAN": 2310, + "GOOGLE": 2311, + }, + "ReportType": { + "ADVERTISING": 1, + "GENDER_HARASSMENT": 2, + "HARASSMENT": 3, + "OTHER": 4, + "IRRELEVANT_CONTENT": 5, + "IMPERSONATION": 6, + "SCAM": 7, + }, + "S70_a": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "RETRY_LATER": 3, + "INVALID_CONTEXT": 100, + "APP_UPGRADE_REQUIRED": 101, + }, + "SettingsAttributeEx": { + "NOTIFICATION_ENABLE": 0, + "NOTIFICATION_MUTE_EXPIRATION": 1, + "NOTIFICATION_NEW_MESSAGE": 2, + "NOTIFICATION_GROUP_INVITATION": 3, + "NOTIFICATION_SHOW_MESSAGE": 4, + "NOTIFICATION_INCOMING_CALL": 5, + "PRIVACY_SYNC_CONTACTS": 6, + "PRIVACY_SEARCH_BY_PHONE_NUMBER": 7, + "NOTIFICATION_SOUND_MESSAGE": 8, + "NOTIFICATION_SOUND_GROUP": 9, + "CONTACT_MY_TICKET": 10, + "IDENTITY_PROVIDER": 11, + "IDENTITY_IDENTIFIER": 12, + "PRIVACY_SEARCH_BY_USERID": 13, + "PRIVACY_SEARCH_BY_EMAIL": 14, + "PREFERENCE_LOCALE": 15, + "NOTIFICATION_DISABLED_WITH_SUB": 16, + "NOTIFICATION_PAYMENT": 17, + "SECURITY_CENTER_SETTINGS": 18, + "SNS_ACCOUNT": 19, + "PHONE_REGISTRATION": 20, + "PRIVACY_ALLOW_SECONDARY_DEVICE_LOGIN": 21, + "CUSTOM_MODE": 22, + "PRIVACY_PROFILE_IMAGE_POST_TO_MYHOME": 23, + "EMAIL_CONFIRMATION_STATUS": 24, + "PRIVACY_RECV_MESSAGES_FROM_NOT_FRIEND": 25, + "PRIVACY_AGREE_USE_LINECOIN_TO_PAIDCALL": 26, + "PRIVACY_AGREE_USE_PAIDCALL": 27, + "ACCOUNT_MIGRATION_PINCODE": 28, + "ENFORCED_INPUT_ACCOUNT_MIGRATION_PINCODE": 29, + "PRIVACY_ALLOW_FRIEND_REQUEST": 30, + "PWLESS_PRIMARY_CREDENTIAL_REGISTRATION": 31, + "ALLOWED_TO_CONNECT_EAP_ACCOUNT": 32, + "E2EE_ENABLE": 33, + "HITOKOTO_BACKUP_REQUESTED": 34, + "PRIVACY_PROFILE_MUSIC_POST_TO_MYHOME": 35, + "CONTACT_ALLOW_FOLLOWING": 36, + "PRIVACY_ALLOW_NEARBY": 37, + "AGREEMENT_NEARBY": 38, + "AGREEMENT_SQUARE": 39, + "NOTIFICATION_MENTION": 40, + "ALLOW_UNREGISTRATION_SECONDARY_DEVICE": 41, + "AGREEMENT_BOT_USE": 42, + "AGREEMENT_SHAKE_FUNCTION": 43, + "AGREEMENT_MOBILE_CONTACT_NAME": 44, + "NOTIFICATION_THUMBNAIL": 45, + "AGREEMENT_SOUND_TO_TEXT": 46, + "AGREEMENT_PRIVACY_POLICY_VERSION": 47, + "AGREEMENT_AD_BY_WEB_ACCESS": 48, + "AGREEMENT_PHONE_NUMBER_MATCHING": 49, + "AGREEMENT_COMMUNICATION_INFO": 50, + "PRIVACY_SHARE_PERSONAL_INFO_TO_FRIENDS": 51, + "AGREEMENT_THINGS_WIRELESS_COMMUNICATION": 52, + "AGREEMENT_GDPR": 53, + "PRIVACY_STATUS_MESSAGE_HISTORY": 54, + "AGREEMENT_PROVIDE_LOCATION": 55, + "AGREEMENT_BEACON": 56, + "PRIVACY_PROFILE_HISTORY": 57, + "AGREEMENT_CONTENTS_SUGGEST": 58, + "AGREEMENT_CONTENTS_SUGGEST_DATA_COLLECTION": 59, + "PRIVACY_AGE_RESULT": 60, + "PRIVACY_AGE_RESULT_RECEIVED": 61, + "AGREEMENT_OCR_IMAGE_COLLECTION": 62, + "PRIVACY_ALLOW_FOLLOW": 63, + "PRIVACY_SHOW_FOLLOW_LIST": 64, + "NOTIFICATION_BADGE_TALK_ONLY": 65, + "AGREEMENT_ICNA": 66, + "NOTIFICATION_REACTION": 67, + "AGREEMENT_MID": 68, + "HOME_NOTIFICATION_NEW_FRIEND": 69, + "HOME_NOTIFICATION_FAVORITE_FRIEND_UPDATE": 70, + "HOME_NOTIFICATION_GROUP_MEMBER_UPDATE": 71, + "HOME_NOTIFICATION_BIRTHDAY": 72, + "AGREEMENT_LINE_OUT_USE": 73, + "AGREEMENT_LINE_OUT_PROVIDE_INFO": 74, + "NOTIFICATION_SHOW_PROFILE_IMAGE": 75, + "AGREEMENT_PDPA": 76, + "AGREEMENT_LOCATION_VERSION": 77, + "ALLOWED_TO_SHOW_ZHD_PAGE": 78, + "AGREEMENT_SNOW_AI_AVATAR": 79, + "EAP_ONLY_ACCOUNT_TARGET_COUNTRY": 80, + "AGREEMENT_LYP_PREMIUM_ALBUM": 81, + "AGREEMENT_LYP_PREMIUM_ALBUM_VERSION": 82, + "AGREEMENT_ALBUM_USAGE_DATA": 83, + "AGREEMENT_ALBUM_USAGE_DATA_VERSION": 84, + "AGREEMENT_LYP_PREMIUM_BACKUP": 85, + "AGREEMENT_LYP_PREMIUM_BACKUP_VERSION": 86, + "AGREEMENT_OA_AI_ASSISTANT": 87, + "AGREEMENT_OA_AI_ASSISTANT_VERSION": 88, + "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE": 89, + "AGREEMENT_LYP_PREMIUM_MULTI_PROFILE_VERSION": 90, + }, + "SnsIdType": { + "FACEBOOK": 1, + "SINA": 2, + "RENREN": 3, + "FEIXIN": 4, + "BBM": 5, + "APPLE": 6, + "YAHOOJAPAN": 7, + "GOOGLE": 8, + }, + "SpammerReason": { + "OTHER": 0, + "ADVERTISING": 1, + "GENDER_HARASSMENT": 2, + "HARASSMENT": 3, + "IMPERSONATION": 4, + "SCAM": 5, + }, + "SpotCategory": { + "UNKNOWN": 0, + "GOURMET": 1, + "BEAUTY": 2, + "TRAVEL": 3, + "SHOPPING": 4, + "ENTERTAINMENT": 5, + "SPORTS": 6, + "TRANSPORT": 7, + "LIFE": 8, + "HOSPITAL": 9, + "FINANCE": 10, + "EDUCATION": 11, + "OTHER": 12, + "ALL": 10000, + }, + "SquareAttribute": { + "NAME": 1, + "WELCOME_MESSAGE": 2, + "PROFILE_IMAGE": 3, + "DESCRIPTION": 4, + "SEARCHABLE": 6, + "CATEGORY": 7, + "INVITATION_URL": 8, + "ABLE_TO_USE_INVITATION_URL": 9, + "STATE": 10, + "EMBLEMS": 11, + "JOIN_METHOD": 12, + "CHANNEL_ID": 13, + "SVC_TAGS": 14, + }, + "SquareAuthorityAttribute": { + "UPDATE_SQUARE_PROFILE": 1, + "INVITE_NEW_MEMBER": 2, + "APPROVE_JOIN_REQUEST": 3, + "CREATE_POST": 4, + "CREATE_OPEN_SQUARE_CHAT": 5, + "DELETE_SQUARE_CHAT_OR_POST": 6, + "REMOVE_SQUARE_MEMBER": 7, + "GRANT_ROLE": 8, + "ENABLE_INVITATION_TICKET": 9, + "CREATE_CHAT_ANNOUNCEMENT": 10, + "UPDATE_MAX_CHAT_MEMBER_COUNT": 11, + "USE_READONLY_DEFAULT_CHAT": 12, + "SEND_ALL_MENTION": 13, + }, + "SquareChatType": { + "OPEN": 1, + "SECRET": 2, + "ONE_ON_ONE": 3, + "SQUARE_DEFAULT": 4, + }, + "SquareMemberAttribute": { + "DISPLAY_NAME": 1, + "PROFILE_IMAGE": 2, + "ABLE_TO_RECEIVE_MESSAGE": 3, + "MEMBERSHIP_STATE": 5, + "ROLE": 6, + "PREFERENCE": 7, + }, + "SquareMembershipState": { + "JOIN_REQUESTED": 1, + "JOINED": 2, + "REJECTED": 3, + "LEFT": 4, + "KICK_OUT": 5, + "BANNED": 6, + "DELETED": 7, + "JOIN_REQUEST_WITHDREW": 8, + }, + "StickerResourceType": { + "STATIC": 1, + "ANIMATION": 2, + "SOUND": 3, + "ANIMATION_SOUND": 4, + "POPUP": 5, + "POPUP_SOUND": 6, + "NAME_TEXT": 7, + "PER_STICKER_TEXT": 8, + }, + "SyncCategory": { + "PROFILE": 0, + "SETTINGS": 1, + "OPS": 2, + "CONTACT": 3, + "RECOMMEND": 4, + "BLOCK": 5, + "GROUP": 6, + "ROOM": 7, + "NOTIFICATION": 8, + "ADDRESS_BOOK": 9, + }, + "T70_C": { + "INITIAL_BACKUP_STATE_UNSPECIFIED": 0, + "INITIAL_BACKUP_STATE_READY": 1, + "INITIAL_BACKUP_STATE_MESSAGE_ONGOING": 2, + "INITIAL_BACKUP_STATE_FINISHED": 3, + "INITIAL_BACKUP_STATE_ABORTED": 4, + "INITIAL_BACKUP_STATE_MEDIA_ONGOING": 5, + }, + "T70_EnumC14390b": { + "UNKNOWN": 0, + "PHONE_NUMBER": 1, + "EMAIL": 2, + }, + "T70_EnumC14392c": { + "UNKNOWN": 0, + "SKIP": 1, + "PASSWORD": 2, + "WEB_BASED": 3, + "EMAIL_BASED": 4, + "NONE": 11, + }, + "T70_EnumC14406j": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "NOT_FOUND": 3, + "RETRY_LATER": 4, + "HUMAN_VERIFICATION_REQUIRED": 5, + "INVALID_CONTEXT": 100, + "APP_UPGRADE_REQUIRED": 101, + }, + "T70_K": { + "UNKNOWN": 0, + "SMS": 1, + "IVR": 2, + "SMSPULL": 3, + }, + "T70_L": { + "PREMIUM_TYPE_UNSPECIFIED": 0, + "PREMIUM_TYPE_LYP": 1, + "PREMIUM_TYPE_LINE": 2, + }, + "T70_Z0": { + "PHONE_VERIF": 1, + "EAP_VERIF": 2, + }, + "T70_e1": { + "UNKNOWN": 0, + "SKIP": 1, + "WEB_BASED": 2, + }, + "T70_j1": { + "UNKNOWN": 0, + "FACEBOOK": 1, + "APPLE": 2, + "GOOGLE": 3, + }, + "U70_c": { + "INTERNAL_ERROR": 0, + "FORBIDDEN": 1, + "INVALID_CONTEXT": 100, + }, + "Uf_EnumC14873o": { + "ANDROID": 1, + "IOS": 2, + }, + "VR0_l": { + "DEFAULT": 1, + "UEN": 2, + }, + "VerificationMethod": { + "NO_AVAILABLE": 0, + "PIN_VIA_SMS": 1, + "CALLERID_INDIGO": 2, + "PIN_VIA_TTS": 4, + "SKIP": 10, + }, + "VerificationResult": { + "FAILED": 0, + "OK_NOT_REGISTERED_YET": 1, + "OK_REGISTERED_WITH_SAME_DEVICE": 2, + "OK_REGISTERED_WITH_ANOTHER_DEVICE": 3, + }, + "WR0_a": { + "FREE": 1, + "PREMIUM": 2, + }, + "a80_EnumC16644b": { + "UNKNOWN": 0, + "FACEBOOK": 1, + "APPLE": 2, + "GOOGLE": 3, + }, + "FetchDirection": { + "FORWARD": 1, + "BACKWARD": 2, + }, + "LiveTalkEventType": { + "NOTIFIED_UPDATE_LIVE_TALK_TITLE": 1, + "NOTIFIED_UPDATE_LIVE_TALK_ANNOUNCEMENT": 2, + "NOTIFIED_UPDATE_SQUARE_MEMBER_ROLE": 3, + "NOTIFIED_UPDATE_LIVE_TALK_ALLOW_REQUEST_TO_SPEAK": 4, + "NOTIFIED_UPDATE_SQUARE_MEMBER": 5, + }, + "LiveTalkReportType": { + "ADVERTISING": 1, + "GENDER_HARASSMENT": 2, + "HARASSMENT": 3, + "IRRELEVANT_CONTENT": 4, + "OTHER": 5, + "IMPERSONATION": 6, + "SCAM": 7, + }, + "MessageSummaryReportType": { + "LEGAL_VIOLATION": 1, + "HARASSMENT": 2, + "PERSONAL_IDENTIFIER": 3, + "FALSE_INFORMATION": 4, + "GENDER_HARASSMENT": 5, + "OTHER": 6, + }, + "NotificationPostType": { + "POST_MENTION": 2, + "POST_LIKE": 3, + "POST_COMMENT": 4, + "POST_COMMENT_MENTION": 5, + "POST_COMMENT_LIKE": 6, + "POST_RELAY_JOIN": 7, + }, + "SquareEventStatus": { + "NORMAL": 1, + "ALERT_DISABLED": 2, + }, + "SquareEventType": { + "RECEIVE_MESSAGE": 0, + "SEND_MESSAGE": 1, + "NOTIFIED_JOIN_SQUARE_CHAT": 2, + "NOTIFIED_INVITE_INTO_SQUARE_CHAT": 3, + "NOTIFIED_LEAVE_SQUARE_CHAT": 4, + "NOTIFIED_DESTROY_MESSAGE": 5, + "NOTIFIED_MARK_AS_READ": 6, + "NOTIFIED_UPDATE_SQUARE_MEMBER_PROFILE": 7, + "NOTIFIED_UPDATE_SQUARE": 8, + "NOTIFIED_UPDATE_SQUARE_STATUS": 9, + "NOTIFIED_UPDATE_SQUARE_AUTHORITY": 10, + "NOTIFIED_UPDATE_SQUARE_MEMBER": 11, + "NOTIFIED_UPDATE_SQUARE_CHAT": 12, + "NOTIFIED_UPDATE_SQUARE_CHAT_STATUS": 13, + "NOTIFIED_UPDATE_SQUARE_CHAT_MEMBER": 14, + "NOTIFIED_CREATE_SQUARE_MEMBER": 15, + "NOTIFIED_CREATE_SQUARE_CHAT_MEMBER": 16, + "NOTIFIED_UPDATE_SQUARE_MEMBER_RELATION": 17, + "NOTIFIED_SHUTDOWN_SQUARE": 18, + "NOTIFIED_KICKOUT_FROM_SQUARE": 19, + "NOTIFIED_DELETE_SQUARE_CHAT": 20, + "NOTIFICATION_JOIN_REQUEST": 21, + "NOTIFICATION_JOINED": 22, + "NOTIFICATION_PROMOTED_COADMIN": 23, + "NOTIFICATION_PROMOTED_ADMIN": 24, + "NOTIFICATION_DEMOTED_MEMBER": 25, + "NOTIFICATION_KICKED_OUT": 26, + "NOTIFICATION_SQUARE_DELETE": 27, + "NOTIFICATION_SQUARE_CHAT_DELETE": 28, + "NOTIFICATION_MESSAGE": 29, + "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_NAME": 30, + "NOTIFIED_UPDATE_SQUARE_CHAT_PROFILE_IMAGE": 31, + "NOTIFIED_UPDATE_SQUARE_FEATURE_SET": 32, + "NOTIFIED_ADD_BOT": 33, + "NOTIFIED_REMOVE_BOT": 34, + "NOTIFIED_UPDATE_SQUARE_NOTE_STATUS": 36, + "NOTIFIED_UPDATE_SQUARE_CHAT_ANNOUNCEMENT": 37, + "NOTIFIED_UPDATE_SQUARE_CHAT_MAX_MEMBER_COUNT": 38, + "NOTIFICATION_POST_ANNOUNCEMENT": 39, + "NOTIFICATION_POST": 40, + "MUTATE_MESSAGE": 41, + "NOTIFICATION_NEW_CHAT_MEMBER": 42, + "NOTIFIED_UPDATE_READONLY_CHAT": 43, + "NOTIFIED_UPDATE_MESSAGE_STATUS": 46, + "NOTIFICATION_MESSAGE_REACTION": 47, + "NOTIFIED_CHAT_POPUP": 48, + "NOTIFIED_SYSTEM_MESSAGE": 49, + "NOTIFIED_UPDATE_SQUARE_CHAT_FEATURE_SET": 50, + "NOTIFIED_UPDATE_LIVE_TALK": 51, + "NOTIFICATION_LIVE_TALK": 52, + "NOTIFIED_UPDATE_LIVE_TALK_INFO": 53, + "NOTIFICATION_THREAD_MESSAGE": 54, + "NOTIFICATION_THREAD_MESSAGE_REACTION": 55, + "NOTIFIED_UPDATE_THREAD": 56, + "NOTIFIED_UPDATE_THREAD_STATUS": 57, + "NOTIFIED_UPDATE_THREAD_MEMBER": 58, + "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE": 59, + "NOTIFIED_UPDATE_THREAD_ROOT_MESSAGE_STATUS": 60, + }, + "AdScreen": { + "CHATROOM": 1, + "THREAD_SPACE": 2, + "YOUR_THREADS": 3, + "NOTE_LIST": 4, + "NOTE_END": 5, + "WEB_MAIN": 6, + "WEB_SEARCH_RESULT": 7, + }, + "BooleanState": { + "NONE": 0, + "OFF": 1, + "ON": 2, + }, + "ChatroomPopupType": { + "IMG_TEXT": 1, + "TEXT_ONLY": 2, + "IMG_ONLY": 3, + }, + "ContentsAttribute": { + "NONE": 1, + "CONTENTS_HIDDEN": 2, + }, + "FetchType": { + "DEFAULT": 1, + "PREFETCH_BY_SERVER": 2, + "PREFETCH_BY_CLIENT": 3, + }, + "LiveTalkAttribute": { + "TITLE": 1, + "ALLOW_REQUEST_TO_SPEAK": 2, + }, + "LiveTalkRole": { + "HOST": 1, + "CO_HOST": 2, + "GUEST": 3, + }, + "LiveTalkSpeakerSetting": { + "APPROVAL": 1, + "ALL": 2, + }, + "LiveTalkType": { + "PUBLIC": 1, + "PRIVATE": 2, + }, + "MessageReactionType": { + "ALL": 0, + "UNDO": 1, + "NICE": 2, + "LOVE": 3, + "FUN": 4, + "AMAZING": 5, + "SAD": 6, + "OMG": 7, + }, + "NotifiedMessageType": { + "MENTION": 1, + "REPLY": 2, + }, + "PopupAttribute": { + "NAME": 1, + "ACTIVATED": 2, + "STARTS_AT": 3, + "ENDS_AT": 4, + "CONTENT": 5, + }, + "PopupType": { + "MAIN": 1, + "CHATROOM": 2, + }, + "SquareChatAttribute": { + "NAME": 2, + "SQUARE_CHAT_IMAGE": 3, + "STATE": 4, + "TYPE": 5, + "MAX_MEMBER_COUNT": 6, + "MESSAGE_VISIBILITY": 7, + "ABLE_TO_SEARCH_MESSAGE": 8, + }, + "SquareChatFeatureControlState": { + "DISABLED": 1, + "ENABLED": 2, + }, + "SquareChatMemberAttribute": { + "MEMBERSHIP_STATE": 4, + "NOTIFICATION_MESSAGE": 6, + "NOTIFICATION_NEW_MEMBER": 7, + "LEFT_BY_KICK_MESSAGE_LOCAL_ID": 8, + "MESSAGE_LOCAL_ID_WHEN_BLOCK": 9, + }, + "SquareChatMembershipState": { + "JOINED": 1, + "LEFT": 2, + }, + "SquareChatState": { + "ALIVE": 0, + "DELETED": 1, + "SUSPENDED": 2, + }, + "SquareEmblem": { + "SUPER": 1, + "OFFICIAL": 2, + }, + "SquareErrorCode": { + "UNKNOWN": 0, + "ILLEGAL_ARGUMENT": 400, + "AUTHENTICATION_FAILURE": 401, + "FORBIDDEN": 403, + "NOT_FOUND": 404, + "REVISION_MISMATCH": 409, + "PRECONDITION_FAILED": 410, + "INTERNAL_ERROR": 500, + "NOT_IMPLEMENTED": 501, + "TRY_AGAIN_LATER": 503, + "MAINTENANCE": 505, + "NO_PRESENCE_EXISTS": 506, + }, + "SquareFeatureControlState": { + "DISABLED": 1, + "ENABLED": 2, + }, + "SquareFeatureSetAttribute": { + "CREATING_SECRET_SQUARE_CHAT": 1, + "INVITING_INTO_OPEN_SQUARE_CHAT": 2, + "CREATING_SQUARE_CHAT": 3, + "READONLY_DEFAULT_CHAT": 4, + "SHOWING_ADVERTISEMENT": 5, + "DELEGATE_JOIN_TO_PLUG": 6, + "DELEGATE_KICK_OUT_TO_PLUG": 7, + "DISABLE_UPDATE_JOIN_METHOD": 8, + "DISABLE_TRANSFER_ADMIN": 9, + "CREATING_LIVE_TALK": 10, + "DISABLE_UPDATE_SEARCHABLE": 11, + "SUMMARIZING_MESSAGES": 12, + "CREATING_SQUARE_THREAD": 13, + "ENABLE_SQUARE_THREAD": 14, + "DISABLE_CHANGE_ROLE_CO_ADMIN": 15, + }, + "SquareJoinMethodType": { + "NONE": 0, + "APPROVAL": 1, + "CODE": 2, + }, + "SquareMemberRelationState": { + "NONE": 1, + "BLOCKED": 2, + }, + "SquareMemberRole": { + "ADMIN": 1, + "CO_ADMIN": 2, + "MEMBER": 10, + }, + "SquareMessageState": { + "SENT": 1, + "DELETED": 2, + "FORBIDDEN": 3, + "UNSENT": 4, + }, + "SquareMetadataAttribute": { + "EXCLUDED": 1, + "NO_AD": 2, + }, + "SquarePreferenceAttribute": { + "FAVORITE": 1, + "NOTI_FOR_NEW_JOIN_REQUEST": 2, + }, + "SquareProviderType": { + "UNKNOWN": 1, + "YOUTUBE": 2, + "OA_FANSPACE": 3, + }, + "SquareState": { + "ALIVE": 0, + "DELETED": 1, + "SUSPENDED": 2, + }, + "SquareThreadAttribute": { + "STATE": 1, + "EXPIRES_AT": 2, + "READ_ONLY_AT": 3, + }, + "SquareThreadMembershipState": { + "JOINED": 1, + "LEFT": 2, + }, + "SquareThreadState": { + "ALIVE": 1, + "DELETED": 2, + }, + "SquareType": { + "CLOSED": 0, + "OPEN": 1, + }, + "TargetChatType": { + "ALL": 0, + "MIDS": 1, + "CATEGORIES": 2, + "CHANNEL_ID": 3, + }, + "TargetUserType": { + "ALL": 0, + "MIDS": 1, + }, + "do0_EnumC23139B": { + "CLOUD": 1, + "BLE": 2, + "BEACON": 3, + }, + "do0_EnumC23147e": { + "SUCCESS": 0, + "UNKNOWN_ERROR": 1, + "BLUETOOTH_NOT_AVAILABLE": 2, + "CONNECTION_TIMEOUT": 3, + "CONNECTION_ERROR": 4, + "CONNECTION_IN_PROGRESS": 5, + }, + "do0_EnumC23148f": { + "ONETIME": 0, + "AUTOMATIC": 1, + "BEACON": 2, + }, + "do0_G": { + "SUCCESS": 0, + "UNKNOWN_ERROR": 1, + "GATT_ERROR": 2, + "GATT_OPERATION_NOT_SUPPORTED": 3, + "GATT_SERVICE_NOT_FOUND": 4, + "GATT_CHARACTERISTIC_NOT_FOUND": 5, + "GATT_CONNECTION_CLOSED": 6, + "CONNECTION_INVALID": 7, + }, + "do0_M": { + "INTERNAL_SERVER_ERROR": 0, + "UNAUTHORIZED": 1, + "INVALID_REQUEST": 2, + "INVALID_STATE": 3, + "DEVICE_LIMIT_EXCEEDED": 4096, + "UNSUPPORTED_REGION": 4097, + }, + "fN0_EnumC24466B": { + "LINE_PREMIUM": 0, + "LYP_PREMIUM": 1, + }, + "fN0_EnumC24467C": { + "LINE": 1, + "YAHOO_JAPAN": 2, + }, + "fN0_EnumC24469a": { + "OK": 1, + "NOT_SUPPORTED": 2, + "UNDEFINED": 3, + "NOT_ENOUGH_TICKETS": 4, + "NOT_FRIENDS": 5, + "NO_AGREEMENT": 6, + }, + "fN0_F": { + "OK": 1, + "NOT_SUPPORTED": 2, + "UNDEFINED": 3, + "CONFLICT": 4, + "NOT_AVAILABLE": 5, + "INVALID_INVITATION": 6, + "IN_PAYMENT_FAILURE_STATE": 7, + }, + "fN0_G": { + "APPLE": 1, + "GOOGLE": 2, + }, + "fN0_H": { + "INACTIVE": 1, + "ACTIVE_FINITE": 2, + "ACTIVE_INFINITE": 3, + }, + "fN0_o": { + "AVAILABLE": 1, + "ALREADY_SUBSCRIBED": 2, + }, + "fN0_p": { + "UNKNOWN": 0, + "SOFTBANK_BUNDLE": 1, + "YBB_BUNDLE": 2, + "YAHOO_MOBILE_BUNDLE": 3, + "PPCG_BUNDLE": 4, + "ENJOY_BUNDLE": 5, + "YAHOO_TRIAL_BUNDLE": 6, + "YAHOO_APPLE": 7, + "YAHOO_GOOGLE": 8, + "LINE_APPLE": 9, + "LINE_GOOGLE": 10, + "YAHOO_WALLET": 11, + }, + "fN0_q": { + "UNKNOWN": 0, + "NONE": 1, + "ILLEGAL_ARGUMENT": 16641, + "NOT_FOUND": 16642, + "NOT_AVAILABLE": 16643, + "INTERNAL_SERVER_ERROR": 16644, + "AUTHENTICATION_FAILED": 16645, + }, + "g80_EnumC24993a": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "INVALID_CONTEXT": 2, + "TOO_MANY_REQUESTS": 3, + }, + "h80_EnumC25645e": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "NOT_FOUND": 2, + "RETRY_LATER": 3, + "INVALID_CONTEXT": 100, + "NOT_SUPPORTED": 101, + }, + "I80_EnumC26392b": { + "UNKNOWN": 0, + "SKIP": 1, + "PASSWORD": 2, + "EMAIL_BASED": 4, + "NONE": 11, + }, + "I80_EnumC26394c": { + "PHONE_NUMBER": 0, + "APPLE": 1, + "GOOGLE": 2, + }, + "I80_EnumC26408j": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "NOT_FOUND": 3, + "RETRY_LATER": 4, + "HUMAN_VERIFICATION_REQUIRED": 5, + "INVALID_CONTEXT": 100, + "APP_UPGRADE_REQUIRED": 101, + }, + "I80_EnumC26425y": { + "UNKNOWN": 0, + "SMS": 1, + "IVR": 2, + }, + "j80_EnumC27228a": { + "AUTHENTICATION_FAILED": 1, + "INVALID_STATE": 2, + "NOT_AUTHORIZED_DEVICE": 3, + "MUST_REFRESH_V3_TOKEN": 4, + }, + "jO0_EnumC27533B": { + "PAYMENT_APPLE": 1, + "PAYMENT_GOOGLE": 2, + }, + "jO0_EnumC27535b": { + "ILLEGAL_ARGUMENT": 0, + "AUTHENTICATION_FAILED": 1, + "INTERNAL_ERROR": 20, + "MESSAGE_DEFINED_ERROR": 29, + "MAINTENANCE_ERROR": 33, + }, + "jO0_EnumC27559z": { + "PAYMENT_PG_NONE": 0, + "PAYMENT_PG_AU": 1, + "PAYMENT_PG_AL": 2, + }, + "jf_EnumC27712a": { + "NONE": 1, + "DOES_NOT_RESPOND": 2, + "RESPOND_MANUALLY": 3, + "RESPOND_AUTOMATICALLY": 4, + }, + "jf_EnumC27717f": { + "UNKNOWN": 0, + "BAD_REQUEST": 1, + "NOT_FOUND": 2, + "FORBIDDEN": 3, + "INTERNAL_SERVER_ERROR": 4, + }, + "kf_EnumC28766a": { + "ILLEGAL_ARGUMENT": 0, + "INTERNAL_ERROR": 1, + "UNAUTHORIZED": 2, + }, + "kf_o": { + "ANDROID": 0, + "IOS": 1, + }, + "kf_p": { + "RICHMENU": 0, + "TALK_ROOM": 1, + }, + "kf_r": { + "WEB": 0, + "POSTBACK": 1, + "SEND_MESSAGE": 2, + }, + "kf_u": { + "CLICK": 0, + "IMPRESSION": 1, + }, + "kf_x": { + "UNKNOWN": 0, + "PROFILE": 1, + "TALK_LIST": 2, + "OA_CALL": 3, + }, + "n80_o": { + "INTERNAL_ERROR": 0, + "INVALID_CONTEXT": 100, + "FIDO_UNKNOWN_CREDENTIAL_ID": 200, + "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201, + "FIDO_UNACCEPTABLE_CONTENT": 202, + "FIDO_INVALID_REQUEST": 203, + }, + "o80_e": { + "INTERNAL_ERROR": 0, + "VERIFICATION_FAILED": 1, + "LOGIN_NOT_ALLOWED": 2, + "EXTERNAL_SERVICE_UNAVAILABLE": 3, + "RETRY_LATER": 4, + "NOT_SUPPORTED": 100, + "ILLEGAL_ARGUMENT": 101, + "INVALID_CONTEXT": 102, + "FORBIDDEN": 103, + "FIDO_UNKNOWN_CREDENTIAL_ID": 200, + "FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR": 201, + "FIDO_UNACCEPTABLE_CONTENT": 202, + "FIDO_INVALID_REQUEST": 203, + }, + "og_E": { + "RUNNING": 1, + "CLOSING": 2, + "CLOSED": 3, + "SUSPEND": 4, + }, + "og_EnumC32661b": { + "INACTIVE": 0, + "ACTIVE": 1, + }, + "og_EnumC32663d": { + "PREMIUM": 0, + "VERIFIED": 1, + "UNVERIFIED": 2, + }, + "og_EnumC32671l": { + "ILLEGAL_ARGUMENT": 0, + "AUTHENTICATION_FAILED": 1, + "INVALID_STATE": 3, + "NOT_FOUND": 5, + "INTERNAL_ERROR": 20, + "MAINTENANCE_ERROR": 33, + }, + "og_G": { + "FREE": 0, + "MONTHLY": 1, + "PER_PAYMENT": 2, + }, + "og_I": { + "OK": 0, + "REACHED_TIER_LIMIT": 1, + "REACHED_MEMBER_LIMIT": 2, + "ALREADY_JOINED": 3, + "NOT_SUPPORTED_LINE_VERSION": 4, + "BOT_USER_REGION_IS_NOT_MATCH": 5, + }, + "q80_EnumC33651c": { + "INTERNAL_ERROR": 0, + "ILLEGAL_ARGUMENT": 1, + "VERIFICATION_FAILED": 2, + "NOT_ALLOWED_QR_CODE_LOGIN": 3, + "VERIFICATION_NOTICE_FAILED": 4, + "RETRY_LATER": 5, + "INVALID_CONTEXT": 100, + "APP_UPGRADE_REQUIRED": 101, + }, + "qm_EnumC34112e": { + "BUTTON": 1, + "ENTRY_SELECTED": 2, + "BROADCAST_ENTER": 3, + "BROADCAST_LEAVE": 4, + "BROADCAST_STAY": 5, + }, + "qm_s": { + "ILLEGAL_ARGUMENT": 0, + "NOT_FOUND": 5, + "INTERNAL_ERROR": 20, + }, + "r80_EnumC34361a": { + "PERSONAL_ACCOUNT": 1, + "CURRENT_ACCOUNT": 2, + }, + "r80_EnumC34362b": { + "BANK_ALL": 1, + "BANK_DEPOSIT": 2, + "BANK_WITHDRAWAL": 3, + }, + "r80_EnumC34365e": { + "BANK": 1, + "ATM": 2, + "CONVENIENCE_STORE": 3, + "DEBIT_CARD": 4, + "E_CHANNEL": 5, + "VIRTUAL_BANK_ACCOUNT": 6, + "AUTO": 7, + "CVS_LAWSON": 8, + "SEVEN_BANK_DEPOSIT": 9, + "CODE_DEPOSIT": 10, + }, + "r80_EnumC34367g": { + "AVAILABLE": 0, + "DIFFERENT_REGION": 1, + "UNSUPPORTED_DEVICE": 2, + "PHONE_NUMBER_UNREGISTERED": 3, + "UNAVAILABLE_FROM_LINE_PAY": 4, + "INVALID_USER": 5, + }, + "r80_EnumC34368h": { + "CHARGE": 1, + "WITHDRAW": 2, + }, + "r80_EnumC34370j": { + "UNKNOWN": 0, + "VISA": 1, + "MASTER": 2, + "AMEX": 3, + "DINERS": 4, + "JCB": 5, + }, + "r80_EnumC34371k": { + "NULL": 0, + "ATM": 1, + "CONVENIENCE_STORE": 2, + }, + "r80_EnumC34372l": { + "SCALE2": 1, + "SCALE3": 2, + "HDPI": 3, + "XHDPI": 4, + }, + "r80_EnumC34374n": { + "SUCCESS": 0, + "GENERAL_USER_ERROR": 1000, + "ACCOUNT_NOT_EXISTS": 1101, + "ACCOUNT_INVALID_STATUS": 1102, + "ACCOUNT_ALREADY_EXISTS": 1103, + "MERCHANT_NOT_EXISTS": 1104, + "MERCHANT_INVALID_STATUS": 1105, + "AGREEMENT_REQUIRED": 1107, + "BLACKLISTED": 1108, + "WRONG_PASSWORD": 1109, + "INVALID_CREDIT_CARD": 1110, + "LIMIT_EXCEEDED": 1111, + "CANNOT_PROCEED": 1115, + "TOO_WEAK_PASSWORD": 1120, + "CANNOT_CREATE_ACCOUNT": 1125, + "TEMPORARY_PASSWORD_ERROR": 1130, + "MISSING_PARAMETERS": 1140, + "NO_VALID_MYCODE_ACCOUNT": 1141, + "INSUFFICIENT_BALANCE": 1142, + "TRANSACTION_NOT_FOUND": 1150, + "TRANSACTION_FINISHED": 1152, + "PAYMENT_AMOUNT_WRONG": 1153, + "BALANCE_ACCOUNT_NOT_EXISTS": 1157, + "DUPLICATED_CITIZEN_ID": 1158, + "PAYMENT_REQUEST_NOT_FOUND": 1159, + "AUTH_FAILED": 1169, + "PASSWORD_SETTING_REQUIRED": 1171, + "TRANSACTION_ALREADY_PROCESSED": 1172, + "CURRENCY_NOT_SUPPORTED": 1178, + "PAYMENT_NOT_AVAILABLE": 1180, + "TRANSFER_REQUEST_NOT_FOUND": 1181, + "INVALID_PAYMENT_AMOUNT": 1183, + "INSUFFICIENT_PAYMENT_AMOUNT": 1184, + "EXTERNAL_SYSTEM_MAINTENANCE": 1185, + "EXTERNAL_SYSTEM_INOPERATIONAL": 1186, + "SESSION_EXPIRED": 1192, + "UPGRADE_REQUIRED": 1195, + "REQUEST_TOKEN_EXPIRED": 1196, + "OPERATION_FINISHED": 1198, + "EXTERNAL_SYSTEM_ERROR": 1199, + "PARTIAL_AMOUNT_APPROVED": 1299, + "PINCODE_AUTH_REQUIRED": 1600, + "ADDITIONAL_AUTH_REQUIRED": 1601, + "NOT_BOUND": 1603, + "OTP_USER_REGISTRATION_ERROR": 1610, + "OTP_CARD_REGISTRATION_ERROR": 1611, + "NO_AUTH_METHOD": 1612, + "GENERAL_USER_ERROR_RESTART": 1696, + "GENERAL_USER_ERROR_REFRESH": 1697, + "GENERAL_USER_ERROR_CLOSE": 1698, + "INTERNAL_SERVER_ERROR": 9000, + "INTERNAL_SYSTEM_MAINTENANCE": 9999, + "UNKNOWN_ERROR": 10000, + }, + "r80_EnumC34376p": { + "TRANSFER": 1, + "TRANSFER_REQUEST": 2, + "DUTCH": 3, + "INVITATION": 4, + }, + "r80_EnumC34377q": { + "NULL": 0, + "UNIDEN": 1, + "WAIT": 2, + "IDENTIFIED": 3, + "CHECKING": 4, + }, + "r80_EnumC34378s": { + "UNKNOWN": 0, + "MORE_TAB": 1, + "CHAT_ROOM_PLUS_MENU": 2, + "TRANSFER": 3, + "PAYMENT": 4, + "LINECARD": 5, + "INVITATION": 6, + }, + "r80_e0": { + "NONE": 0, + "ONE_TIME_PAYMENT_AGREEMENT": 1, + "SIMPLE_JOINING_AGREEMENT": 2, + "LINE_CARD_CASH_AGREEMENT": 3, + "LINE_CARD_MONEY_AGREEMENT": 4, + "JOINING_WITH_LINE_CARD_AGREEMENT": 5, + "LINE_CARD_AGREEMENT": 6, + }, + "r80_g0": { + "NULL": 0, + "ATM": 1, + "CONVENIENCE_STORE": 2, + "ALL": 3, + }, + "r80_h0": { + "READY": 1, + "COMPLETE": 2, + "WAIT": 3, + "CANCEL": 4, + "FAIL": 5, + "EXPIRE": 6, + "ALL": 7, + }, + "r80_i0": { + "TRANSFER_ACCEPTABLE": 1, + "REMOVE_INVOICE": 2, + "INVOICE_CODE": 3, + "SHOW_ALWAYS_INVOICE": 4, + }, + "r80_m0": { + "OK": 1, + "NOT_ALIVE_USER": 2, + "NEED_BALANCE_DISCLAIMER": 3, + "ECONTEXT_CHARGING_IN_PROGRESS": 4, + "TRANSFER_IN_PROGRESS": 6, + "OK_REMAINING_BALANCE": 7, + "ADVERSE_BALANCE": 8, + "CONFIRM_REQUIRED": 9, + }, + "r80_n0": { + "LINE": 1, + "LINEPAY": 2, + }, + "r80_r": { + "CITIZEN_ID": 1, + "PASSPORT": 2, + "WORK_PERMIT": 3, + "ALIEN_CARD": 4, + }, + "t80_h": { + "CLIENT": 1, + "SERVER": 2, + }, + "t80_i": { + "APP_INSTANCE_LOCAL": 1, + "APP_TYPE_LOCAL": 2, + "GLOBAL": 3, + }, + "t80_n": { + "UNKNOWN": 0, + "NONE": 1, + "ILLEGAL_ARGUMENT": 16641, + "NOT_FOUND": 16642, + "NOT_AVAILABLE": 16643, + "TOO_LARGE_VALUE": 16644, + "CLOCK_DRIFT_DETECTED": 16645, + "UNSUPPORTED_APPLICATION_TYPE": 16646, + "DUPLICATED_ENTRY": 16647, + "AUTHENTICATION_FAILED": 16897, + "INTERNAL_SERVER_ERROR": 20737, + "SERVICE_IN_MAINTENANCE_MODE": 20738, + "SERVICE_UNAVAILABLE": 20739, + }, + "t80_r": { + "USER_ACTION": 1, + "DATA_OUTDATED": 2, + "APP_MIGRATION": 3, + "OTHER": 100, + }, + "vh_EnumC37632c": { + "ACTIVE": 1, + "INACTIVE": 2, + }, + "vh_m": { + "SAFE": 1, + "NOT_SAFE": 2, + }, + "wm_EnumC38497a": { + "UNKNOWN": 0, + "BOT_NOT_FOUND": 1, + "BOT_NOT_AVAILABLE": 2, + "NOT_A_MEMBER": 3, + "SQUARECHAT_NOT_FOUND": 4, + "FORBIDDEN": 5, + "ILLEGAL_ARGUMENT": 400, + "AUTHENTICATION_FAILED": 401, + "INTERNAL_ERROR": 500, + }, + "zR0_EnumC40578c": { + "FOREGROUND": 0, + "BACKGROUND": 1, + }, + "zR0_EnumC40579d": { + "STICKER": 1, + "THEME": 2, + "STICON": 3, + }, + "zR0_h": { + "NORMAL": 0, + "BIG": 1, + }, + "zR0_j": { + "UNKNOWN": 0, + "NONE": 1, + "ILLEGAL_ARGUMENT": 16641, + "NOT_FOUND": 16642, + "NOT_AVAILABLE": 16643, + "AUTHENTICATION_FAILED": 16897, + "INTERNAL_SERVER_ERROR": 20737, + "SERVICE_UNAVAILABLE": 20739, + }, + "zf_EnumC40713a": { + "PERSONAL": 1, + "ROOM": 2, + "GROUP": 3, + "SQUARE_CHAT": 4, + }, + "zf_EnumC40715c": { + "REGULAR": 1, + "PRIORITY": 2, + "MORE": 3, + }, + "zf_EnumC40716d": { + "INVALID_REQUEST": 1, + "UNAUTHORIZED": 2, + "SERVER_ERROR": 100, + }, + "LoginResultType": { + "SUCCESS": 1, + "REQUIRE_QRCODE": 2, + "REQUIRE_DEVICE_CONFIRM": 3, + "REQUIRE_SMS_CONFIRM": 4, + }, }; -export type AR0_g = 16641 | "ILLEGAL_ARGUMENT" - | 16642 | "MAJOR_VERSION_NOT_SUPPORTED" - | 16897 | "AUTHENTICATION_FAILED" - | 20737 | "INTERNAL_SERVER_ERROR" - | 20739 | "SERVICE_UNAVAILABLE" -; - -export type AR0_q = 0 | "NOT_PURCHASED" - | 1 | "SUBSCRIPTION" -; - -export type AccountMigrationPincodeType = 0 | "NOT_APPLICABLE" - | 1 | "NOT_SET" - | 2 | "SET" - | 3 | "NEED_ENFORCED_INPUT" -; - -export type 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" -; - -export type BotType = 0 | "RESERVED" - | 1 | "OFFICIAL" - | 2 | "LINE_AT_0" - | 3 | "LINE_AT" -; - -export type 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" -; - -export type 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" -; - -export type ContactAttribute = 1 | "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL" - | 2 | "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL" - | 16 | "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME" - | 32 | "CONTACT_ATTRIBUTE_CAPABLE_BUDDY" -; - -export type 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" -; - -export type ContactStatus = 0 | "UNSPECIFIED" - | 1 | "FRIEND" - | 2 | "FRIEND_BLOCKED" - | 3 | "RECOMMEND" - | 4 | "RECOMMEND_BLOCKED" - | 5 | "DELETED" - | 6 | "DELETED_BLOCKED" -; - -export type 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" -; - -export type 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" -; - -export type Eg_EnumC8927a = 1 | "NEW" - | 2 | "UPDATE" - | 3 | "EVENT" -; - -export type EmailConfirmationStatus = 0 | "NOT_SPECIFIED" - | 1 | "NOT_YET" - | 3 | "DONE" - | 4 | "NEED_ENFORCED_INPUT" -; - -export type 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" -; - -export type 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" -; - -export type FriendRequestStatus = 0 | "NONE" - | 1 | "AVAILABLE" - | 2 | "ALREADY_REQUESTED" - | 3 | "UNAVAILABLE" -; - -export type IdentityProvider = 0 | "UNKNOWN" - | 1 | "LINE" - | 2 | "NAVER_KR" - | 3 | "LINE_PHONE" -; - -export type 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" -; - -export type LN0_X0 = 1 | "USER" - | 2 | "BOT" -; - -export type MIDType = 0 | "USER" - | 1 | "ROOM" - | 2 | "GROUP" - | 3 | "SQUARE" - | 4 | "SQUARE_CHAT" - | 5 | "SQUARE_MEMBER" - | 6 | "BOT" - | 7 | "SQUARE_THREAD" -; - -export type NZ0_B0 = 0 | "PAY" - | 1 | "POI" - | 2 | "FX" - | 3 | "SEC" - | 4 | "BIT" - | 5 | "LIN" - | 6 | "SCO" - | 7 | "POC" -; - -export type NZ0_C0 = 0 | "OK" - | 1 | "MAINTENANCE" - | 2 | "TPS_EXCEEDED" - | 3 | "NOT_FOUND" - | 4 | "BLOCKED" - | 5 | "INTERNAL_ERROR" - | 6 | "WALLET_CMS_MAINTENANCE" -; - -export type NZ0_EnumC12154b1 = 0 | "NORMAL" - | 1 | "CAMERA" -; - -export type NZ0_EnumC12169g1 = 101 | "WALLET" - | 201 | "ASSET" - | 301 | "SHOPPING" -; - -export type NZ0_EnumC12170h = 0 | "HIDE_BADGE" - | 1 | "SHOW_BADGE" -; - -export type NZ0_EnumC12188n = 0 | "OK" - | 1 | "UNAVAILABLE" - | 2 | "DUPLICATAE_REGISTRATION" - | 3 | "INTERNAL_ERROR" -; - -export type NZ0_EnumC12192o0 = 0 | "LV1" - | 1 | "LV2" - | 2 | "LV3" - | 3 | "LV9" -; - -export type NZ0_EnumC12193o1 = 400 | "INVALID_PARAMETER" - | 401 | "AUTHENTICATION_FAILED" - | 500 | "INTERNAL_SERVER_ERROR" - | 503 | "SERVICE_IN_MAINTENANCE_MODE" -; - -export type NZ0_EnumC12195p0 = 1 | "ALIVE" - | 2 | "SUSPENDED" - | 3 | "UNREGISTERED" -; - -export type NZ0_EnumC12197q = 0 | "PREFIX" - | 1 | "SUFFIX" -; - -export type NZ0_EnumC12218x0 = 0 | "NO_CONTENT" - | 1 | "OK" - | 2 | "ERROR" -; - -export type NZ0_I0 = 0 | "A" - | 1 | "B" - | 2 | "C" - | 3 | "D" - | 4 | "UNKNOWN" -; - -export type NZ0_K0 = 0 | "POCKET_MONEY" - | 1 | "REFINANCE" -; - -export type NZ0_N0 = 0 | "COMPACT" - | 1 | "EXPANDED" -; - -export type NZ0_S0 = 0 | "CARD" - | 1 | "ACTION" -; - -export type NZ0_W0 = 0 | "OK" - | 1 | "INTERNAL_ERROR" -; - -export type 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" -; - -export type 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" -; - -export type Ob1_B0 = 0 | "FOREGROUND" - | 1 | "BACKGROUND" -; - -export type Ob1_C1 = 0 | "NORMAL" - | 1 | "BIG" -; - -export type Ob1_D0 = 0 | "PURCHASE_ONLY" - | 1 | "PURCHASE_OR_SUBSCRIPTION" - | 2 | "SUBSCRIPTION_ONLY" -; - -export type Ob1_EnumC12607a1 = 1 | "DEFAULT" - | 2 | "VIEW_VIDEO" -; - -export type Ob1_EnumC12610b1 = 0 | "NONE" - | 2 | "BUDDY" - | 3 | "INSTALL" - | 4 | "MISSION" - | 5 | "MUSTBUY" -; - -export type Ob1_EnumC12631i1 = 0 | "UNKNOWN" - | 1 | "PRODUCT" - | 2 | "USER" - | 3 | "PREMIUM_USER" -; - -export type Ob1_EnumC12638l = 0 | "VALID" - | 1 | "INVALID" -; - -export type Ob1_EnumC12641m = 1 | "PREMIUM" - | 2 | "VERIFIED" - | 3 | "UNVERIFIED" -; - -export type 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" -; - -export type Ob1_EnumC12656r0 = 0 | "OK" - | 1 | "PRODUCT_UNSUPPORTED" - | 2 | "TEXT_NOT_SPECIFIED" - | 3 | "TEXT_STYLE_UNAVAILABLE" - | 4 | "CHARACTER_COUNT_LIMIT_EXCEEDED" - | 5 | "CONTAINS_INVALID_WORD" -; - -export type 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" -; - -export type 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" -; - -export type Ob1_F1 = 1 | "STATIC" - | 2 | "ANIMATION" -; - -export type Ob1_I = 0 | "STATIC" - | 1 | "POPULAR" - | 2 | "NEW_RELEASE" -; - -export type Ob1_J0 = 0 | "ON_SALE" - | 1 | "OUTDATED_VERSION" - | 2 | "NOT_ON_SALE" -; - -export type Ob1_J1 = 0 | "OK" - | 1 | "INVALID_PARAMETER" - | 2 | "NOT_FOUND" - | 3 | "NOT_SUPPORTED" - | 4 | "CONFLICT" - | 5 | "NOT_ELIGIBLE" -; - -export type Ob1_K1 = 0 | "GOOGLE" - | 1 | "APPLE" - | 2 | "WEBSTORE" - | 3 | "LINEMO" - | 4 | "LINE_MUSIC" - | 5 | "LYP" - | 6 | "TW_CHT" - | 7 | "FREEMIUM" -; - -export type 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" -; - -export type Ob1_O0 = 1 | "STICKER" - | 2 | "THEME" - | 3 | "STICON" -; - -export type Ob1_O1 = 0 | "AVAILABLE" - | 1 | "DIFFERENT_STORE" - | 2 | "NOT_STUDENT" - | 3 | "ALREADY_PURCHASED" -; - -export type Ob1_P1 = 1 | "GENERAL" - | 2 | "STUDENT" -; - -export type Ob1_Q1 = 1 | "BASIC" - | 2 | "DELUXE" -; - -export type Ob1_R1 = 1 | "MONTHLY" - | 2 | "YEARLY" -; - -export type Ob1_U1 = 0 | "OK" - | 1 | "UNKNOWN" - | 2 | "NO_SUBSCRIPTION" - | 3 | "EXISTS" - | 4 | "NOT_FOUND" - | 5 | "EXCEEDS_LIMIT" - | 6 | "NOT_AVAILABLE" -; - -export type Ob1_V1 = 1 | "DATE_ASC" - | 2 | "DATE_DESC" -; - -export type Ob1_X1 = 0 | "GENERAL" - | 1 | "CREATORS" - | 2 | "STICON" -; - -export type Ob1_a2 = 0 | "NOT_PURCHASED" - | 1 | "SUBSCRIPTION" - | 2 | "NOT_SUBSCRIBED" - | 3 | "NOT_ACCEPTED" - | 4 | "NOT_PURCHASED_U2I" - | 5 | "BUDDY" -; - -export type Ob1_c2 = 1 | "STATIC" - | 2 | "ANIMATION" -; - -export type 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" -; - -export type P70_g = 1000 | "INVALID_REQUEST" - | 1001 | "RETRY_REQUIRED" -; - -export type PaidCallType = 0 | "OUT" - | 1 | "IN" - | 2 | "TOLLFREE" - | 3 | "RECORD" - | 4 | "AD" - | 5 | "CS" - | 6 | "OA" - | 7 | "OAM" -; - -export type PayloadType = 101 | "PAYLOAD_BUY" - | 111 | "PAYLOAD_CS" - | 121 | "PAYLOAD_BONUS" - | 131 | "PAYLOAD_EVENT" - | 141 | "PAYLOAD_POINT_AUTO_EXCHANGED" - | 151 | "PAYLOAD_POINT_MANUAL_EXCHANGED" -; - -export type Pb1_A0 = 0 | "NORMAL" - | 1 | "VIDEOCAM" - | 2 | "VOIP" - | 3 | "RECORD" -; - -export type Pb1_A3 = 0 | "UNKNOWN" - | 1 | "BACKGROUND_NEW_KEY_CREATED" - | 2 | "BACKGROUND_PERIODICAL_VERIFICATION" - | 3 | "FOREGROUND_NEW_PIN_REGISTERED" - | 4 | "FOREGROUND_VERIFICATION" -; - -export type Pb1_B = 1 | "SIRI" - | 2 | "GOOGLE_ASSISTANT" - | 3 | "OS_SHARE" -; - -export type Pb1_D0 = 0 | "RICH_MENU_ID" - | 1 | "STATUS_BAR" - | 2 | "BUDDY_CAUTION_NOTICE" -; - -export type Pb1_D4 = 1 | "AUDIO" - | 2 | "VIDEO" - | 3 | "FACEPLAY" -; - -export type Pb1_D6 = 0 | "GOOGLE" - | 1 | "BAIDU" - | 2 | "FOURSQUARE" - | 3 | "YAHOOJAPAN" - | 4 | "KINGWAY" -; - -export type Pb1_E7 = 0 | "UNKNOWN" - | 1 | "TALK" - | 2 | "SQUARE" -; - -export type Pb1_EnumC12917a6 = 0 | "UNKNOWN" - | 1 | "APP_FOREGROUND" - | 2 | "PERIODIC" - | 3 | "MANUAL" -; - -export type Pb1_EnumC12926b1 = 0 | "NOT_A_FRIEND" - | 1 | "ALWAYS" -; - -export type 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" -; - -export type Pb1_EnumC12945c6 = 1 | "V1" - | 2 | "V2" -; - -export type Pb1_EnumC12970e3 = 1 | "USER_AGE_CHECKED" - | 2 | "USER_APPROVAL_REQUIRED" -; - -export type Pb1_EnumC12997g2 = 0 | "PROFILE" - | 1 | "FRIENDS" - | 2 | "GROUP" -; - -export type Pb1_EnumC12998g3 = 0 | "UNKNOWN" - | 1 | "WIFI" - | 2 | "CELLULAR_NETWORK" -; - -export type Pb1_EnumC13009h0 = 1 | "NORMAL" - | 2 | "LOW_BATTERY" -; - -export type Pb1_EnumC13010h1 = 1 | "NEW" - | 2 | "PLANET" -; - -export type Pb1_EnumC13015h6 = 0 | "FORWARD" - | 1 | "AUTO_REPLY" - | 2 | "SUBORDINATE" - | 3 | "REPLY" -; - -export type Pb1_EnumC13022i = 0 | "SKIP" - | 1 | "PINCODE" - | 2 | "SECURITY_CENTER" -; - -export type Pb1_EnumC13029i6 = 0 | "ADD" - | 1 | "REMOVE" - | 2 | "MODIFY" -; - -export type Pb1_EnumC13037j0 = 0 | "UNSPECIFIED" - | 1 | "INACTIVE" - | 2 | "ACTIVE" - | 3 | "DELETED" -; - -export type Pb1_EnumC13050k = 0 | "UNKNOWN" - | 1 | "IOS_REDUCED_ACCURACY" - | 2 | "IOS_FULL_ACCURACY" - | 3 | "AOS_PRECISE_LOCATION" - | 4 | "AOS_APPROXIMATE_LOCATION" -; - -export type Pb1_EnumC13082m3 = 0 | "SHOW" - | 1 | "HIDE" -; - -export type Pb1_EnumC13093n0 = 0 | "NONE" - | 1 | "TOP" -; - -export type Pb1_EnumC13127p6 = 0 | "NORMAL" - | 1 | "ALERT_DISABLED" - | 2 | "ALWAYS" -; - -export type 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" -; - -export type Pb1_EnumC13148r0 = 1 | "ALWAYS_HIDDEN" - | 2 | "ALWAYS_SHOWN" - | 3 | "SHOWN_BY_CONDITION" -; - -export type Pb1_EnumC13151r3 = 0 | "ONEWAY" - | 1 | "BOTH" - | 2 | "NOT_REGISTERED" -; - -export type Pb1_EnumC13162s0 = 1 | "NOT_SUSPICIOUS" - | 2 | "SUSPICIOUS_00" - | 3 | "SUSPICIOUS_01" -; - -export type Pb1_EnumC13196u6 = 0 | "COIN" - | 1 | "CREDIT" - | 2 | "MONTHLY" - | 3 | "OAM" -; - -export type 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" -; - -export type Pb1_EnumC13221w3 = 0 | "UNKNOWN" - | 1 | "EUROPEAN_ECONOMIC_AREA" -; - -export type Pb1_EnumC13222w4 = 1 | "OBS_VIDEO" - | 2 | "OBS_GENERAL" - | 3 | "OBS_RINGBACK_TONE" -; - -export type Pb1_EnumC13237x5 = 1 | "AUDIO" - | 2 | "VIDEO" - | 3 | "LIVE" - | 4 | "PHOTOBOOTH" -; - -export type Pb1_EnumC13238x6 = 0 | "NOT_SPECIFIED" - | 1 | "VALID" - | 2 | "VERIFICATION_REQUIRED" - | 3 | "NOT_PERMITTED" - | 4 | "LIMIT_EXCEEDED" - | 5 | "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED" -; - -export type Pb1_EnumC13251y5 = 1 | "STANDARD" - | 2 | "CONSTELLA" -; - -export type Pb1_EnumC13252y6 = 0 | "ALL" - | 1 | "PROFILE" - | 2 | "SETTINGS" - | 3 | "CONFIGURATIONS" - | 4 | "CONTACT" - | 5 | "GROUP" - | 6 | "E2EE" - | 7 | "MESSAGE" -; - -export type Pb1_EnumC13260z0 = 0 | "ON_AIR" - | 1 | "LIVE" - | 2 | "GLP" -; - -export type Pb1_EnumC13267z7 = 1 | "NOTIFICATION_SETTING" - | 255 | "ALL" -; - -export type Pb1_F0 = 0 | "NA" - | 1 | "FRIEND_VIEW" - | 2 | "OFFICIAL_ACCOUNT_VIEW" -; - -export type Pb1_F4 = 1 | "INCOMING" - | 2 | "OUTGOING" -; - -export type Pb1_F5 = 0 | "UNKNOWN" - | 1 | "SUCCESS" - | 2 | "REQUIRE_SERVER_SIDE_EMAIL" - | 3 | "REQUIRE_CLIENT_SIDE_EMAIL" -; - -export type Pb1_F6 = 0 | "JBU" - | 1 | "LIP" -; - -export type Pb1_G3 = 1 | "PROMOTION_FRIENDS_INVITE" - | 2 | "CAPABILITY_SERVER_SIDE_SMS" - | 3 | "LINE_CLIENT_ANALYTICS_CONFIGURATION" -; - -export type Pb1_G4 = 1 | "TIMELINE" - | 2 | "NEARBY" - | 3 | "SQUARE" -; - -export type Pb1_G6 = 2 | "NICE" - | 3 | "LOVE" - | 4 | "FUN" - | 5 | "AMAZING" - | 6 | "SAD" - | 7 | "OMG" -; - -export type Pb1_H6 = 0 | "PUBLIC" - | 1 | "PRIVATE" -; - -export type Pb1_I6 = 0 | "NEVER_SHOW" - | 1 | "ONE_WAY" - | 2 | "MUTUAL" -; - -export type Pb1_J4 = 0 | "OTHER" - | 1 | "INITIALIZATION" - | 2 | "PERIODIC_SYNC" - | 3 | "MANUAL_SYNC" - | 4 | "LOCAL_DB_CORRUPTED" -; - -export type Pb1_K2 = 1 | "CHANNEL_INFO" - | 2 | "CHANNEL_TOKEN" - | 4 | "COMMON_DOMAIN" - | 255 | "ALL" -; - -export type 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" -; - -export type Pb1_L2 = 0 | "SYNC" - | 1 | "REMOVE" - | 2 | "REMOVE_ALL" -; - -export type 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" -; - -export type Pb1_M6 = 0 | "OWNER" - | 1 | "FRIEND" -; - -export type Pb1_N6 = 1 | "NFT" - | 2 | "AVATAR" - | 3 | "SNOW" - | 4 | "ARCZ" - | 5 | "FRENZ" -; - -export type Pb1_O2 = 1 | "NAME" - | 2 | "PICTURE_STATUS" - | 4 | "PREVENTED_JOIN_BY_TICKET" - | 8 | "NOTIFICATION_SETTING" - | 16 | "INVITATION_TICKET" - | 32 | "FAVORITE_TIMESTAMP" - | 64 | "CHAT_TYPE" -; - -export type Pb1_O6 = 1 | "DEFAULT" - | 2 | "MULTI_PROFILE" -; - -export type Pb1_P6 = 0 | "HIDDEN" - | 1000 | "PUBLIC" -; - -export type Pb1_Q2 = 0 | "BACKGROUND" - | 1 | "KEYWORD" - | 2 | "CONTENT_METADATA_TAG_BASED" -; - -export type 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" -; - -export type Pb1_S7 = 1 | "NONE" - | 2 | "ALL" -; - -export type 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" -; - -export type Pb1_T7 = 0 | "SYNC" - | 1 | "REPORT" -; - -export type Pb1_V7 = 0 | "UNSPECIFIED" - | 1 | "UNKNOWN" - | 2 | "INITIALIZATION" - | 3 | "OPERATION" - | 4 | "FULL_SYNC" - | 5 | "AUTO_REPAIR" - | 6 | "MANUAL_REPAIR" - | 7 | "INTERNAL" - | 8 | "USER_INITIATED" -; - -export type Pb1_W2 = 0 | "ANYONE_IN_CHAT" - | 1 | "CREATOR_ONLY" - | 2 | "NO_ONE" -; - -export type 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" -; - -export type Pb1_X1 = 0 | "MESSAGE" - | 1 | "MESSAGE_NOTIFICATION" - | 2 | "NOTIFICATION_CENTER" -; - -export type Pb1_X2 = 0 | "MESSAGE" - | 1 | "NOTE" - | 2 | "CHANNEL" -; - -export type Pb1_Z2 = 0 | "GROUP" - | 1 | "ROOM" - | 2 | "PEER" -; - -export type Pb1_gd = 1 | "OVER" - | 2 | "UNDER" - | 3 | "UNDEFINED" -; - -export type Pb1_od = 0 | "UNKNOWN" - | 1 | "LOCATION" -; - -export type 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" -; - -export type Q70_q = 0 | "UNKNOWN" - | 1 | "FACEBOOK" - | 2 | "APPLE" - | 3 | "GOOGLE" -; - -export type Q70_r = 0 | "INTERNAL_ERROR" - | 1 | "ILLEGAL_ARGUMENT" - | 2 | "VERIFICATION_FAILED" - | 4 | "RETRY_LATER" - | 5 | "HUMAN_VERIFICATION_REQUIRED" - | 101 | "APP_UPGRADE_REQUIRED" -; - -export type Qj_EnumC13584a = 0 | "NOT_DETERMINED" - | 1 | "RESTRICTED" - | 2 | "DENIED" - | 3 | "AUTHORIZED" -; - -export type Qj_EnumC13585b = 1 | "WHITE" - | 2 | "BLACK" -; - -export type Qj_EnumC13588e = 1 | "LIGHT" - | 2 | "DARK" -; - -export type 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" -; - -export type 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" -; - -export type 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" -; - -export type Qj_EnumC13605w = 1 | "ALLOW_DIRECT_LINK" - | 2 | "ALLOW_DIRECT_LINK_V2" -; - -export type Qj_EnumC13606x = 1 | "LIGHT" - | 2 | "LIGHT_TRANSLUCENT" - | 3 | "DARK_TRANSLUCENT" - | 4 | "LIGHT_ICON" - | 5 | "DARK_ICON" -; - -export type Qj_a0 = 1 | "CONCAT" - | 2 | "REPLACE" -; - -export type Qj_e0 = 0 | "SUCCESS" - | 1 | "FAILURE" - | 2 | "CANCEL" -; - -export type Qj_h0 = 1 | "RIGHT" - | 2 | "LEFT" -; - -export type Qj_i0 = 1 | "FULL" - | 2 | "TALL" - | 3 | "COMPACT" -; - -export type 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" -; - -export type RegistrationType = 0 | "PHONE" - | 1 | "EMAIL_WAP" - | 2305 | "FACEBOOK" - | 2306 | "SINA" - | 2307 | "RENREN" - | 2308 | "FEIXIN" - | 2309 | "APPLE" - | 2310 | "YAHOOJAPAN" - | 2311 | "GOOGLE" -; - -export type ReportType = 1 | "ADVERTISING" - | 2 | "GENDER_HARASSMENT" - | 3 | "HARASSMENT" - | 4 | "OTHER" - | 5 | "IRRELEVANT_CONTENT" - | 6 | "IMPERSONATION" - | 7 | "SCAM" -; - -export type S70_a = 0 | "INTERNAL_ERROR" - | 1 | "ILLEGAL_ARGUMENT" - | 2 | "VERIFICATION_FAILED" - | 3 | "RETRY_LATER" - | 100 | "INVALID_CONTEXT" - | 101 | "APP_UPGRADE_REQUIRED" -; - -export type 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" -; - -export type SnsIdType = 1 | "FACEBOOK" - | 2 | "SINA" - | 3 | "RENREN" - | 4 | "FEIXIN" - | 5 | "BBM" - | 6 | "APPLE" - | 7 | "YAHOOJAPAN" - | 8 | "GOOGLE" -; - -export type SpammerReason = 0 | "OTHER" - | 1 | "ADVERTISING" - | 2 | "GENDER_HARASSMENT" - | 3 | "HARASSMENT" - | 4 | "IMPERSONATION" - | 5 | "SCAM" -; - -export type 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" -; - -export type 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" -; - -export type 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" -; - -export type SquareChatType = 1 | "OPEN" - | 2 | "SECRET" - | 3 | "ONE_ON_ONE" - | 4 | "SQUARE_DEFAULT" -; - -export type SquareMemberAttribute = 1 | "DISPLAY_NAME" - | 2 | "PROFILE_IMAGE" - | 3 | "ABLE_TO_RECEIVE_MESSAGE" - | 5 | "MEMBERSHIP_STATE" - | 6 | "ROLE" - | 7 | "PREFERENCE" -; - -export type SquareMembershipState = 1 | "JOIN_REQUESTED" - | 2 | "JOINED" - | 3 | "REJECTED" - | 4 | "LEFT" - | 5 | "KICK_OUT" - | 6 | "BANNED" - | 7 | "DELETED" - | 8 | "JOIN_REQUEST_WITHDREW" -; - -export type StickerResourceType = 1 | "STATIC" - | 2 | "ANIMATION" - | 3 | "SOUND" - | 4 | "ANIMATION_SOUND" - | 5 | "POPUP" - | 6 | "POPUP_SOUND" - | 7 | "NAME_TEXT" - | 8 | "PER_STICKER_TEXT" -; - -export type SyncCategory = 0 | "PROFILE" - | 1 | "SETTINGS" - | 2 | "OPS" - | 3 | "CONTACT" - | 4 | "RECOMMEND" - | 5 | "BLOCK" - | 6 | "GROUP" - | 7 | "ROOM" - | 8 | "NOTIFICATION" - | 9 | "ADDRESS_BOOK" -; - -export type 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" -; - -export type T70_EnumC14390b = 0 | "UNKNOWN" - | 1 | "PHONE_NUMBER" - | 2 | "EMAIL" -; - -export type T70_EnumC14392c = 0 | "UNKNOWN" - | 1 | "SKIP" - | 2 | "PASSWORD" - | 3 | "WEB_BASED" - | 4 | "EMAIL_BASED" - | 11 | "NONE" -; - -export type 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" -; - -export type T70_K = 0 | "UNKNOWN" - | 1 | "SMS" - | 2 | "IVR" - | 3 | "SMSPULL" -; - -export type T70_L = 0 | "PREMIUM_TYPE_UNSPECIFIED" - | 1 | "PREMIUM_TYPE_LYP" - | 2 | "PREMIUM_TYPE_LINE" -; - -export type T70_Z0 = 1 | "PHONE_VERIF" - | 2 | "EAP_VERIF" -; - -export type T70_e1 = 0 | "UNKNOWN" - | 1 | "SKIP" - | 2 | "WEB_BASED" -; - -export type T70_j1 = 0 | "UNKNOWN" - | 1 | "FACEBOOK" - | 2 | "APPLE" - | 3 | "GOOGLE" -; - -export type U70_c = 0 | "INTERNAL_ERROR" - | 1 | "FORBIDDEN" - | 100 | "INVALID_CONTEXT" -; - -export type Uf_EnumC14873o = 1 | "ANDROID" - | 2 | "IOS" -; - -export type VR0_l = 1 | "DEFAULT" - | 2 | "UEN" -; - -export type VerificationMethod = 0 | "NO_AVAILABLE" - | 1 | "PIN_VIA_SMS" - | 2 | "CALLERID_INDIGO" - | 4 | "PIN_VIA_TTS" - | 10 | "SKIP" -; - -export type VerificationResult = 0 | "FAILED" - | 1 | "OK_NOT_REGISTERED_YET" - | 2 | "OK_REGISTERED_WITH_SAME_DEVICE" - | 3 | "OK_REGISTERED_WITH_ANOTHER_DEVICE" -; - -export type WR0_a = 1 | "FREE" - | 2 | "PREMIUM" -; - -export type a80_EnumC16644b = 0 | "UNKNOWN" - | 1 | "FACEBOOK" - | 2 | "APPLE" - | 3 | "GOOGLE" -; - -export type FetchDirection = 1 | "FORWARD" - | 2 | "BACKWARD" -; - -export type 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" -; - -export type LiveTalkReportType = 1 | "ADVERTISING" - | 2 | "GENDER_HARASSMENT" - | 3 | "HARASSMENT" - | 4 | "IRRELEVANT_CONTENT" - | 5 | "OTHER" - | 6 | "IMPERSONATION" - | 7 | "SCAM" -; - -export type MessageSummaryReportType = 1 | "LEGAL_VIOLATION" - | 2 | "HARASSMENT" - | 3 | "PERSONAL_IDENTIFIER" - | 4 | "FALSE_INFORMATION" - | 5 | "GENDER_HARASSMENT" - | 6 | "OTHER" -; - -export type NotificationPostType = 2 | "POST_MENTION" - | 3 | "POST_LIKE" - | 4 | "POST_COMMENT" - | 5 | "POST_COMMENT_MENTION" - | 6 | "POST_COMMENT_LIKE" - | 7 | "POST_RELAY_JOIN" -; - -export type SquareEventStatus = 1 | "NORMAL" - | 2 | "ALERT_DISABLED" -; - -export type 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" -; - -export type AdScreen = 1 | "CHATROOM" - | 2 | "THREAD_SPACE" - | 3 | "YOUR_THREADS" - | 4 | "NOTE_LIST" - | 5 | "NOTE_END" - | 6 | "WEB_MAIN" - | 7 | "WEB_SEARCH_RESULT" -; - -export type BooleanState = 0 | "NONE" - | 1 | "OFF" - | 2 | "ON" -; - -export type ChatroomPopupType = 1 | "IMG_TEXT" - | 2 | "TEXT_ONLY" - | 3 | "IMG_ONLY" -; - -export type ContentsAttribute = 1 | "NONE" - | 2 | "CONTENTS_HIDDEN" -; - -export type FetchType = 1 | "DEFAULT" - | 2 | "PREFETCH_BY_SERVER" - | 3 | "PREFETCH_BY_CLIENT" -; - -export type LiveTalkAttribute = 1 | "TITLE" - | 2 | "ALLOW_REQUEST_TO_SPEAK" -; - -export type LiveTalkRole = 1 | "HOST" - | 2 | "CO_HOST" - | 3 | "GUEST" -; - -export type LiveTalkSpeakerSetting = 1 | "APPROVAL" - | 2 | "ALL" -; - -export type LiveTalkType = 1 | "PUBLIC" - | 2 | "PRIVATE" -; - -export type MessageReactionType = 0 | "ALL" - | 1 | "UNDO" - | 2 | "NICE" - | 3 | "LOVE" - | 4 | "FUN" - | 5 | "AMAZING" - | 6 | "SAD" - | 7 | "OMG" -; - -export type NotifiedMessageType = 1 | "MENTION" - | 2 | "REPLY" -; - -export type PopupAttribute = 1 | "NAME" - | 2 | "ACTIVATED" - | 3 | "STARTS_AT" - | 4 | "ENDS_AT" - | 5 | "CONTENT" -; - -export type PopupType = 1 | "MAIN" - | 2 | "CHATROOM" -; - -export type SquareChatAttribute = 2 | "NAME" - | 3 | "SQUARE_CHAT_IMAGE" - | 4 | "STATE" - | 5 | "TYPE" - | 6 | "MAX_MEMBER_COUNT" - | 7 | "MESSAGE_VISIBILITY" - | 8 | "ABLE_TO_SEARCH_MESSAGE" -; - -export type SquareChatFeatureControlState = 1 | "DISABLED" - | 2 | "ENABLED" -; - -export type SquareChatMemberAttribute = 4 | "MEMBERSHIP_STATE" - | 6 | "NOTIFICATION_MESSAGE" - | 7 | "NOTIFICATION_NEW_MEMBER" - | 8 | "LEFT_BY_KICK_MESSAGE_LOCAL_ID" - | 9 | "MESSAGE_LOCAL_ID_WHEN_BLOCK" -; - -export type SquareChatMembershipState = 1 | "JOINED" - | 2 | "LEFT" -; - -export type SquareChatState = 0 | "ALIVE" - | 1 | "DELETED" - | 2 | "SUSPENDED" -; - -export type SquareEmblem = 1 | "SUPER" - | 2 | "OFFICIAL" -; - -export type 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" -; - -export type SquareFeatureControlState = 1 | "DISABLED" - | 2 | "ENABLED" -; - -export type 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" -; - -export type SquareJoinMethodType = 0 | "NONE" - | 1 | "APPROVAL" - | 2 | "CODE" -; - -export type SquareMemberRelationState = 1 | "NONE" - | 2 | "BLOCKED" -; - -export type SquareMemberRole = 1 | "ADMIN" - | 2 | "CO_ADMIN" - | 10 | "MEMBER" -; - -export type SquareMessageState = 1 | "SENT" - | 2 | "DELETED" - | 3 | "FORBIDDEN" - | 4 | "UNSENT" -; - -export type SquareMetadataAttribute = 1 | "EXCLUDED" - | 2 | "NO_AD" -; - -export type SquarePreferenceAttribute = 1 | "FAVORITE" - | 2 | "NOTI_FOR_NEW_JOIN_REQUEST" -; - -export type SquareProviderType = 1 | "UNKNOWN" - | 2 | "YOUTUBE" - | 3 | "OA_FANSPACE" -; - -export type SquareState = 0 | "ALIVE" - | 1 | "DELETED" - | 2 | "SUSPENDED" -; - -export type SquareThreadAttribute = 1 | "STATE" - | 2 | "EXPIRES_AT" - | 3 | "READ_ONLY_AT" -; - -export type SquareThreadMembershipState = 1 | "JOINED" - | 2 | "LEFT" -; - -export type SquareThreadState = 1 | "ALIVE" - | 2 | "DELETED" -; - -export type SquareType = 0 | "CLOSED" - | 1 | "OPEN" -; - -export type TargetChatType = 0 | "ALL" - | 1 | "MIDS" - | 2 | "CATEGORIES" - | 3 | "CHANNEL_ID" -; - -export type TargetUserType = 0 | "ALL" - | 1 | "MIDS" -; - -export type do0_EnumC23139B = 1 | "CLOUD" - | 2 | "BLE" - | 3 | "BEACON" -; - -export type do0_EnumC23147e = 0 | "SUCCESS" - | 1 | "UNKNOWN_ERROR" - | 2 | "BLUETOOTH_NOT_AVAILABLE" - | 3 | "CONNECTION_TIMEOUT" - | 4 | "CONNECTION_ERROR" - | 5 | "CONNECTION_IN_PROGRESS" -; - -export type do0_EnumC23148f = 0 | "ONETIME" - | 1 | "AUTOMATIC" - | 2 | "BEACON" -; - -export type 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" -; - -export type do0_M = 0 | "INTERNAL_SERVER_ERROR" - | 1 | "UNAUTHORIZED" - | 2 | "INVALID_REQUEST" - | 3 | "INVALID_STATE" - | 4096 | "DEVICE_LIMIT_EXCEEDED" - | 4097 | "UNSUPPORTED_REGION" -; - -export type fN0_EnumC24466B = 0 | "LINE_PREMIUM" - | 1 | "LYP_PREMIUM" -; - -export type fN0_EnumC24467C = 1 | "LINE" - | 2 | "YAHOO_JAPAN" -; - -export type fN0_EnumC24469a = 1 | "OK" - | 2 | "NOT_SUPPORTED" - | 3 | "UNDEFINED" - | 4 | "NOT_ENOUGH_TICKETS" - | 5 | "NOT_FRIENDS" - | 6 | "NO_AGREEMENT" -; - -export type fN0_F = 1 | "OK" - | 2 | "NOT_SUPPORTED" - | 3 | "UNDEFINED" - | 4 | "CONFLICT" - | 5 | "NOT_AVAILABLE" - | 6 | "INVALID_INVITATION" - | 7 | "IN_PAYMENT_FAILURE_STATE" -; - -export type fN0_G = 1 | "APPLE" - | 2 | "GOOGLE" -; - -export type fN0_H = 1 | "INACTIVE" - | 2 | "ACTIVE_FINITE" - | 3 | "ACTIVE_INFINITE" -; - -export type fN0_o = 1 | "AVAILABLE" - | 2 | "ALREADY_SUBSCRIBED" -; - -export type 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" -; - -export type fN0_q = 0 | "UNKNOWN" - | 1 | "NONE" - | 16641 | "ILLEGAL_ARGUMENT" - | 16642 | "NOT_FOUND" - | 16643 | "NOT_AVAILABLE" - | 16644 | "INTERNAL_SERVER_ERROR" - | 16645 | "AUTHENTICATION_FAILED" -; - -export type g80_EnumC24993a = 0 | "INTERNAL_ERROR" - | 1 | "ILLEGAL_ARGUMENT" - | 2 | "INVALID_CONTEXT" - | 3 | "TOO_MANY_REQUESTS" -; - -export type h80_EnumC25645e = 0 | "INTERNAL_ERROR" - | 1 | "ILLEGAL_ARGUMENT" - | 2 | "NOT_FOUND" - | 3 | "RETRY_LATER" - | 100 | "INVALID_CONTEXT" - | 101 | "NOT_SUPPORTED" -; - -export type I80_EnumC26392b = 0 | "UNKNOWN" - | 1 | "SKIP" - | 2 | "PASSWORD" - | 4 | "EMAIL_BASED" - | 11 | "NONE" -; - -export type I80_EnumC26394c = 0 | "PHONE_NUMBER" - | 1 | "APPLE" - | 2 | "GOOGLE" -; - -export type 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" -; - -export type I80_EnumC26425y = 0 | "UNKNOWN" - | 1 | "SMS" - | 2 | "IVR" -; - -export type j80_EnumC27228a = 1 | "AUTHENTICATION_FAILED" - | 2 | "INVALID_STATE" - | 3 | "NOT_AUTHORIZED_DEVICE" - | 4 | "MUST_REFRESH_V3_TOKEN" -; - -export type jO0_EnumC27533B = 1 | "PAYMENT_APPLE" - | 2 | "PAYMENT_GOOGLE" -; - -export type jO0_EnumC27535b = 0 | "ILLEGAL_ARGUMENT" - | 1 | "AUTHENTICATION_FAILED" - | 20 | "INTERNAL_ERROR" - | 29 | "MESSAGE_DEFINED_ERROR" - | 33 | "MAINTENANCE_ERROR" -; - -export type jO0_EnumC27559z = 0 | "PAYMENT_PG_NONE" - | 1 | "PAYMENT_PG_AU" - | 2 | "PAYMENT_PG_AL" -; - -export type jf_EnumC27712a = 1 | "NONE" - | 2 | "DOES_NOT_RESPOND" - | 3 | "RESPOND_MANUALLY" - | 4 | "RESPOND_AUTOMATICALLY" -; - -export type jf_EnumC27717f = 0 | "UNKNOWN" - | 1 | "BAD_REQUEST" - | 2 | "NOT_FOUND" - | 3 | "FORBIDDEN" - | 4 | "INTERNAL_SERVER_ERROR" -; - -export type kf_EnumC28766a = 0 | "ILLEGAL_ARGUMENT" - | 1 | "INTERNAL_ERROR" - | 2 | "UNAUTHORIZED" -; - -export type kf_o = 0 | "ANDROID" - | 1 | "IOS" -; - -export type kf_p = 0 | "RICHMENU" - | 1 | "TALK_ROOM" -; - -export type kf_r = 0 | "WEB" - | 1 | "POSTBACK" - | 2 | "SEND_MESSAGE" -; - -export type kf_u = 0 | "CLICK" - | 1 | "IMPRESSION" -; - -export type kf_x = 0 | "UNKNOWN" - | 1 | "PROFILE" - | 2 | "TALK_LIST" - | 3 | "OA_CALL" -; - -export type 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" -; - -export type 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" -; - -export type og_E = 1 | "RUNNING" - | 2 | "CLOSING" - | 3 | "CLOSED" - | 4 | "SUSPEND" -; - -export type og_EnumC32661b = 0 | "INACTIVE" - | 1 | "ACTIVE" -; - -export type og_EnumC32663d = 0 | "PREMIUM" - | 1 | "VERIFIED" - | 2 | "UNVERIFIED" -; - -export type og_EnumC32671l = 0 | "ILLEGAL_ARGUMENT" - | 1 | "AUTHENTICATION_FAILED" - | 3 | "INVALID_STATE" - | 5 | "NOT_FOUND" - | 20 | "INTERNAL_ERROR" - | 33 | "MAINTENANCE_ERROR" -; - -export type og_G = 0 | "FREE" - | 1 | "MONTHLY" - | 2 | "PER_PAYMENT" -; - -export type 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" -; - -export type 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" -; - -export type qm_EnumC34112e = 1 | "BUTTON" - | 2 | "ENTRY_SELECTED" - | 3 | "BROADCAST_ENTER" - | 4 | "BROADCAST_LEAVE" - | 5 | "BROADCAST_STAY" -; - -export type qm_s = 0 | "ILLEGAL_ARGUMENT" - | 5 | "NOT_FOUND" - | 20 | "INTERNAL_ERROR" -; - -export type r80_EnumC34361a = 1 | "PERSONAL_ACCOUNT" - | 2 | "CURRENT_ACCOUNT" -; - -export type r80_EnumC34362b = 1 | "BANK_ALL" - | 2 | "BANK_DEPOSIT" - | 3 | "BANK_WITHDRAWAL" -; - -export type 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" -; - -export type r80_EnumC34367g = 0 | "AVAILABLE" - | 1 | "DIFFERENT_REGION" - | 2 | "UNSUPPORTED_DEVICE" - | 3 | "PHONE_NUMBER_UNREGISTERED" - | 4 | "UNAVAILABLE_FROM_LINE_PAY" - | 5 | "INVALID_USER" -; - -export type r80_EnumC34368h = 1 | "CHARGE" - | 2 | "WITHDRAW" -; - -export type r80_EnumC34370j = 0 | "UNKNOWN" - | 1 | "VISA" - | 2 | "MASTER" - | 3 | "AMEX" - | 4 | "DINERS" - | 5 | "JCB" -; - -export type r80_EnumC34371k = 0 | "NULL" - | 1 | "ATM" - | 2 | "CONVENIENCE_STORE" -; - -export type r80_EnumC34372l = 1 | "SCALE2" - | 2 | "SCALE3" - | 3 | "HDPI" - | 4 | "XHDPI" -; - -export type 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" -; - -export type r80_EnumC34376p = 1 | "TRANSFER" - | 2 | "TRANSFER_REQUEST" - | 3 | "DUTCH" - | 4 | "INVITATION" -; - -export type r80_EnumC34377q = 0 | "NULL" - | 1 | "UNIDEN" - | 2 | "WAIT" - | 3 | "IDENTIFIED" - | 4 | "CHECKING" -; - -export type r80_EnumC34378s = 0 | "UNKNOWN" - | 1 | "MORE_TAB" - | 2 | "CHAT_ROOM_PLUS_MENU" - | 3 | "TRANSFER" - | 4 | "PAYMENT" - | 5 | "LINECARD" - | 6 | "INVITATION" -; - -export type 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" -; - -export type r80_g0 = 0 | "NULL" - | 1 | "ATM" - | 2 | "CONVENIENCE_STORE" - | 3 | "ALL" -; - -export type r80_h0 = 1 | "READY" - | 2 | "COMPLETE" - | 3 | "WAIT" - | 4 | "CANCEL" - | 5 | "FAIL" - | 6 | "EXPIRE" - | 7 | "ALL" -; - -export type r80_i0 = 1 | "TRANSFER_ACCEPTABLE" - | 2 | "REMOVE_INVOICE" - | 3 | "INVOICE_CODE" - | 4 | "SHOW_ALWAYS_INVOICE" -; - -export type 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" -; - -export type r80_n0 = 1 | "LINE" - | 2 | "LINEPAY" -; - -export type r80_r = 1 | "CITIZEN_ID" - | 2 | "PASSPORT" - | 3 | "WORK_PERMIT" - | 4 | "ALIEN_CARD" -; - -export type t80_h = 1 | "CLIENT" - | 2 | "SERVER" -; - -export type t80_i = 1 | "APP_INSTANCE_LOCAL" - | 2 | "APP_TYPE_LOCAL" - | 3 | "GLOBAL" -; - -export type 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" -; - -export type t80_r = 1 | "USER_ACTION" - | 2 | "DATA_OUTDATED" - | 3 | "APP_MIGRATION" - | 100 | "OTHER" -; - -export type vh_EnumC37632c = 1 | "ACTIVE" - | 2 | "INACTIVE" -; - -export type vh_m = 1 | "SAFE" - | 2 | "NOT_SAFE" -; - -export type 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" -; - -export type zR0_EnumC40578c = 0 | "FOREGROUND" - | 1 | "BACKGROUND" -; - -export type zR0_EnumC40579d = 1 | "STICKER" - | 2 | "THEME" - | 3 | "STICON" -; - -export type zR0_h = 0 | "NORMAL" - | 1 | "BIG" -; - -export type 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" -; - -export type zf_EnumC40713a = 1 | "PERSONAL" - | 2 | "ROOM" - | 3 | "GROUP" - | 4 | "SQUARE_CHAT" -; - -export type zf_EnumC40715c = 1 | "REGULAR" - | 2 | "PRIORITY" - | 3 | "MORE" -; - -export type zf_EnumC40716d = 1 | "INVALID_REQUEST" - | 2 | "UNAUTHORIZED" - | 100 | "SERVER_ERROR" -; +export type AR0_g = + | 16641 + | "ILLEGAL_ARGUMENT" + | 16642 + | "MAJOR_VERSION_NOT_SUPPORTED" + | 16897 + | "AUTHENTICATION_FAILED" + | 20737 + | "INTERNAL_SERVER_ERROR" + | 20739 + | "SERVICE_UNAVAILABLE"; + +export type AR0_q = 0 | "NOT_PURCHASED" | 1 | "SUBSCRIPTION"; + +export type AccountMigrationPincodeType = + | 0 + | "NOT_APPLICABLE" + | 1 + | "NOT_SET" + | 2 + | "SET" + | 3 + | "NEED_ENFORCED_INPUT"; + +export type 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"; + +export type BotType = + | 0 + | "RESERVED" + | 1 + | "OFFICIAL" + | 2 + | "LINE_AT_0" + | 3 + | "LINE_AT"; + +export type 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"; + +export type 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"; + +export type ContactAttribute = + | 1 + | "CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL" + | 2 + | "CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL" + | 16 + | "CONTACT_ATTRIBUTE_CAPABLE_MY_HOME" + | 32 + | "CONTACT_ATTRIBUTE_CAPABLE_BUDDY"; + +export type 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"; + +export type ContactStatus = + | 0 + | "UNSPECIFIED" + | 1 + | "FRIEND" + | 2 + | "FRIEND_BLOCKED" + | 3 + | "RECOMMEND" + | 4 + | "RECOMMEND_BLOCKED" + | 5 + | "DELETED" + | 6 + | "DELETED_BLOCKED"; + +export type 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"; + +export type 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"; + +export type Eg_EnumC8927a = 1 | "NEW" | 2 | "UPDATE" | 3 | "EVENT"; + +export type EmailConfirmationStatus = + | 0 + | "NOT_SPECIFIED" + | 1 + | "NOT_YET" + | 3 + | "DONE" + | 4 + | "NEED_ENFORCED_INPUT"; + +export type 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"; + +export type 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"; + +export type FriendRequestStatus = + | 0 + | "NONE" + | 1 + | "AVAILABLE" + | 2 + | "ALREADY_REQUESTED" + | 3 + | "UNAVAILABLE"; + +export type IdentityProvider = + | 0 + | "UNKNOWN" + | 1 + | "LINE" + | 2 + | "NAVER_KR" + | 3 + | "LINE_PHONE"; + +export type 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"; + +export type LN0_X0 = 1 | "USER" | 2 | "BOT"; + +export type MIDType = + | 0 + | "USER" + | 1 + | "ROOM" + | 2 + | "GROUP" + | 3 + | "SQUARE" + | 4 + | "SQUARE_CHAT" + | 5 + | "SQUARE_MEMBER" + | 6 + | "BOT" + | 7 + | "SQUARE_THREAD"; + +export type NZ0_B0 = + | 0 + | "PAY" + | 1 + | "POI" + | 2 + | "FX" + | 3 + | "SEC" + | 4 + | "BIT" + | 5 + | "LIN" + | 6 + | "SCO" + | 7 + | "POC"; + +export type NZ0_C0 = + | 0 + | "OK" + | 1 + | "MAINTENANCE" + | 2 + | "TPS_EXCEEDED" + | 3 + | "NOT_FOUND" + | 4 + | "BLOCKED" + | 5 + | "INTERNAL_ERROR" + | 6 + | "WALLET_CMS_MAINTENANCE"; + +export type NZ0_EnumC12154b1 = 0 | "NORMAL" | 1 | "CAMERA"; + +export type NZ0_EnumC12169g1 = + | 101 + | "WALLET" + | 201 + | "ASSET" + | 301 + | "SHOPPING"; + +export type NZ0_EnumC12170h = 0 | "HIDE_BADGE" | 1 | "SHOW_BADGE"; + +export type NZ0_EnumC12188n = + | 0 + | "OK" + | 1 + | "UNAVAILABLE" + | 2 + | "DUPLICATAE_REGISTRATION" + | 3 + | "INTERNAL_ERROR"; + +export type NZ0_EnumC12192o0 = 0 | "LV1" | 1 | "LV2" | 2 | "LV3" | 3 | "LV9"; + +export type NZ0_EnumC12193o1 = + | 400 + | "INVALID_PARAMETER" + | 401 + | "AUTHENTICATION_FAILED" + | 500 + | "INTERNAL_SERVER_ERROR" + | 503 + | "SERVICE_IN_MAINTENANCE_MODE"; + +export type NZ0_EnumC12195p0 = + | 1 + | "ALIVE" + | 2 + | "SUSPENDED" + | 3 + | "UNREGISTERED"; + +export type NZ0_EnumC12197q = 0 | "PREFIX" | 1 | "SUFFIX"; + +export type NZ0_EnumC12218x0 = 0 | "NO_CONTENT" | 1 | "OK" | 2 | "ERROR"; + +export type NZ0_I0 = 0 | "A" | 1 | "B" | 2 | "C" | 3 | "D" | 4 | "UNKNOWN"; + +export type NZ0_K0 = 0 | "POCKET_MONEY" | 1 | "REFINANCE"; + +export type NZ0_N0 = 0 | "COMPACT" | 1 | "EXPANDED"; + +export type NZ0_S0 = 0 | "CARD" | 1 | "ACTION"; + +export type NZ0_W0 = 0 | "OK" | 1 | "INTERNAL_ERROR"; + +export type 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"; + +export type 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"; + +export type Ob1_B0 = 0 | "FOREGROUND" | 1 | "BACKGROUND"; + +export type Ob1_C1 = 0 | "NORMAL" | 1 | "BIG"; + +export type Ob1_D0 = + | 0 + | "PURCHASE_ONLY" + | 1 + | "PURCHASE_OR_SUBSCRIPTION" + | 2 + | "SUBSCRIPTION_ONLY"; + +export type Ob1_EnumC12607a1 = 1 | "DEFAULT" | 2 | "VIEW_VIDEO"; + +export type Ob1_EnumC12610b1 = + | 0 + | "NONE" + | 2 + | "BUDDY" + | 3 + | "INSTALL" + | 4 + | "MISSION" + | 5 + | "MUSTBUY"; + +export type Ob1_EnumC12631i1 = + | 0 + | "UNKNOWN" + | 1 + | "PRODUCT" + | 2 + | "USER" + | 3 + | "PREMIUM_USER"; + +export type Ob1_EnumC12638l = 0 | "VALID" | 1 | "INVALID"; + +export type Ob1_EnumC12641m = 1 | "PREMIUM" | 2 | "VERIFIED" | 3 | "UNVERIFIED"; + +export type 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"; + +export type Ob1_EnumC12656r0 = + | 0 + | "OK" + | 1 + | "PRODUCT_UNSUPPORTED" + | 2 + | "TEXT_NOT_SPECIFIED" + | 3 + | "TEXT_STYLE_UNAVAILABLE" + | 4 + | "CHARACTER_COUNT_LIMIT_EXCEEDED" + | 5 + | "CONTAINS_INVALID_WORD"; + +export type 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"; + +export type 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"; + +export type Ob1_F1 = 1 | "STATIC" | 2 | "ANIMATION"; + +export type Ob1_I = 0 | "STATIC" | 1 | "POPULAR" | 2 | "NEW_RELEASE"; + +export type Ob1_J0 = 0 | "ON_SALE" | 1 | "OUTDATED_VERSION" | 2 | "NOT_ON_SALE"; + +export type Ob1_J1 = + | 0 + | "OK" + | 1 + | "INVALID_PARAMETER" + | 2 + | "NOT_FOUND" + | 3 + | "NOT_SUPPORTED" + | 4 + | "CONFLICT" + | 5 + | "NOT_ELIGIBLE"; + +export type Ob1_K1 = + | 0 + | "GOOGLE" + | 1 + | "APPLE" + | 2 + | "WEBSTORE" + | 3 + | "LINEMO" + | 4 + | "LINE_MUSIC" + | 5 + | "LYP" + | 6 + | "TW_CHT" + | 7 + | "FREEMIUM"; + +export type 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"; + +export type Ob1_O0 = 1 | "STICKER" | 2 | "THEME" | 3 | "STICON"; + +export type Ob1_O1 = + | 0 + | "AVAILABLE" + | 1 + | "DIFFERENT_STORE" + | 2 + | "NOT_STUDENT" + | 3 + | "ALREADY_PURCHASED"; + +export type Ob1_P1 = 1 | "GENERAL" | 2 | "STUDENT"; + +export type Ob1_Q1 = 1 | "BASIC" | 2 | "DELUXE"; + +export type Ob1_R1 = 1 | "MONTHLY" | 2 | "YEARLY"; + +export type Ob1_U1 = + | 0 + | "OK" + | 1 + | "UNKNOWN" + | 2 + | "NO_SUBSCRIPTION" + | 3 + | "EXISTS" + | 4 + | "NOT_FOUND" + | 5 + | "EXCEEDS_LIMIT" + | 6 + | "NOT_AVAILABLE"; + +export type Ob1_V1 = 1 | "DATE_ASC" | 2 | "DATE_DESC"; + +export type Ob1_X1 = 0 | "GENERAL" | 1 | "CREATORS" | 2 | "STICON"; + +export type Ob1_a2 = + | 0 + | "NOT_PURCHASED" + | 1 + | "SUBSCRIPTION" + | 2 + | "NOT_SUBSCRIBED" + | 3 + | "NOT_ACCEPTED" + | 4 + | "NOT_PURCHASED_U2I" + | 5 + | "BUDDY"; + +export type Ob1_c2 = 1 | "STATIC" | 2 | "ANIMATION"; + +export type 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"; + +export type P70_g = 1000 | "INVALID_REQUEST" | 1001 | "RETRY_REQUIRED"; + +export type PaidCallType = + | 0 + | "OUT" + | 1 + | "IN" + | 2 + | "TOLLFREE" + | 3 + | "RECORD" + | 4 + | "AD" + | 5 + | "CS" + | 6 + | "OA" + | 7 + | "OAM"; + +export type PayloadType = + | 101 + | "PAYLOAD_BUY" + | 111 + | "PAYLOAD_CS" + | 121 + | "PAYLOAD_BONUS" + | 131 + | "PAYLOAD_EVENT" + | 141 + | "PAYLOAD_POINT_AUTO_EXCHANGED" + | 151 + | "PAYLOAD_POINT_MANUAL_EXCHANGED"; + +export type Pb1_A0 = 0 | "NORMAL" | 1 | "VIDEOCAM" | 2 | "VOIP" | 3 | "RECORD"; + +export type Pb1_A3 = + | 0 + | "UNKNOWN" + | 1 + | "BACKGROUND_NEW_KEY_CREATED" + | 2 + | "BACKGROUND_PERIODICAL_VERIFICATION" + | 3 + | "FOREGROUND_NEW_PIN_REGISTERED" + | 4 + | "FOREGROUND_VERIFICATION"; + +export type Pb1_B = 1 | "SIRI" | 2 | "GOOGLE_ASSISTANT" | 3 | "OS_SHARE"; + +export type Pb1_D0 = + | 0 + | "RICH_MENU_ID" + | 1 + | "STATUS_BAR" + | 2 + | "BUDDY_CAUTION_NOTICE"; + +export type Pb1_D4 = 1 | "AUDIO" | 2 | "VIDEO" | 3 | "FACEPLAY"; + +export type Pb1_D6 = + | 0 + | "GOOGLE" + | 1 + | "BAIDU" + | 2 + | "FOURSQUARE" + | 3 + | "YAHOOJAPAN" + | 4 + | "KINGWAY"; + +export type Pb1_E7 = 0 | "UNKNOWN" | 1 | "TALK" | 2 | "SQUARE"; + +export type Pb1_EnumC12917a6 = + | 0 + | "UNKNOWN" + | 1 + | "APP_FOREGROUND" + | 2 + | "PERIODIC" + | 3 + | "MANUAL"; + +export type Pb1_EnumC12926b1 = 0 | "NOT_A_FRIEND" | 1 | "ALWAYS"; + +export type 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"; + +export type Pb1_EnumC12945c6 = 1 | "V1" | 2 | "V2"; + +export type Pb1_EnumC12970e3 = + | 1 + | "USER_AGE_CHECKED" + | 2 + | "USER_APPROVAL_REQUIRED"; + +export type Pb1_EnumC12997g2 = 0 | "PROFILE" | 1 | "FRIENDS" | 2 | "GROUP"; + +export type Pb1_EnumC12998g3 = + | 0 + | "UNKNOWN" + | 1 + | "WIFI" + | 2 + | "CELLULAR_NETWORK"; + +export type Pb1_EnumC13009h0 = 1 | "NORMAL" | 2 | "LOW_BATTERY"; + +export type Pb1_EnumC13010h1 = 1 | "NEW" | 2 | "PLANET"; + +export type Pb1_EnumC13015h6 = + | 0 + | "FORWARD" + | 1 + | "AUTO_REPLY" + | 2 + | "SUBORDINATE" + | 3 + | "REPLY"; + +export type Pb1_EnumC13022i = + | 0 + | "SKIP" + | 1 + | "PINCODE" + | 2 + | "SECURITY_CENTER"; + +export type Pb1_EnumC13029i6 = 0 | "ADD" | 1 | "REMOVE" | 2 | "MODIFY"; + +export type Pb1_EnumC13037j0 = + | 0 + | "UNSPECIFIED" + | 1 + | "INACTIVE" + | 2 + | "ACTIVE" + | 3 + | "DELETED"; + +export type Pb1_EnumC13050k = + | 0 + | "UNKNOWN" + | 1 + | "IOS_REDUCED_ACCURACY" + | 2 + | "IOS_FULL_ACCURACY" + | 3 + | "AOS_PRECISE_LOCATION" + | 4 + | "AOS_APPROXIMATE_LOCATION"; + +export type Pb1_EnumC13082m3 = 0 | "SHOW" | 1 | "HIDE"; + +export type Pb1_EnumC13093n0 = 0 | "NONE" | 1 | "TOP"; + +export type Pb1_EnumC13127p6 = + | 0 + | "NORMAL" + | 1 + | "ALERT_DISABLED" + | 2 + | "ALWAYS"; + +export type 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"; + +export type Pb1_EnumC13148r0 = + | 1 + | "ALWAYS_HIDDEN" + | 2 + | "ALWAYS_SHOWN" + | 3 + | "SHOWN_BY_CONDITION"; + +export type Pb1_EnumC13151r3 = 0 | "ONEWAY" | 1 | "BOTH" | 2 | "NOT_REGISTERED"; + +export type Pb1_EnumC13162s0 = + | 1 + | "NOT_SUSPICIOUS" + | 2 + | "SUSPICIOUS_00" + | 3 + | "SUSPICIOUS_01"; + +export type Pb1_EnumC13196u6 = + | 0 + | "COIN" + | 1 + | "CREDIT" + | 2 + | "MONTHLY" + | 3 + | "OAM"; + +export type 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"; + +export type Pb1_EnumC13221w3 = 0 | "UNKNOWN" | 1 | "EUROPEAN_ECONOMIC_AREA"; + +export type Pb1_EnumC13222w4 = + | 1 + | "OBS_VIDEO" + | 2 + | "OBS_GENERAL" + | 3 + | "OBS_RINGBACK_TONE"; + +export type Pb1_EnumC13237x5 = + | 1 + | "AUDIO" + | 2 + | "VIDEO" + | 3 + | "LIVE" + | 4 + | "PHOTOBOOTH"; + +export type Pb1_EnumC13238x6 = + | 0 + | "NOT_SPECIFIED" + | 1 + | "VALID" + | 2 + | "VERIFICATION_REQUIRED" + | 3 + | "NOT_PERMITTED" + | 4 + | "LIMIT_EXCEEDED" + | 5 + | "LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED"; + +export type Pb1_EnumC13251y5 = 1 | "STANDARD" | 2 | "CONSTELLA"; + +export type Pb1_EnumC13252y6 = + | 0 + | "ALL" + | 1 + | "PROFILE" + | 2 + | "SETTINGS" + | 3 + | "CONFIGURATIONS" + | 4 + | "CONTACT" + | 5 + | "GROUP" + | 6 + | "E2EE" + | 7 + | "MESSAGE"; + +export type Pb1_EnumC13260z0 = 0 | "ON_AIR" | 1 | "LIVE" | 2 | "GLP"; + +export type Pb1_EnumC13267z7 = 1 | "NOTIFICATION_SETTING" | 255 | "ALL"; + +export type Pb1_F0 = 0 | "NA" | 1 | "FRIEND_VIEW" | 2 | "OFFICIAL_ACCOUNT_VIEW"; + +export type Pb1_F4 = 1 | "INCOMING" | 2 | "OUTGOING"; + +export type Pb1_F5 = + | 0 + | "UNKNOWN" + | 1 + | "SUCCESS" + | 2 + | "REQUIRE_SERVER_SIDE_EMAIL" + | 3 + | "REQUIRE_CLIENT_SIDE_EMAIL"; + +export type Pb1_F6 = 0 | "JBU" | 1 | "LIP"; + +export type Pb1_G3 = + | 1 + | "PROMOTION_FRIENDS_INVITE" + | 2 + | "CAPABILITY_SERVER_SIDE_SMS" + | 3 + | "LINE_CLIENT_ANALYTICS_CONFIGURATION"; + +export type Pb1_G4 = 1 | "TIMELINE" | 2 | "NEARBY" | 3 | "SQUARE"; + +export type Pb1_G6 = + | 2 + | "NICE" + | 3 + | "LOVE" + | 4 + | "FUN" + | 5 + | "AMAZING" + | 6 + | "SAD" + | 7 + | "OMG"; + +export type Pb1_H6 = 0 | "PUBLIC" | 1 | "PRIVATE"; + +export type Pb1_I6 = 0 | "NEVER_SHOW" | 1 | "ONE_WAY" | 2 | "MUTUAL"; + +export type Pb1_J4 = + | 0 + | "OTHER" + | 1 + | "INITIALIZATION" + | 2 + | "PERIODIC_SYNC" + | 3 + | "MANUAL_SYNC" + | 4 + | "LOCAL_DB_CORRUPTED"; + +export type Pb1_K2 = + | 1 + | "CHANNEL_INFO" + | 2 + | "CHANNEL_TOKEN" + | 4 + | "COMMON_DOMAIN" + | 255 + | "ALL"; + +export type 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"; + +export type Pb1_L2 = 0 | "SYNC" | 1 | "REMOVE" | 2 | "REMOVE_ALL"; + +export type 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"; + +export type Pb1_M6 = 0 | "OWNER" | 1 | "FRIEND"; + +export type Pb1_N6 = + | 1 + | "NFT" + | 2 + | "AVATAR" + | 3 + | "SNOW" + | 4 + | "ARCZ" + | 5 + | "FRENZ"; + +export type Pb1_O2 = + | 1 + | "NAME" + | 2 + | "PICTURE_STATUS" + | 4 + | "PREVENTED_JOIN_BY_TICKET" + | 8 + | "NOTIFICATION_SETTING" + | 16 + | "INVITATION_TICKET" + | 32 + | "FAVORITE_TIMESTAMP" + | 64 + | "CHAT_TYPE"; + +export type Pb1_O6 = 1 | "DEFAULT" | 2 | "MULTI_PROFILE"; + +export type Pb1_P6 = 0 | "HIDDEN" | 1000 | "PUBLIC"; + +export type Pb1_Q2 = + | 0 + | "BACKGROUND" + | 1 + | "KEYWORD" + | 2 + | "CONTENT_METADATA_TAG_BASED"; + +export type 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"; + +export type Pb1_S7 = 1 | "NONE" | 2 | "ALL"; + +export type 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"; + +export type Pb1_T7 = 0 | "SYNC" | 1 | "REPORT"; + +export type Pb1_V7 = + | 0 + | "UNSPECIFIED" + | 1 + | "UNKNOWN" + | 2 + | "INITIALIZATION" + | 3 + | "OPERATION" + | 4 + | "FULL_SYNC" + | 5 + | "AUTO_REPAIR" + | 6 + | "MANUAL_REPAIR" + | 7 + | "INTERNAL" + | 8 + | "USER_INITIATED"; + +export type Pb1_W2 = 0 | "ANYONE_IN_CHAT" | 1 | "CREATOR_ONLY" | 2 | "NO_ONE"; + +export type 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"; + +export type Pb1_X1 = + | 0 + | "MESSAGE" + | 1 + | "MESSAGE_NOTIFICATION" + | 2 + | "NOTIFICATION_CENTER"; + +export type Pb1_X2 = 0 | "MESSAGE" | 1 | "NOTE" | 2 | "CHANNEL"; + +export type Pb1_Z2 = 0 | "GROUP" | 1 | "ROOM" | 2 | "PEER"; + +export type Pb1_gd = 1 | "OVER" | 2 | "UNDER" | 3 | "UNDEFINED"; + +export type Pb1_od = 0 | "UNKNOWN" | 1 | "LOCATION"; + +export type 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"; + +export type Q70_q = 0 | "UNKNOWN" | 1 | "FACEBOOK" | 2 | "APPLE" | 3 | "GOOGLE"; + +export type Q70_r = + | 0 + | "INTERNAL_ERROR" + | 1 + | "ILLEGAL_ARGUMENT" + | 2 + | "VERIFICATION_FAILED" + | 4 + | "RETRY_LATER" + | 5 + | "HUMAN_VERIFICATION_REQUIRED" + | 101 + | "APP_UPGRADE_REQUIRED"; + +export type Qj_EnumC13584a = + | 0 + | "NOT_DETERMINED" + | 1 + | "RESTRICTED" + | 2 + | "DENIED" + | 3 + | "AUTHORIZED"; + +export type Qj_EnumC13585b = 1 | "WHITE" | 2 | "BLACK"; + +export type Qj_EnumC13588e = 1 | "LIGHT" | 2 | "DARK"; + +export type 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"; + +export type 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"; + +export type 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"; + +export type Qj_EnumC13605w = + | 1 + | "ALLOW_DIRECT_LINK" + | 2 + | "ALLOW_DIRECT_LINK_V2"; + +export type Qj_EnumC13606x = + | 1 + | "LIGHT" + | 2 + | "LIGHT_TRANSLUCENT" + | 3 + | "DARK_TRANSLUCENT" + | 4 + | "LIGHT_ICON" + | 5 + | "DARK_ICON"; + +export type Qj_a0 = 1 | "CONCAT" | 2 | "REPLACE"; + +export type Qj_e0 = 0 | "SUCCESS" | 1 | "FAILURE" | 2 | "CANCEL"; + +export type Qj_h0 = 1 | "RIGHT" | 2 | "LEFT"; + +export type Qj_i0 = 1 | "FULL" | 2 | "TALL" | 3 | "COMPACT"; + +export type 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"; + +export type RegistrationType = + | 0 + | "PHONE" + | 1 + | "EMAIL_WAP" + | 2305 + | "FACEBOOK" + | 2306 + | "SINA" + | 2307 + | "RENREN" + | 2308 + | "FEIXIN" + | 2309 + | "APPLE" + | 2310 + | "YAHOOJAPAN" + | 2311 + | "GOOGLE"; + +export type ReportType = + | 1 + | "ADVERTISING" + | 2 + | "GENDER_HARASSMENT" + | 3 + | "HARASSMENT" + | 4 + | "OTHER" + | 5 + | "IRRELEVANT_CONTENT" + | 6 + | "IMPERSONATION" + | 7 + | "SCAM"; + +export type S70_a = + | 0 + | "INTERNAL_ERROR" + | 1 + | "ILLEGAL_ARGUMENT" + | 2 + | "VERIFICATION_FAILED" + | 3 + | "RETRY_LATER" + | 100 + | "INVALID_CONTEXT" + | 101 + | "APP_UPGRADE_REQUIRED"; + +export type 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"; + +export type SnsIdType = + | 1 + | "FACEBOOK" + | 2 + | "SINA" + | 3 + | "RENREN" + | 4 + | "FEIXIN" + | 5 + | "BBM" + | 6 + | "APPLE" + | 7 + | "YAHOOJAPAN" + | 8 + | "GOOGLE"; + +export type SpammerReason = + | 0 + | "OTHER" + | 1 + | "ADVERTISING" + | 2 + | "GENDER_HARASSMENT" + | 3 + | "HARASSMENT" + | 4 + | "IMPERSONATION" + | 5 + | "SCAM"; + +export type 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"; + +export type 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"; + +export type 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"; + +export type SquareChatType = + | 1 + | "OPEN" + | 2 + | "SECRET" + | 3 + | "ONE_ON_ONE" + | 4 + | "SQUARE_DEFAULT"; + +export type SquareMemberAttribute = + | 1 + | "DISPLAY_NAME" + | 2 + | "PROFILE_IMAGE" + | 3 + | "ABLE_TO_RECEIVE_MESSAGE" + | 5 + | "MEMBERSHIP_STATE" + | 6 + | "ROLE" + | 7 + | "PREFERENCE"; + +export type SquareMembershipState = + | 1 + | "JOIN_REQUESTED" + | 2 + | "JOINED" + | 3 + | "REJECTED" + | 4 + | "LEFT" + | 5 + | "KICK_OUT" + | 6 + | "BANNED" + | 7 + | "DELETED" + | 8 + | "JOIN_REQUEST_WITHDREW"; + +export type StickerResourceType = + | 1 + | "STATIC" + | 2 + | "ANIMATION" + | 3 + | "SOUND" + | 4 + | "ANIMATION_SOUND" + | 5 + | "POPUP" + | 6 + | "POPUP_SOUND" + | 7 + | "NAME_TEXT" + | 8 + | "PER_STICKER_TEXT"; + +export type SyncCategory = + | 0 + | "PROFILE" + | 1 + | "SETTINGS" + | 2 + | "OPS" + | 3 + | "CONTACT" + | 4 + | "RECOMMEND" + | 5 + | "BLOCK" + | 6 + | "GROUP" + | 7 + | "ROOM" + | 8 + | "NOTIFICATION" + | 9 + | "ADDRESS_BOOK"; + +export type 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"; + +export type T70_EnumC14390b = 0 | "UNKNOWN" | 1 | "PHONE_NUMBER" | 2 | "EMAIL"; + +export type T70_EnumC14392c = + | 0 + | "UNKNOWN" + | 1 + | "SKIP" + | 2 + | "PASSWORD" + | 3 + | "WEB_BASED" + | 4 + | "EMAIL_BASED" + | 11 + | "NONE"; + +export type 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"; + +export type T70_K = 0 | "UNKNOWN" | 1 | "SMS" | 2 | "IVR" | 3 | "SMSPULL"; + +export type T70_L = + | 0 + | "PREMIUM_TYPE_UNSPECIFIED" + | 1 + | "PREMIUM_TYPE_LYP" + | 2 + | "PREMIUM_TYPE_LINE"; + +export type T70_Z0 = 1 | "PHONE_VERIF" | 2 | "EAP_VERIF"; + +export type T70_e1 = 0 | "UNKNOWN" | 1 | "SKIP" | 2 | "WEB_BASED"; + +export type T70_j1 = + | 0 + | "UNKNOWN" + | 1 + | "FACEBOOK" + | 2 + | "APPLE" + | 3 + | "GOOGLE"; + +export type U70_c = + | 0 + | "INTERNAL_ERROR" + | 1 + | "FORBIDDEN" + | 100 + | "INVALID_CONTEXT"; + +export type Uf_EnumC14873o = 1 | "ANDROID" | 2 | "IOS"; + +export type VR0_l = 1 | "DEFAULT" | 2 | "UEN"; + +export type VerificationMethod = + | 0 + | "NO_AVAILABLE" + | 1 + | "PIN_VIA_SMS" + | 2 + | "CALLERID_INDIGO" + | 4 + | "PIN_VIA_TTS" + | 10 + | "SKIP"; + +export type VerificationResult = + | 0 + | "FAILED" + | 1 + | "OK_NOT_REGISTERED_YET" + | 2 + | "OK_REGISTERED_WITH_SAME_DEVICE" + | 3 + | "OK_REGISTERED_WITH_ANOTHER_DEVICE"; + +export type WR0_a = 1 | "FREE" | 2 | "PREMIUM"; + +export type a80_EnumC16644b = + | 0 + | "UNKNOWN" + | 1 + | "FACEBOOK" + | 2 + | "APPLE" + | 3 + | "GOOGLE"; + +export type FetchDirection = 1 | "FORWARD" | 2 | "BACKWARD"; + +export type 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"; + +export type LiveTalkReportType = + | 1 + | "ADVERTISING" + | 2 + | "GENDER_HARASSMENT" + | 3 + | "HARASSMENT" + | 4 + | "IRRELEVANT_CONTENT" + | 5 + | "OTHER" + | 6 + | "IMPERSONATION" + | 7 + | "SCAM"; + +export type MessageSummaryReportType = + | 1 + | "LEGAL_VIOLATION" + | 2 + | "HARASSMENT" + | 3 + | "PERSONAL_IDENTIFIER" + | 4 + | "FALSE_INFORMATION" + | 5 + | "GENDER_HARASSMENT" + | 6 + | "OTHER"; + +export type NotificationPostType = + | 2 + | "POST_MENTION" + | 3 + | "POST_LIKE" + | 4 + | "POST_COMMENT" + | 5 + | "POST_COMMENT_MENTION" + | 6 + | "POST_COMMENT_LIKE" + | 7 + | "POST_RELAY_JOIN"; + +export type SquareEventStatus = 1 | "NORMAL" | 2 | "ALERT_DISABLED"; + +export type 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"; + +export type AdScreen = + | 1 + | "CHATROOM" + | 2 + | "THREAD_SPACE" + | 3 + | "YOUR_THREADS" + | 4 + | "NOTE_LIST" + | 5 + | "NOTE_END" + | 6 + | "WEB_MAIN" + | 7 + | "WEB_SEARCH_RESULT"; + +export type BooleanState = 0 | "NONE" | 1 | "OFF" | 2 | "ON"; + +export type ChatroomPopupType = + | 1 + | "IMG_TEXT" + | 2 + | "TEXT_ONLY" + | 3 + | "IMG_ONLY"; + +export type ContentsAttribute = 1 | "NONE" | 2 | "CONTENTS_HIDDEN"; + +export type FetchType = + | 1 + | "DEFAULT" + | 2 + | "PREFETCH_BY_SERVER" + | 3 + | "PREFETCH_BY_CLIENT"; + +export type LiveTalkAttribute = 1 | "TITLE" | 2 | "ALLOW_REQUEST_TO_SPEAK"; + +export type LiveTalkRole = 1 | "HOST" | 2 | "CO_HOST" | 3 | "GUEST"; + +export type LiveTalkSpeakerSetting = 1 | "APPROVAL" | 2 | "ALL"; + +export type LiveTalkType = 1 | "PUBLIC" | 2 | "PRIVATE"; + +export type MessageReactionType = + | 0 + | "ALL" + | 1 + | "UNDO" + | 2 + | "NICE" + | 3 + | "LOVE" + | 4 + | "FUN" + | 5 + | "AMAZING" + | 6 + | "SAD" + | 7 + | "OMG"; + +export type NotifiedMessageType = 1 | "MENTION" | 2 | "REPLY"; + +export type PopupAttribute = + | 1 + | "NAME" + | 2 + | "ACTIVATED" + | 3 + | "STARTS_AT" + | 4 + | "ENDS_AT" + | 5 + | "CONTENT"; + +export type PopupType = 1 | "MAIN" | 2 | "CHATROOM"; + +export type SquareChatAttribute = + | 2 + | "NAME" + | 3 + | "SQUARE_CHAT_IMAGE" + | 4 + | "STATE" + | 5 + | "TYPE" + | 6 + | "MAX_MEMBER_COUNT" + | 7 + | "MESSAGE_VISIBILITY" + | 8 + | "ABLE_TO_SEARCH_MESSAGE"; + +export type SquareChatFeatureControlState = 1 | "DISABLED" | 2 | "ENABLED"; + +export type SquareChatMemberAttribute = + | 4 + | "MEMBERSHIP_STATE" + | 6 + | "NOTIFICATION_MESSAGE" + | 7 + | "NOTIFICATION_NEW_MEMBER" + | 8 + | "LEFT_BY_KICK_MESSAGE_LOCAL_ID" + | 9 + | "MESSAGE_LOCAL_ID_WHEN_BLOCK"; + +export type SquareChatMembershipState = 1 | "JOINED" | 2 | "LEFT"; + +export type SquareChatState = 0 | "ALIVE" | 1 | "DELETED" | 2 | "SUSPENDED"; + +export type SquareEmblem = 1 | "SUPER" | 2 | "OFFICIAL"; + +export type 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"; + +export type SquareFeatureControlState = 1 | "DISABLED" | 2 | "ENABLED"; + +export type 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"; + +export type SquareJoinMethodType = 0 | "NONE" | 1 | "APPROVAL" | 2 | "CODE"; + +export type SquareMemberRelationState = 1 | "NONE" | 2 | "BLOCKED"; + +export type SquareMemberRole = 1 | "ADMIN" | 2 | "CO_ADMIN" | 10 | "MEMBER"; + +export type SquareMessageState = + | 1 + | "SENT" + | 2 + | "DELETED" + | 3 + | "FORBIDDEN" + | 4 + | "UNSENT"; + +export type SquareMetadataAttribute = 1 | "EXCLUDED" | 2 | "NO_AD"; + +export type SquarePreferenceAttribute = + | 1 + | "FAVORITE" + | 2 + | "NOTI_FOR_NEW_JOIN_REQUEST"; + +export type SquareProviderType = + | 1 + | "UNKNOWN" + | 2 + | "YOUTUBE" + | 3 + | "OA_FANSPACE"; + +export type SquareState = 0 | "ALIVE" | 1 | "DELETED" | 2 | "SUSPENDED"; + +export type SquareThreadAttribute = + | 1 + | "STATE" + | 2 + | "EXPIRES_AT" + | 3 + | "READ_ONLY_AT"; + +export type SquareThreadMembershipState = 1 | "JOINED" | 2 | "LEFT"; + +export type SquareThreadState = 1 | "ALIVE" | 2 | "DELETED"; + +export type SquareType = 0 | "CLOSED" | 1 | "OPEN"; + +export type TargetChatType = + | 0 + | "ALL" + | 1 + | "MIDS" + | 2 + | "CATEGORIES" + | 3 + | "CHANNEL_ID"; + +export type TargetUserType = 0 | "ALL" | 1 | "MIDS"; + +export type do0_EnumC23139B = 1 | "CLOUD" | 2 | "BLE" | 3 | "BEACON"; + +export type do0_EnumC23147e = + | 0 + | "SUCCESS" + | 1 + | "UNKNOWN_ERROR" + | 2 + | "BLUETOOTH_NOT_AVAILABLE" + | 3 + | "CONNECTION_TIMEOUT" + | 4 + | "CONNECTION_ERROR" + | 5 + | "CONNECTION_IN_PROGRESS"; + +export type do0_EnumC23148f = 0 | "ONETIME" | 1 | "AUTOMATIC" | 2 | "BEACON"; + +export type 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"; + +export type do0_M = + | 0 + | "INTERNAL_SERVER_ERROR" + | 1 + | "UNAUTHORIZED" + | 2 + | "INVALID_REQUEST" + | 3 + | "INVALID_STATE" + | 4096 + | "DEVICE_LIMIT_EXCEEDED" + | 4097 + | "UNSUPPORTED_REGION"; + +export type fN0_EnumC24466B = 0 | "LINE_PREMIUM" | 1 | "LYP_PREMIUM"; + +export type fN0_EnumC24467C = 1 | "LINE" | 2 | "YAHOO_JAPAN"; + +export type fN0_EnumC24469a = + | 1 + | "OK" + | 2 + | "NOT_SUPPORTED" + | 3 + | "UNDEFINED" + | 4 + | "NOT_ENOUGH_TICKETS" + | 5 + | "NOT_FRIENDS" + | 6 + | "NO_AGREEMENT"; + +export type fN0_F = + | 1 + | "OK" + | 2 + | "NOT_SUPPORTED" + | 3 + | "UNDEFINED" + | 4 + | "CONFLICT" + | 5 + | "NOT_AVAILABLE" + | 6 + | "INVALID_INVITATION" + | 7 + | "IN_PAYMENT_FAILURE_STATE"; + +export type fN0_G = 1 | "APPLE" | 2 | "GOOGLE"; + +export type fN0_H = + | 1 + | "INACTIVE" + | 2 + | "ACTIVE_FINITE" + | 3 + | "ACTIVE_INFINITE"; + +export type fN0_o = 1 | "AVAILABLE" | 2 | "ALREADY_SUBSCRIBED"; + +export type 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"; + +export type fN0_q = + | 0 + | "UNKNOWN" + | 1 + | "NONE" + | 16641 + | "ILLEGAL_ARGUMENT" + | 16642 + | "NOT_FOUND" + | 16643 + | "NOT_AVAILABLE" + | 16644 + | "INTERNAL_SERVER_ERROR" + | 16645 + | "AUTHENTICATION_FAILED"; + +export type g80_EnumC24993a = + | 0 + | "INTERNAL_ERROR" + | 1 + | "ILLEGAL_ARGUMENT" + | 2 + | "INVALID_CONTEXT" + | 3 + | "TOO_MANY_REQUESTS"; + +export type h80_EnumC25645e = + | 0 + | "INTERNAL_ERROR" + | 1 + | "ILLEGAL_ARGUMENT" + | 2 + | "NOT_FOUND" + | 3 + | "RETRY_LATER" + | 100 + | "INVALID_CONTEXT" + | 101 + | "NOT_SUPPORTED"; + +export type I80_EnumC26392b = + | 0 + | "UNKNOWN" + | 1 + | "SKIP" + | 2 + | "PASSWORD" + | 4 + | "EMAIL_BASED" + | 11 + | "NONE"; + +export type I80_EnumC26394c = 0 | "PHONE_NUMBER" | 1 | "APPLE" | 2 | "GOOGLE"; + +export type 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"; + +export type I80_EnumC26425y = 0 | "UNKNOWN" | 1 | "SMS" | 2 | "IVR"; + +export type j80_EnumC27228a = + | 1 + | "AUTHENTICATION_FAILED" + | 2 + | "INVALID_STATE" + | 3 + | "NOT_AUTHORIZED_DEVICE" + | 4 + | "MUST_REFRESH_V3_TOKEN"; + +export type jO0_EnumC27533B = 1 | "PAYMENT_APPLE" | 2 | "PAYMENT_GOOGLE"; + +export type jO0_EnumC27535b = + | 0 + | "ILLEGAL_ARGUMENT" + | 1 + | "AUTHENTICATION_FAILED" + | 20 + | "INTERNAL_ERROR" + | 29 + | "MESSAGE_DEFINED_ERROR" + | 33 + | "MAINTENANCE_ERROR"; + +export type jO0_EnumC27559z = + | 0 + | "PAYMENT_PG_NONE" + | 1 + | "PAYMENT_PG_AU" + | 2 + | "PAYMENT_PG_AL"; + +export type jf_EnumC27712a = + | 1 + | "NONE" + | 2 + | "DOES_NOT_RESPOND" + | 3 + | "RESPOND_MANUALLY" + | 4 + | "RESPOND_AUTOMATICALLY"; + +export type jf_EnumC27717f = + | 0 + | "UNKNOWN" + | 1 + | "BAD_REQUEST" + | 2 + | "NOT_FOUND" + | 3 + | "FORBIDDEN" + | 4 + | "INTERNAL_SERVER_ERROR"; + +export type kf_EnumC28766a = + | 0 + | "ILLEGAL_ARGUMENT" + | 1 + | "INTERNAL_ERROR" + | 2 + | "UNAUTHORIZED"; + +export type kf_o = 0 | "ANDROID" | 1 | "IOS"; + +export type kf_p = 0 | "RICHMENU" | 1 | "TALK_ROOM"; + +export type kf_r = 0 | "WEB" | 1 | "POSTBACK" | 2 | "SEND_MESSAGE"; + +export type kf_u = 0 | "CLICK" | 1 | "IMPRESSION"; + +export type kf_x = + | 0 + | "UNKNOWN" + | 1 + | "PROFILE" + | 2 + | "TALK_LIST" + | 3 + | "OA_CALL"; + +export type 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"; + +export type 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"; + +export type og_E = 1 | "RUNNING" | 2 | "CLOSING" | 3 | "CLOSED" | 4 | "SUSPEND"; + +export type og_EnumC32661b = 0 | "INACTIVE" | 1 | "ACTIVE"; + +export type og_EnumC32663d = 0 | "PREMIUM" | 1 | "VERIFIED" | 2 | "UNVERIFIED"; + +export type og_EnumC32671l = + | 0 + | "ILLEGAL_ARGUMENT" + | 1 + | "AUTHENTICATION_FAILED" + | 3 + | "INVALID_STATE" + | 5 + | "NOT_FOUND" + | 20 + | "INTERNAL_ERROR" + | 33 + | "MAINTENANCE_ERROR"; + +export type og_G = 0 | "FREE" | 1 | "MONTHLY" | 2 | "PER_PAYMENT"; + +export type 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"; + +export type 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"; + +export type qm_EnumC34112e = + | 1 + | "BUTTON" + | 2 + | "ENTRY_SELECTED" + | 3 + | "BROADCAST_ENTER" + | 4 + | "BROADCAST_LEAVE" + | 5 + | "BROADCAST_STAY"; + +export type qm_s = + | 0 + | "ILLEGAL_ARGUMENT" + | 5 + | "NOT_FOUND" + | 20 + | "INTERNAL_ERROR"; + +export type r80_EnumC34361a = 1 | "PERSONAL_ACCOUNT" | 2 | "CURRENT_ACCOUNT"; + +export type r80_EnumC34362b = + | 1 + | "BANK_ALL" + | 2 + | "BANK_DEPOSIT" + | 3 + | "BANK_WITHDRAWAL"; + +export type 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"; + +export type r80_EnumC34367g = + | 0 + | "AVAILABLE" + | 1 + | "DIFFERENT_REGION" + | 2 + | "UNSUPPORTED_DEVICE" + | 3 + | "PHONE_NUMBER_UNREGISTERED" + | 4 + | "UNAVAILABLE_FROM_LINE_PAY" + | 5 + | "INVALID_USER"; + +export type r80_EnumC34368h = 1 | "CHARGE" | 2 | "WITHDRAW"; + +export type r80_EnumC34370j = + | 0 + | "UNKNOWN" + | 1 + | "VISA" + | 2 + | "MASTER" + | 3 + | "AMEX" + | 4 + | "DINERS" + | 5 + | "JCB"; + +export type r80_EnumC34371k = 0 | "NULL" | 1 | "ATM" | 2 | "CONVENIENCE_STORE"; + +export type r80_EnumC34372l = + | 1 + | "SCALE2" + | 2 + | "SCALE3" + | 3 + | "HDPI" + | 4 + | "XHDPI"; + +export type 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"; + +export type r80_EnumC34376p = + | 1 + | "TRANSFER" + | 2 + | "TRANSFER_REQUEST" + | 3 + | "DUTCH" + | 4 + | "INVITATION"; + +export type r80_EnumC34377q = + | 0 + | "NULL" + | 1 + | "UNIDEN" + | 2 + | "WAIT" + | 3 + | "IDENTIFIED" + | 4 + | "CHECKING"; + +export type r80_EnumC34378s = + | 0 + | "UNKNOWN" + | 1 + | "MORE_TAB" + | 2 + | "CHAT_ROOM_PLUS_MENU" + | 3 + | "TRANSFER" + | 4 + | "PAYMENT" + | 5 + | "LINECARD" + | 6 + | "INVITATION"; + +export type 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"; + +export type r80_g0 = + | 0 + | "NULL" + | 1 + | "ATM" + | 2 + | "CONVENIENCE_STORE" + | 3 + | "ALL"; + +export type r80_h0 = + | 1 + | "READY" + | 2 + | "COMPLETE" + | 3 + | "WAIT" + | 4 + | "CANCEL" + | 5 + | "FAIL" + | 6 + | "EXPIRE" + | 7 + | "ALL"; + +export type r80_i0 = + | 1 + | "TRANSFER_ACCEPTABLE" + | 2 + | "REMOVE_INVOICE" + | 3 + | "INVOICE_CODE" + | 4 + | "SHOW_ALWAYS_INVOICE"; + +export type 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"; + +export type r80_n0 = 1 | "LINE" | 2 | "LINEPAY"; + +export type r80_r = + | 1 + | "CITIZEN_ID" + | 2 + | "PASSPORT" + | 3 + | "WORK_PERMIT" + | 4 + | "ALIEN_CARD"; + +export type t80_h = 1 | "CLIENT" | 2 | "SERVER"; + +export type t80_i = + | 1 + | "APP_INSTANCE_LOCAL" + | 2 + | "APP_TYPE_LOCAL" + | 3 + | "GLOBAL"; + +export type 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"; + +export type t80_r = + | 1 + | "USER_ACTION" + | 2 + | "DATA_OUTDATED" + | 3 + | "APP_MIGRATION" + | 100 + | "OTHER"; + +export type vh_EnumC37632c = 1 | "ACTIVE" | 2 | "INACTIVE"; + +export type vh_m = 1 | "SAFE" | 2 | "NOT_SAFE"; + +export type 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"; + +export type zR0_EnumC40578c = 0 | "FOREGROUND" | 1 | "BACKGROUND"; + +export type zR0_EnumC40579d = 1 | "STICKER" | 2 | "THEME" | 3 | "STICON"; + +export type zR0_h = 0 | "NORMAL" | 1 | "BIG"; + +export type 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"; + +export type zf_EnumC40713a = + | 1 + | "PERSONAL" + | 2 + | "ROOM" + | 3 + | "GROUP" + | 4 + | "SQUARE_CHAT"; + +export type zf_EnumC40715c = 1 | "REGULAR" | 2 | "PRIORITY" | 3 | "MORE"; + +export type zf_EnumC40716d = + | 1 + | "INVALID_REQUEST" + | 2 + | "UNAUTHORIZED" + | 100 + | "SERVER_ERROR"; export interface AccessTokenRefreshException { - errorCode: P70_g; + errorCode: P70_g; reasonCode: Int64; - } +} export interface AccountEapConnectException { - code: Q70_r; + code: Q70_r; alertMessage: string; webAuthDetails: WebAuthDetails; - } +} export interface I80_C26390a { - code: I80_EnumC26408j; + code: I80_EnumC26408j; alertMessage: string; webAuthDetails: I80_K0; - } +} export interface AuthException { - code: T70_EnumC14406j; + code: T70_EnumC14406j; alertMessage: string; webAuthDetails: WebAuthDetails; - } +} export interface BotException { - errorCode: wm_EnumC38497a; + errorCode: wm_EnumC38497a; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface BotExternalException { - errorCode: kf_EnumC28766a; + errorCode: kf_EnumC28766a; reason: string; - } +} export interface ChannelException { - code: ChannelErrorCode; + code: ChannelErrorCode; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface ChannelPaakAuthnException { - code: n80_o; + code: n80_o; errorMessage: string; - } +} export interface ChatappException { - code: zf_EnumC40716d; + code: zf_EnumC40716d; reason: string; - } +} export interface CoinException { - code: jO0_EnumC27535b; + code: jO0_EnumC27535b; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface CollectionException { - code: Ob1_EnumC12664u; + code: Ob1_EnumC12664u; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface E2EEKeyBackupException { - code: Pb1_W3; + code: Pb1_W3; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface ExcessiveRequestItemException { - max_size: number; + max_size: number; hint: string; - } +} export interface HomeException { - exceptionCode: Fg_a; + exceptionCode: Fg_a; message: string; retryTimeMillis: Int64; - } +} export interface LFLPremiumException { - code: AR0_g; - } + code: AR0_g; +} export interface LiffChannelException { - code: Qj_EnumC13592i; + code: Qj_EnumC13592i; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface LiffException { - code: Qj_EnumC13597n; + code: Qj_EnumC13597n; message: string; payload: Qj_C13599p; - } +} export interface MembershipException { - code: og_EnumC32671l; + code: og_EnumC32671l; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface OaChatException { - code: jf_EnumC27717f; + code: jf_EnumC27717f; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface PasswordUpdateException { - errorCode: U70_c; + errorCode: U70_c; errorMessage: string; - } +} export interface PaymentException { - errorCode: r80_EnumC34374n; + errorCode: r80_EnumC34374n; debugReason: string; serverDefinedMessage: string; - errorDetailMap: Record; - } + errorDetailMap: Record; +} export interface PointException { - code: PointErrorCode; + code: PointErrorCode; reason: string; - extra: Record; - } + extra: Record; +} export interface PremiumException { - code: fN0_q; + code: fN0_q; reason: string; - } +} export interface PrimaryQrCodeMigrationException { - code: h80_EnumC25645e; + code: h80_EnumC25645e; errorMessage: string; - } +} export interface PwlessCredentialException { - code: R70_e; + code: R70_e; alertMessage: string; - } +} export interface RejectedException { - rejectionReason: LN0_F0; + rejectionReason: LN0_F0; hint: string; - } +} export interface SeamlessLoginException { - code: g80_EnumC24993a; + code: g80_EnumC24993a; errorMessage: string; errorTitle: string; - } +} export interface SecondAuthFactorPinCodeException { - code: S70_a; + code: S70_a; alertMessage: string; - } +} export interface SecondaryPwlessLoginException { - code: o80_e; + code: o80_e; alertMessage: string; - } +} export interface SecondaryQrCodeException { - code: q80_EnumC33651c; + code: q80_EnumC33651c; alertMessage: string; - } +} export interface ServerFailureException { - hint: string; - } + hint: string; +} export interface SettingsException { - code: t80_n; + code: t80_n; reason: string; - parameters: Record; - } + parameters: Record; +} export interface ShopException { - code: Ob1_EnumC12652p1; + code: Ob1_EnumC12652p1; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface SquareException { - errorCode: SquareErrorCode; + errorCode: SquareErrorCode; errorExtraInfo: ErrorExtraInfo; reason: string; - } +} export interface SuggestTrialException { - code: zR0_j; + code: zR0_j; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface TalkException { - code: ErrorCode; + code: ErrorCode; reason: string; - parameterMap: Record; - } + parameterMap: Record; +} export interface ThingsException { - code: do0_M; + code: do0_M; reason: string; - } +} export interface TokenAuthException { - code: j80_EnumC27228a; + code: j80_EnumC27228a; reason: string; - } +} export interface WalletException { - code: NZ0_EnumC12193o1; + code: NZ0_EnumC12193o1; reason: string; - attributes: Record; - } + attributes: Record; +} export interface m80_C30146a { - - } +} export interface m80_b { - - } +} export interface AD { - body: string; + body: string; priority: Priority; lossUrl: string; - } +} export interface AR0_o { - sticker: any; - } + sticker: any; +} export interface AbuseMessage { - messageId: Int64; + messageId: Int64; message: string; senderMid: string; contentType: ContentType; createdTime: Int64; - metadata: Record; - } + metadata: Record; +} export interface AbuseReport { - reportSource: Pb1_EnumC13128p7; + reportSource: Pb1_EnumC13128p7; applicationType: ApplicationType; spammerReasons: number[]; abuseMessages: AbuseMessage[]; - metadata: Record; - } + metadata: Record; +} export interface AbuseReportLineMeeting { - reporteeMid: string; + reporteeMid: string; spammerReasons: number[]; evidenceIds: EvidenceId[]; chatMid: string; - } +} export interface AcceptChatInvitationByTicketRequest { - reqSeq: number; + reqSeq: number; chatMid: string; ticketId: string; - } +} export interface AcceptChatInvitationRequest { - reqSeq: number; + reqSeq: number; chatMid: string; - } +} export interface AcceptSpeakersRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; targetMids: string[]; - } +} export interface AcceptToChangeRoleRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; inviteRequestId: string; - } +} export interface AcceptToListenRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; inviteRequestId: string; - } +} export interface AcceptToSpeakRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; inviteRequestId: string; - } +} export interface AccountIdentifier { - type: T70_EnumC14390b; + type: T70_EnumC14390b; identifier: string; countryCode: string; - } +} export interface AcquireLiveTalkRequest { - squareChatMid: string; + squareChatMid: string; title: string; type: LiveTalkType; speakerSetting: LiveTalkSpeakerSetting; - } +} export interface AcquireLiveTalkResponse { - liveTalk: LiveTalk; - } + liveTalk: LiveTalk; +} export interface AcquireOACallRouteRequest { - searchId: string; - fromEnvInfo: Record; + searchId: string; + fromEnvInfo: Record; otp: string; - } +} export interface AcquireOACallRouteResponse { - oaCallRoute: Pb1_C13113o6; - } + oaCallRoute: Pb1_C13113o6; +} export interface ActionButton { - label: string; - } + label: string; +} export interface ActivateSubscriptionRequest { - uniqueKey: string; + uniqueKey: string; activeStatus: og_EnumC32661b; - } +} export interface AdRequest { - headers: Record; - queryParams: Record; - } + headers: Record; + queryParams: Record; +} export interface AdTypeOptOutClickEventRequest { - moduleAdId: string; + moduleAdId: string; targetId: string; - } +} export interface AddFriendByMidRequest { - reqSeq: number; + reqSeq: number; userMid: string; tracking: AddFriendTracking; - } +} export interface AddFriendTracking { - reference: string; + reference: string; trackingMeta: LN0_C11274d; - } +} export interface AddItemToCollectionRequest { - collectionId: string; + collectionId: string; productType: Ob1_O0; productId: string; itemId: string; - } +} export interface AddMetaByPhone { - phone: string; - } + phone: string; +} export interface AddMetaBySearchId { - searchId: string; - } + searchId: string; +} export interface AddMetaByUserTicket { - ticket: string; - } + ticket: string; +} export interface AddMetaChatNote { - chatMid: string; - } + chatMid: string; +} export interface AddMetaChatNoteMenu { - chatMid: string; - } + chatMid: string; +} export interface AddMetaGroupMemberList { - chatMid: string; - } + chatMid: string; +} export interface AddMetaGroupVideoCall { - chatMid: string; - } + chatMid: string; +} export interface AddMetaInvalid { - hint: string; - } + hint: string; +} export interface AddMetaMentionInChat { - chatMid: string; + chatMid: string; messageId: string; - } +} export interface AddMetaProfileUndefined { - hint: string; - } + hint: string; +} export interface AddMetaSearchIdInUnifiedSearch { - searchId: string; - } + searchId: string; +} export interface AddMetaShareContact { - messageId: string; + messageId: string; chatMid: string; senderMid: string; - } +} export interface AddMetaStrangerCall { - messageId: string; - } + messageId: string; +} export interface AddMetaStrangerMessage { - messageId: string; + messageId: string; chatMid: string; - } +} export interface AddOaFriendResponse { - status: string; - } + status: string; +} export interface AddProductToSubscriptionSlotRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; oldProductId: string; subscriptionService: any; - } +} export interface AddProductToSubscriptionSlotResponse { - result: Ob1_U1; - } + result: Ob1_U1; +} export interface AddThemeToSubscriptionSlotRequest { - productId: string; + productId: string; currentlyAppliedProductId: string; subscriptionService: any; - } +} export interface AddThemeToSubscriptionSlotResponse { - result: Ob1_U1; - } + result: Ob1_U1; +} export interface AddToFollowBlacklistRequest { - followMid: Pb1_A4; - } + followMid: Pb1_A4; +} export interface AgeCheckRequestResult { - authUrl: string; + authUrl: string; sessionId: string; - } +} export interface AgreeToTermsRequest { - termsType: any; + termsType: any; termsAgreement: TermsAgreement; - } +} export interface AiQnABotTermsAgreement { - termsVersion: number; - } + termsVersion: number; +} export interface AnalyticsInfo { - gaSamplingRate: number; + gaSamplingRate: number; tmid: string; - } +} export interface AnimationEffectContent { - animationImageUrl: string; - } + animationImageUrl: string; +} export interface AnimationLayer { - initialImage: RichImage; + initialImage: RichImage; frontImage: RichImage; backgroundImage: RichImage; - } +} export interface ApplicationVersionRange { - lowerBound: string; + lowerBound: string; lowerBoundInclusive: boolean; upperBound: string; upperBoundInclusive: boolean; - } +} export interface ApprovalValue { - message: string; - } + message: string; +} export interface ApproveSquareMembersRequest { - squareMid: string; + squareMid: string; requestedMemberMids: string[]; - } +} export interface ApproveSquareMembersResponse { - approvedMembers: SquareMember[]; + approvedMembers: SquareMember[]; status: SquareStatus; - } +} export interface ApprovedChannelInfo { - channelInfo: ChannelInfo; + channelInfo: ChannelInfo; approvedAt: Int64; - } +} export interface ApprovedChannelInfos { - approvedChannelInfos: ApprovedChannelInfo[]; + approvedChannelInfos: ApprovedChannelInfo[]; revision: Int64; - } +} export interface AssetServiceInfo { - status: NZ0_C0; + status: NZ0_C0; myAssetServiceCode: NZ0_B0; name: string; signupText: string; @@ -6210,79 +7908,79 @@ export interface AssetServiceInfo { maintenanceText: string; availableBalanceString: string; availableBalance: string; - } +} export interface AuthPublicKeyCredential { - id: string; + id: string; type: string; response: AuthenticatorAssertionResponse; extensionResults: AuthenticationExtensionsClientOutputs; - } +} export interface AuthSessionRequest { - metaData: Record; - } + metaData: Record; +} export interface AuthenticateWithPaakRequest { - sessionId: string; + sessionId: string; credential: AuthPublicKeyCredential; - } +} export interface AuthenticationExtensionsClientInputs { - lineAuthenSel: string[]; - } + lineAuthenSel: string[]; +} export interface AuthenticationExtensionsClientOutputs { - lineAuthenSel: boolean; - } + lineAuthenSel: boolean; +} export interface AuthenticatorAssertionResponse { - clientDataJSON: string; + clientDataJSON: string; authenticatorData: string; signature: string; userHandle: string; - } +} export interface AuthenticatorAttestationResponse { - clientDataJSON: string; + clientDataJSON: string; attestationObject: string; transports: string[]; - } +} export interface AuthenticatorSelectionCriteria { - authenticatorAttachment: string; + authenticatorAttachment: string; requireResidentKey: boolean; userVerification: string; - } +} export interface AutoSuggestionShowcaseRequest { - productType: Ob1_O0; + productType: Ob1_O0; suggestionType: Ob1_a2; - } +} export interface AutoSuggestionShowcaseResponse { - productList: ProductSummaryForAutoSuggest[]; + productList: ProductSummaryForAutoSuggest[]; totalSize: Int64; - } +} export interface AvatarProfile { - version: string; + version: string; updatedMillis: Int64; thumbnail: string; usablePublicly: boolean; - } +} export interface BadgeInfo { - enabled: boolean; + enabled: boolean; badgeRevision: Int64; - } +} export interface Balance { - currentPointsFixedPointDecimal: string; - } + currentPointsFixedPointDecimal: string; +} export interface BalanceShortcut { - osPayment: boolean; + osPayment: boolean; iconPosition: number; iconUrl: string; iconText: string; @@ -6292,70 +7990,70 @@ export interface BalanceShortcut { iconType: NZ0_EnumC12154b1; iconUrlDarkMode: string; toolTip: Tooltip; - } +} export interface BalanceShortcutInfo { - balanceShortcuts: BalanceShortcut[]; + balanceShortcuts: BalanceShortcut[]; osPaymentFallbackShortcut: BalanceShortcut; - } +} export interface BalanceShortcutInfoV4 { - compactShortcuts: CompactShortcut[]; + compactShortcuts: CompactShortcut[]; balanceShortcuts: BalanceShortcut[]; defaultExpand: boolean; - } +} export interface BankBranchInfo { - branchId: string; + branchId: string; branchCode: string; name: string; name2: string; - } +} export interface BannerRequest { - test: boolean; + test: boolean; trigger: Uf_C14856C; ad: AdRequest; content: ContentRequest; - } +} export interface BannerResponse { - rid: string; + rid: string; timestamp: Int64; minInterval: Int64; lang: string; trigger: Uf_C14856C; payloads: Uf_p[]; - } +} export interface Beacon { - hardwareId: string; - } + hardwareId: string; +} export interface BeaconBackgroundNotification { - actionInterval: Int64; + actionInterval: Int64; actionAndConditions: qm_C34110c[]; actionDelay: Int64; - } +} export interface BeaconData { - hwid: string; + hwid: string; rssi: number; txPower: number; scannedTimestampMs: Int64; - } +} export interface BeaconLayerInfoAndActions { - pictureUrl: string; + pictureUrl: string; label: string; text: string; actions: string[]; showOrConditions: qm_C34110c[]; timeToHide: Int64; - } +} export interface BeaconQueryResponse { - deprecated_actionUrls: string[]; + deprecated_actionUrls: string[]; cacheTtl: Int64; touchActions: BeaconTouchActions; layerInfoAndActions: BeaconLayerInfoAndActions; @@ -6376,89 +8074,89 @@ export interface BeaconQueryResponse { deviceDisplayName: string; botMid: string; pop: boolean; - } +} export interface BeaconTouchActions { - actions: string[]; - } + actions: string[]; +} export interface BirthdayGiftAssociationVerifyRequest { - associationToken: string; - } + associationToken: string; +} export interface BirthdayGiftAssociationVerifyResponse { - tokenStatus: Ob1_EnumC12638l; + tokenStatus: Ob1_EnumC12638l; recipientUserMid: string; - } +} export interface BleNotificationReceivedTrigger { - serviceUuid: string; + serviceUuid: string; characteristicUuid: string; - } +} export interface BleProduct { - serviceUuid: string; + serviceUuid: string; psdiServiceUuid: string; psdiCharacteristicUuid: string; name: string; profileImageLocation: string; bondingRequired: boolean; - } +} export interface Bot { - mid: string; + mid: string; basicSearchId: string; region: string; displayName: string; pictureUrl: string; brandType: og_EnumC32663d; - } +} export interface BotBlockDetail { - deletedFromBlockList: boolean; - } + deletedFromBlockList: boolean; +} export interface BotFriendDetail { - createdTime: Int64; + createdTime: Int64; favoriteTime: Int64; hidden: boolean; - } +} export interface BotOaCallDetail { - oaCallUrl: string; - } + oaCallUrl: string; +} export interface BotTalkroomAds { - talkroomAdsEnabled: boolean; + talkroomAdsEnabled: boolean; botTalkroomAdsInventoryKeys: BotTalkroomAdsInventoryKey[]; displayTalkroomAdsToMembershipUser: boolean; - } +} export interface BotTalkroomAdsInventoryKey { - talkroomAdsPosition: Pb1_EnumC13093n0; + talkroomAdsPosition: Pb1_EnumC13093n0; talkroomAdsIosInventoryKey: string; talkroomAdsAndroidInventoryKey: string; - } +} export interface BrowsingHistory { - productSearchSummary: ProductSearchSummary; + productSearchSummary: ProductSearchSummary; browsingTime: Int64; - } +} export interface BuddyCautionNotice { - type: Pb1_EnumC13162s0; - } + type: Pb1_EnumC13162s0; +} export interface BuddyCautionNoticeFromCMS { - visibility: Pb1_EnumC13148r0; - } + visibility: Pb1_EnumC13148r0; +} export interface BuddyChatBar { - barItems: Pb1_C13190u0[]; - } + barItems: Pb1_C13190u0[]; +} export interface BuddyDetail { - mid: string; + mid: string; memberCount: Int64; onAir: boolean; businessAccount: boolean; @@ -6496,23 +8194,23 @@ export interface BuddyDetail { voomEnabled: boolean; buddyCautionNoticeFromCMS: BuddyCautionNoticeFromCMS; region: string; - } +} export interface BuddyDetailWithPersonal { - buddyDetail: BuddyDetail; + buddyDetail: BuddyDetail; personalDetail: BuddyPersonalDetail; - } +} export interface BuddyLive { - mid: string; + mid: string; onLive: boolean; title: string; viewerCount: Int64; liveUrl: string; - } +} export interface BuddyOnAir { - mid: string; + mid: string; freshnessLifetime: Int64; onAirId: string; onAir: boolean; @@ -6531,27 +8229,27 @@ export interface BuddyOnAir { useLowerBanner: boolean; lowerBannerUrl: string; lowerBannerLabel: string; - } +} export interface BuddyOnAirUrls { - hls: Record; - smoothStreaming: Record; - } + hls: Record; + smoothStreaming: Record; +} export interface BuddyPersonalDetail { - richMenuId: string; + richMenuId: string; statusBarRevision: Int64; buddyCautionNotice: BuddyCautionNotice; - } +} export interface BuddyRichMenuChatBarItem { - label: string; + label: string; body: string; selected: boolean; - } +} export interface BuddySearchResult { - mid: string; + mid: string; displayName: string; pictureStatus: string; picturePath: string; @@ -6559,79 +8257,79 @@ export interface BuddySearchResult { businessAccount: boolean; iconType: number; botType: BotType; - } +} export interface BuddyStatusBar { - label: string; + label: string; displayType: Pb1_EnumC12926b1; title: string; iconUrl: string; linkUrl: string; - } +} export interface BuddyWebChatBarItem { - label: string; + label: string; url: string; - } +} export interface BuddyWidget { - icon: string; + icon: string; label: string; url: string; - } +} export interface BuddyWidgetListCharBarItem { - label: string; + label: string; widgets: BuddyWidget[]; selected: boolean; - } +} export interface BulkFollowRequest { - followTargetMids: string[]; + followTargetMids: string[]; unfollowTargetMids: string[]; hasNext: boolean; - } +} export interface BulkGetRequest { - requests: GetRequest[]; - } + requests: GetRequest[]; +} export interface BulkGetResponse { - values: Record; - } + values: Record; +} export interface BulkSetRequest { - requests: SetRequest[]; - } + requests: SetRequest[]; +} export interface BulkSetResponse { - values: Record; - } + values: Record; +} export interface Button { - content: ButtonContent; + content: ButtonContent; style: ButtonStyle; - } +} export interface ButtonStyle { - textColorHexCode: string; + textColorHexCode: string; bgColor: ButtonBGColor; - } +} export interface BuyMustbuyRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; serialNumber: string; - } +} export interface CallHost { - host: string; + host: string; port: number; zone: string; - } +} export interface CallRoute { - fromToken: string; + fromToken: string; callFlowType: Pb1_EnumC13010h1; voipAddress: string; voipUdpPort: number; @@ -6651,119 +8349,119 @@ export interface CallRoute { w2pGw: string; drCall: boolean; stnpk: string; - } +} export interface Callback { - impEventUrl: string; + impEventUrl: string; clickEventUrl: string; muteEventUrl: string; upvoteEventUrl: string; downvoteEventUrl: string; bounceEventUrl: string; undeliveredEventUrl: string; - } +} export interface CampaignContent { - iconUrl: string; + iconUrl: string; iconAltText: string; iconDisplayRule: IconDisplayRule; animationEffectContent: AnimationEffectContent; - } +} export interface CampaignProperty { - id: string; + id: string; name: string; type: string; headerContent: HeaderContent; campaignContent: CampaignContent; - } +} export interface CanCreateCombinationStickerRequest { - packageIds: string[]; - } + packageIds: string[]; +} export interface CanCreateCombinationStickerResponse { - canCreate: boolean; + canCreate: boolean; usablePackageIds: string[]; - } +} export interface CancelChatInvitationRequest { - reqSeq: number; + reqSeq: number; chatMid: string; targetUserMids: string[]; - } +} export interface CancelPaakAuthRequest { - sessionId: string; - } + sessionId: string; +} export interface CancelPaakAuthenticationRequest { - authSessionId: string; - } + authSessionId: string; +} export interface CancelPinCodeRequest { - authSessionId: string; - } + authSessionId: string; +} export interface CancelReactionRequest { - reqSeq: number; + reqSeq: number; messageId: Int64; - } +} export interface CancelToSpeakRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface Candidate { - type: zR0_EnumC40579d; + type: zR0_EnumC40579d; productId: string; itemId: string; - } +} export interface Category { - id: number; + id: number; name: string; - } +} export interface CategoryName { - categoryId: number; - names: Record; - } + categoryId: number; + names: Record; +} export interface ChangeSubscriptionRequest { - billingItemId: string; + billingItemId: string; subscriptionService: any; storeCode: Ob1_K1; - } +} export interface ChangeSubscriptionResponse { - result: Ob1_M1; + result: Ob1_M1; orderId: string; confirmUrl: string; - } +} export interface ChannelContext { - channelName: string; - } + channelName: string; +} export interface ChannelDomain { - host: string; + host: string; removed: boolean; - } +} export interface ChannelDomains { - channelDomains: ChannelDomain[]; + channelDomains: ChannelDomain[]; revision: Int64; - } +} export interface ChannelIdWithLastUpdated { - channelId: string; + channelId: string; lastUpdated: Int64; - } +} export interface ChannelInfo { - channelId: string; + channelId: string; name: string; entryPageUrl: string; descriptionText: string; @@ -6778,35 +8476,35 @@ export interface ChannelInfo { channelDomains: ChannelDomain[]; updatedTimestamp: Int64; featureLicenses: Pb1_EnumC12941c2[]; - } +} export interface ChannelNotificationSetting { - channelId: string; + channelId: string; name: string; notificationReceivable: boolean; messageReceivable: boolean; showDefault: boolean; - } +} export interface ChannelProvider { - name: string; + name: string; certified: boolean; - } +} export interface ChannelSettings { - unapprovedMessageReceivable: boolean; - } + unapprovedMessageReceivable: boolean; +} export interface ChannelToken { - token: string; + token: string; obsToken: string; expiration: Int64; refreshToken: string; channelAccessToken: string; - } +} export interface Chat { - type: Pb1_Z2; + type: Pb1_Z2; chatMid: string; createdTime: Int64; notificationDisabled: boolean; @@ -6814,66 +8512,66 @@ export interface Chat { chatName: string; picturePath: string; extra: Pb1_C13208v4; - } +} export interface ChatEffectMeta { - contentId: Int64; + contentId: Int64; category: Pb1_Q2; name: string; defaultContent: ChatEffectMetaContent; - optionalContents: Record; + optionalContents: Record; keywords: string[]; beginTimeMillis: Int64; endTimeMillis: Int64; createdTimeMillis: Int64; updatedTimeMillis: Int64; contentMetadataTag: string; - } +} export interface ChatEffectMetaContent { - url: string; + url: string; checksum: string; - } +} export interface ChatRoomAnnouncement { - announcementSeq: Int64; + announcementSeq: Int64; type: Pb1_X2; contents: ChatRoomAnnouncementContents; creatorMid: string; createdTime: Int64; deletePermission: Pb1_W2; - } +} export interface ChatRoomAnnouncementContentMetadata { - replace: string; + replace: string; sticonOwnership: string; postNotificationMetadata: string; - } +} export interface ChatRoomAnnouncementContents { - displayFields: number; + displayFields: number; text: string; link: string; thumbnail: string; contentMetadata: ChatRoomAnnouncementContentMetadata; - } +} export interface ChatRoomBGM { - creatorMid: string; + creatorMid: string; createdTime: Int64; chatRoomBGMInfo: string; - } +} export interface Chatapp { - chatappId: string; + chatappId: string; name: string; icon: string; url: string; availableChatTypes: number[]; - } +} export interface ChatroomPopup { - imageObsHash: string; + imageObsHash: string; title: string; content: string; targetRoles: number[]; @@ -6884,102 +8582,102 @@ export interface ChatroomPopup { targetChats: TargetChats; targetUserType: TargetUserType; targetUsers: TargetUsers; - } +} export interface I80_C26396d { - authSessionId: string; - } + authSessionId: string; +} export interface CheckEmailAssignedResponse { - sameAccountFromPhone: boolean; - } + sameAccountFromPhone: boolean; +} export interface CheckIfEncryptedE2EEKeyReceivedRequest { - sessionId: string; + sessionId: string; secureChannelData: h80_t; - } +} export interface CheckIfEncryptedE2EEKeyReceivedResponse { - nonce: string; + nonce: string; encryptedSecureChannelPayload: any; userProfile: any; appTypeDifferentFromPrevDevice: boolean; e2eeKeyBackupServiceConfig: boolean; - } +} export interface I80_C26400f { - authSessionId: string; - } + authSessionId: string; +} export interface I80_C26402g { - verified: boolean; - } + verified: boolean; +} export interface CheckIfPhonePinCodeMsgVerifiedRequest { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; - } +} export interface CheckIfPhonePinCodeMsgVerifiedResponse { - accountExist: boolean; + accountExist: boolean; sameUdidFromAccount: boolean; allowedToRegister: boolean; userProfile: UserProfile; - } +} export interface CheckJoinCodeRequest { - squareMid: string; + squareMid: string; joinCode: string; - } +} export interface CheckJoinCodeResponse { - joinToken: string; - } + joinToken: string; +} export interface CheckOperationResult { - tradable: boolean; + tradable: boolean; reason: string; detailMessage: string; - } +} export interface CheckUserAgeAfterApprovalWithDocomoV2Request { - accessToken: string; + accessToken: string; agprm: string; - } +} export interface CheckUserAgeAfterApprovalWithDocomoV2Response { - userAgeType: Pb1_gd; - } + userAgeType: Pb1_gd; +} export interface CheckUserAgeWithDocomoV2Request { - authCode: string; - } + authCode: string; +} export interface CheckUserAgeWithDocomoV2Response { - responseType: Pb1_EnumC12970e3; + responseType: Pb1_EnumC12970e3; userAgeType: Pb1_gd; approvalRedirectUrl: string; accessToken: string; - } +} export interface ClientNetworkStatus { - networkType: Pb1_EnumC12998g3; + networkType: Pb1_EnumC12998g3; wifiSignals: WifiSignal[]; - } +} export interface CodeValue { - code: string; - } + code: string; +} export interface Coin { - freeCoinBalance: number; + freeCoinBalance: number; payedCoinBalance: number; totalCoinBalance: number; rewardCoinBalance: number; - } +} export interface CoinHistory { - payDate: Int64; + payDate: Int64; coinBalance: number; coin: number; price: string; @@ -6991,17 +8689,17 @@ export interface CoinHistory { displayPrice: string; payload: CoinPayLoad; channelId: string; - } +} export interface CoinPayLoad { - payCoin: number; + payCoin: number; freeCoin: number; type: PayloadType; rewardCoin: number; - } +} export interface CoinProductItem { - itemId: string; + itemId: string; coin: number; freeCoin: number; currency: string; @@ -7009,10 +8707,10 @@ export interface CoinProductItem { displayPrice: string; name: string; desc: string; - } +} export interface CoinPurchaseReservation { - productId: string; + productId: string; country: string; currency: string; price: string; @@ -7020,67 +8718,67 @@ export interface CoinPurchaseReservation { language: string; pgCode: jO0_EnumC27559z; redirectUrl: string; - } +} export interface Collection { - collectionId: string; + collectionId: string; items: CollectionItem[]; productType: Ob1_O0; createdTimeMillis: Int64; updatedTimeMillis: Int64; - } +} export interface CollectionItem { - itemId: string; + itemId: string; productId: string; displayData: Ob1_E; sortId: number; - } +} export interface CombinationStickerMetadata { - version: Int64; + version: Int64; canvasWidth: number; canvasHeight: number; stickerLayouts: StickerLayout[]; - } +} export interface CombinationStickerStickerData { - packageId: string; + packageId: string; stickerId: string; version: Int64; - } +} export interface CompactShortcut { - iconPosition: number; + iconPosition: number; iconUrl: string; iconAltText: string; iconType: NZ0_EnumC12154b1; linkUrl: string; tsTargetId: string; - } +} export interface Configurations { - revision: Int64; - configMap: Record; - } + revision: Int64; + configMap: Record; +} export interface ConfigurationsParams { - regionOfUsim: string; + regionOfUsim: string; regionOfTelephone: string; regionOfLocale: string; carrier: string; - } +} export interface ConnectDeviceOperation { - connectionTimeoutMillis: Int64; - } + connectionTimeoutMillis: Int64; +} export interface ConnectEapAccountRequest { - authSessionId: string; - } + authSessionId: string; +} export interface Contact { - mid: string; + mid: string; createdTime: Int64; type: ContactType; status: ContactStatus; @@ -7103,46 +8801,45 @@ export interface Contact { friendRequestStatus: FriendRequestStatus; musicProfile: string; videoProfile: string; - statusMessageContentMetadata: Record; + statusMessageContentMetadata: Record; avatarProfile: AvatarProfile; friendRingtone: string; friendRingbackTone: string; nftProfile: boolean; pictureSource: Pb1_N6; profileId: string; - } +} export interface ContactCalendarEvent { - id: string; + id: string; state: Pb1_EnumC13082m3; year: number; month: number; day: number; - } +} export interface ContactCalendarEvents { - - } +} export interface ContactModification { - type: Pb1_EnumC13029i6; + type: Pb1_EnumC13029i6; luid: string; phones: string[]; emails: string[]; userids: string[]; mobileContactName: string; phoneticName: string; - } +} export interface ContactRegistration { - contact: Contact; + contact: Contact; luid: string; contactType: ContactType; contactKey: string; - } +} export interface Content { - title: string; + title: string; desc: string; linkUrl: string; fallbackUrl: string; @@ -7155,104 +8852,104 @@ export interface Content { muteSupported: boolean; voteSupported: boolean; priority: Priority; - } +} export interface ContentRequest { - os: Uf_EnumC14873o; + os: Uf_EnumC14873o; appv: string; lineAcceptableLanguage: string; countryCode: string; - } +} export interface CountryCode { - code: string; - } + code: string; +} export interface CreateChatRequest { - reqSeq: number; + reqSeq: number; type: Pb1_Z2; name: string; targetUserMids: string[]; picturePath: string; - } +} export interface CreateChatResponse { - chat: Chat; - } + chat: Chat; +} export interface CreateCollectionForUserRequest { - productType: Ob1_O0; - } + productType: Ob1_O0; +} export interface CreateCollectionForUserResponse { - collection: Collection; - } + collection: Collection; +} export interface CreateCombinationStickerRequest { - metadata: CombinationStickerMetadata; + metadata: CombinationStickerMetadata; stickers: CombinationStickerStickerData[]; idOfPreviousVersionOfCombinationSticker: string; - } +} export interface CreateCombinationStickerResponse { - id: string; - } + id: string; +} export interface CreateGroupCallUrlRequest { - title: string; - } + title: string; +} export interface CreateGroupCallUrlResponse { - url: GroupCallUrl; - } + url: GroupCallUrl; +} export interface CreateMultiProfileRequest { - displayName: string; - } + displayName: string; +} export interface CreateMultiProfileResponse { - profileId: string; - } + profileId: string; +} export interface I80_C26406i { - authSessionId: string; - } + authSessionId: string; +} export interface CreateSessionResponse { - sessionId: string; - } + sessionId: string; +} export interface CreateSquareChatAnnouncementRequest { - reqSeq: number; + reqSeq: number; squareChatMid: string; squareChatAnnouncement: SquareChatAnnouncement; - } +} export interface CreateSquareChatAnnouncementResponse { - announcement: SquareChatAnnouncement; - } + announcement: SquareChatAnnouncement; +} export interface CreateSquareChatRequest { - reqSeq: number; + reqSeq: number; squareChat: SquareChat; squareMemberMids: string[]; - } +} export interface CreateSquareChatResponse { - squareChat: SquareChat; + squareChat: SquareChat; squareChatStatus: SquareChatStatus; squareChatMember: SquareChatMember; squareChatFeatureSet: SquareChatFeatureSet; - } +} export interface CreateSquareRequest { - reqSeq: number; + reqSeq: number; square: Square; creator: SquareMember; - } +} export interface CreateSquareResponse { - square: Square; + square: Square; creator: SquareMember; authority: SquareAuthority; status: SquareStatus; @@ -7262,115 +8959,115 @@ export interface CreateSquareResponse { squareChatStatus: SquareChatStatus; squareChatMember: SquareChatMember; squareChatFeatureSet: SquareChatFeatureSet; - } +} export interface CurrencyProperty { - code: string; + code: string; symbol: string; position: NZ0_EnumC12197q; scale: number; - } +} export interface CustomBadgeLabel { - text: string; + text: string; backgroundColorCode: string; - } +} export interface CustomColor { - hexColorCode: string; - } + hexColorCode: string; +} export interface DataRetention { - productId: string; + productId: string; productRegion: string; productType: fN0_EnumC24466B; inDataRetention: boolean; dataRetentionEndTime: Int64; - } +} export interface DataUserBot { - mid: string; + mid: string; placeName: string; - } +} export interface DeleteGroupCallUrlRequest { - urlId: string; - } + urlId: string; +} export interface DeleteMultiProfileRequest { - profileId: string; - } + profileId: string; +} export interface DeleteOtherFromChatRequest { - reqSeq: number; + reqSeq: number; chatMid: string; targetUserMids: string[]; - } +} export interface DeleteSafetyStatusRequest { - disasterId: string; - } + disasterId: string; +} export interface DeleteSelfFromChatRequest { - reqSeq: number; + reqSeq: number; chatMid: string; lastSeenMessageDeliveredTime: Int64; lastSeenMessageId: string; lastMessageDeliveredTime: Int64; lastMessageId: string; - } +} export interface DeleteSquareChatAnnouncementRequest { - squareChatMid: string; + squareChatMid: string; announcementSeq: Int64; - } +} export interface DeleteSquareChatRequest { - squareChatMid: string; + squareChatMid: string; revision: Int64; - } +} export interface DeleteSquareRequest { - mid: string; + mid: string; revision: Int64; - } +} export interface DestinationLIFFRequest { - originalUrl: string; - } + originalUrl: string; +} export interface DestinationLIFFResponse { - destinationUrl: string; - } + destinationUrl: string; +} export interface DestroyMessageRequest { - squareChatMid: string; + squareChatMid: string; messageId: string; threadMid: string; - } +} export interface DestroyMessagesRequest { - squareChatMid: string; + squareChatMid: string; messageIds: string[]; threadMid: string; - } +} export interface DetermineMediaMessageFlowRequest { - chatMid: string; - } + chatMid: string; +} export interface DetermineMediaMessageFlowResponse { - flowMap: Record; + flowMap: Record; cacheTtlMillis: Int64; - } +} export interface Device { - udid: string; + udid: string; deviceModel: string; - } +} export interface DeviceInfo { - deviceName: string; + deviceName: string; systemName: string; systemVersion: string; model: string; @@ -7378,123 +9075,120 @@ export interface DeviceInfo { carrierCode: CarrierCode; carrierName: string; applicationType: ApplicationType; - } +} export interface DeviceLinkRequest { - deviceId: string; - } + deviceId: string; +} export interface DeviceLinkResponse { - latestOffset: Int64; - } + latestOffset: Int64; +} export interface DeviceUnlinkRequest { - deviceId: string; - } + deviceId: string; +} export interface DisasterInfo { - disasterId: string; + disasterId: string; title: string; region: string; disasterDescription: string; seeMoreUrl: string; status: vh_EnumC37632c; highImpact: boolean; - } +} export interface DisconnectEapAccountRequest { - eapType: Q70_q; - } + eapType: Q70_q; +} export interface DisplayMoney { - amount: string; + amount: string; amountString: string; currency: string; - } +} export interface E2EEKeyChain { - keychain: Pb1_V3[]; - } + keychain: Pb1_V3[]; +} export interface E2EEMessageInfo { - contentType: ContentType; - contentMetadata: Record; - chunks: (string|Buffer)[]; - } + contentType: ContentType; + contentMetadata: Record; + chunks: (string | Buffer)[]; +} export interface E2EEMetadata { - e2EEPublicKeyId: Int64; - } + e2EEPublicKeyId: Int64; +} export interface E2EENegotiationResult { - allowedTypes: number[]; + allowedTypes: number[]; publicKey: Pb1_C13097n4; specVersion: number; - } +} export interface EapLogin { - type: a80_EnumC16644b; + type: a80_EnumC16644b; accessToken: string; countryCode: string; - } +} export interface EditItemsInCollectionRequest { - collectionId: string; + collectionId: string; items: CollectionItem[]; - } +} export interface EditorsPickBannerForClient { - id: Int64; + id: Int64; endPageBannerImageUrl: string; defaulteditorsPickShowcaseType: Ob1_I; showNewBadge: boolean; name: string; description: string; - } +} export interface Eg_C8928b { - - } +} export interface Eh_C8933a { - - } +} export interface Eh_C8935c { - - } +} export interface EstablishE2EESessionRequest { - clientPublicKey: string; - } + clientPublicKey: string; +} export interface EstablishE2EESessionResponse { - sessionId: string; + sessionId: string; serverPublicKey: string; expireAt: Int64; - } +} export interface EventButton { - text: string; + text: string; linkUrl: string; - } +} export interface EvidenceId { - spaceId: string; + spaceId: string; objectId: string; - } +} export interface ExecuteOnetimeScenarioOperation { - connectionId: string; + connectionId: string; scenario: Scenario; - } +} export interface ExistPinCodeResponse { - exists: boolean; - } + exists: boolean; +} export interface ExtendedMessageBox { - id: string; + id: string; midType: MIDType; lastDeliveredMessageId: MessageBoxV2MessageId; lastSeenMessageId: Int64; @@ -7503,70 +9197,70 @@ export interface ExtendedMessageBox { lastRemovedMessageId: Int64; lastRemovedTime: Int64; hiddenAtMessageId: Int64; - } +} export interface ExtendedProfile { - birthday: ExtendedProfileBirthday; - } + birthday: ExtendedProfileBirthday; +} export interface ExtendedProfileBirthday { - year: string; + year: string; yearPrivacyLevelType: Pb1_H6; yearEnabled: boolean; day: string; dayPrivacyLevelType: Pb1_H6; dayEnabled: boolean; - } +} export interface FetchLiveTalkEventsRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; syncToken: string; limit: number; - } +} export interface FetchLiveTalkEventsResponse { - events: LiveTalkEvent[]; + events: LiveTalkEvent[]; syncToken: string; hasMore: boolean; - } +} export interface FetchMyEventsRequest { - subscriptionId: Int64; + subscriptionId: Int64; syncToken: string; limit: number; continuationToken: string; - } +} export interface FetchMyEventsResponse { - subscription: SubscriptionState; + subscription: SubscriptionState; events: SquareEvent[]; syncToken: string; continuationToken: string; - } +} export interface FetchOperationsRequest { - deviceId: string; + deviceId: string; offsetFrom: Int64; - } +} export interface FetchOperationsResponse { - operations: ThingsOperation[]; + operations: ThingsOperation[]; hasNext: boolean; - } +} export interface FetchPhonePinCodeMsgRequest { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; - } +} export interface FetchPhonePinCodeMsgResponse { - pinCodeMessage: string; + pinCodeMessage: string; destinationPhoneNumber: string; - } +} export interface FetchSquareChatEventsRequest { - subscriptionId: Int64; + subscriptionId: Int64; squareChatMid: string; syncToken: string; limit: number; @@ -7575,60 +9269,60 @@ export interface FetchSquareChatEventsRequest { continuationToken: string; fetchType: FetchType; threadMid: string; - } +} export interface FetchSquareChatEventsResponse { - subscription: SubscriptionState; + subscription: SubscriptionState; events: SquareEvent[]; syncToken: string; continuationToken: string; - } +} export interface FileMeta { - url: string; + url: string; hash: string; - } +} export interface FindChatByTicketRequest { - ticketId: string; - } + ticketId: string; +} export interface FindChatByTicketResponse { - chat: Chat; - } + chat: Chat; +} export interface FindLiveTalkByInvitationTicketRequest { - invitationTicket: string; - } + invitationTicket: string; +} export interface FindLiveTalkByInvitationTicketResponse { - chatInvitationTicket: string; + chatInvitationTicket: string; liveTalk: LiveTalk; chat: SquareChat; squareMember: SquareMember; chatMembershipState: SquareChatMembershipState; squareAdultOnly: BooleanState; - } +} export interface FindSquareByEmidRequest { - emid: string; - } + emid: string; +} export interface FindSquareByEmidResponse { - square: Square; + square: Square; myMembership: SquareMember; squareAuthority: SquareAuthority; squareStatus: SquareStatus; squareFeatureSet: SquareFeatureSet; noteStatus: NoteStatus; - } +} export interface FindSquareByInvitationTicketRequest { - invitationTicket: string; - } + invitationTicket: string; +} export interface FindSquareByInvitationTicketResponse { - square: Square; + square: Square; myMembership: SquareMember; squareAuthority: SquareAuthority; squareStatus: SquareStatus; @@ -7636,14 +9330,14 @@ export interface FindSquareByInvitationTicketResponse { noteStatus: NoteStatus; chat: SquareChat; chatStatus: SquareChatStatus; - } +} export interface FindSquareByInvitationTicketV2Request { - invitationTicket: string; - } + invitationTicket: string; +} export interface FindSquareByInvitationTicketV2Response { - square: Square; + square: Square; myMembership: SquareMember; squareAuthority: SquareAuthority; squareStatus: SquareStatus; @@ -7651,53 +9345,53 @@ export interface FindSquareByInvitationTicketV2Response { noteStatus: NoteStatus; chat: SquareChat; chatStatus: SquareChatStatusWithoutMessage; - } +} export interface FollowBuddyDetail { - iconType: number; - } + iconType: number; +} export interface FollowProfile { - followMid: Pb1_A4; + followMid: Pb1_A4; displayName: string; picturePath: string; following: boolean; allowFollow: boolean; followBuddyDetail: FollowBuddyDetail; - } +} export interface FollowRequest { - followMid: Pb1_A4; - } + followMid: Pb1_A4; +} export interface FontMeta { - id: string; + id: string; name: string; displayName: string; type: any; font: FileMeta; fontSubset: FileMeta; expiresAtMillis: Int64; - } +} export interface ForceEndLiveTalkRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface ForceSelectedSubTabInfo { - subTabId: string; + subTabId: string; forceSelectedSubTabRevision: Int64; wrsDefaultTabModelId: string; - } +} export interface FormattedPhoneNumbers { - localFormatPhoneNumber: string; + localFormatPhoneNumber: string; prettifiedFormatPhoneNumber: string; - } +} export interface FriendRequest { - eMid: string; + eMid: string; mid: string; direction: Pb1_F4; method: Pb1_G4; @@ -7707,626 +9401,626 @@ export interface FriendRequest { displayName: string; picturePath: string; pictureStatus: string; - } +} export interface FriendRequestsInfo { - totalIncomingCount: number; + totalIncomingCount: number; totalOutgoingCount: number; recentIncomings: FriendRequest[]; recentOutgoings: FriendRequest[]; totalIncomingLimit: number; totalOutgoingLimit: number; - } +} export interface FullSyncResponse { - reasons: number[]; + reasons: number[]; nextRevision: Int64; - } +} export interface GattReadAction { - serviceUuid: string; + serviceUuid: string; characteristicUuid: string; - } +} export interface Geolocation { - longitude: number; + longitude: number; latitude: number; accuracy: GeolocationAccuracy; altitudeMeters: number; velocityMetersPerSecond: number; bearingDegrees: number; beaconData: BeaconData[]; - } +} export interface GeolocationAccuracy { - radiusMeters: number; + radiusMeters: number; radiusConfidence: number; altitudeAccuracy: number; velocityAccuracy: number; bearingAccuracy: number; accuracyMode: Pb1_EnumC13050k; - } +} export interface GetAccessTokenRequest { - fontId: string; - } + fontId: string; +} export interface GetAccessTokenResponse { - expiresAtMillis: Int64; - } + expiresAtMillis: Int64; +} export interface I80_C26410k { - authSessionId: string; - } + authSessionId: string; +} export interface GetAcctVerifMethodResponse { - availableMethod: T70_EnumC14392c; + availableMethod: T70_EnumC14392c; sameAccountFromAuthFactor: boolean; - } +} export interface I80_C26412l { - availableMethod: I80_EnumC26392b; - } + availableMethod: I80_EnumC26392b; +} export interface GetAllChatMidsRequest { - withMemberChats: boolean; + withMemberChats: boolean; withInvitedChats: boolean; - } +} export interface GetAllChatMidsResponse { - memberChatMids: string[]; + memberChatMids: string[]; invitedChatMids: string[]; - } +} export interface GetAllowedRegistrationMethodResponse { - registrationMethod: T70_Z0; - } + registrationMethod: T70_Z0; +} export interface GetAssertionChallengeResponse { - sessionId: string; + sessionId: string; challenge: string; - } +} export interface GetAttestationChallengeResponse { - sessionId: string; + sessionId: string; challenge: string; - } +} export interface GetBalanceResponse { - balance: Balance; - } + balance: Balance; +} export interface GetBalanceSummaryResponseV2 { - payInfo: LinePayInfo; + payInfo: LinePayInfo; payPromotions: LinePayPromotion[]; pointInfo: LinePointInfo; balanceShortcutInfo: BalanceShortcutInfo; - } +} export interface GetBalanceSummaryV4WithPayV3Response { - payInfo: LinePayInfoV3; + payInfo: LinePayInfoV3; payPromotions: LinePayPromotion[]; balanceShortcutInfo: BalanceShortcutInfoV4; pointInfo: LinePointInfo; - } +} export interface GetBirthdayEffectResponse { - effect: HomeEffect; - } + effect: HomeEffect; +} export interface GetBleDeviceRequest { - serviceUuid: string; + serviceUuid: string; psdi: string; - } +} export interface GetBuddyChatBarRequest { - buddyMid: string; + buddyMid: string; chatBarRevision: Int64; richMenuId: string; - } +} export interface GetBuddyLiveRequest { - mid: string; - } + mid: string; +} export interface GetBuddyLiveResponse { - info: BuddyLive; + info: BuddyLive; refreshedIn: Int64; - } +} export interface GetBuddyStatusBarV2Request { - botMid: string; + botMid: string; revision: Int64; - } +} export interface GetCallStatusRequest { - basicSearchId: string; + basicSearchId: string; otp: string; - } +} export interface GetCallStatusResponse { - isInsideBusinessHours: boolean; + isInsideBusinessHours: boolean; displayName: string; isCallSettingEnabled: boolean; isExpiredOtp: boolean; requireOtpInCallUrl: boolean; - } +} export interface GetCampaignRequest { - campaignType: string; - } + campaignType: string; +} export interface GetCampaignResponse { - campaignStatus: NZ0_EnumC12188n; + campaignStatus: NZ0_EnumC12188n; campaignProperty: CampaignProperty; intervalDateTimeMillis: Int64; - } +} export interface GetChallengeForPaakAuthRequest { - sessionId: string; - } + sessionId: string; +} export interface GetChallengeForPaakAuthResponse { - options: any; - } + options: any; +} export interface GetChallengeForPrimaryRegRequest { - sessionId: string; - } + sessionId: string; +} export interface GetChallengeForPrimaryRegResponse { - options: PublicKeyCredentialCreationOptions; - } + options: PublicKeyCredentialCreationOptions; +} export interface GetChannelContextRequest { - authSessionId: string; - } + authSessionId: string; +} export interface GetChannelContextResponse { - channelContext: any; - } + channelContext: any; +} export interface GetChatappRequest { - chatappId: string; + chatappId: string; language: string; - } +} export interface GetChatappResponse { - app: Chatapp; - } + app: Chatapp; +} export interface GetChatsRequest { - chatMids: string[]; + chatMids: string[]; withMembers: boolean; withInvitees: boolean; - } +} export interface GetChatsResponse { - chats: Chat[]; - } + chats: Chat[]; +} export interface GetCoinHistoryRequest { - appStoreCode: jO0_EnumC27533B; + appStoreCode: jO0_EnumC27533B; country: string; language: string; searchEndDate: string; offset: number; limit: number; - } +} export interface GetCoinHistoryResponse { - histories: CoinHistory[]; + histories: CoinHistory[]; balance: Coin; offset: number; hasNext: boolean; - } +} export interface GetCoinProductsRequest { - appStoreCode: jO0_EnumC27533B; + appStoreCode: jO0_EnumC27533B; country: string; language: string; pgCode: jO0_EnumC27559z; - } +} export interface GetCoinProductsResponse { - items: CoinProductItem[]; - } + items: CoinProductItem[]; +} export interface GetContactCalendarEventResponse { - targetUserMid: string; + targetUserMid: string; userType: LN0_X0; ContactCalendarEvents: ContactCalendarEvents; snapshotTimeMillis: Int64; - } +} export interface GetContactCalendarEventTarget { - targetUserMid: string; - } + targetUserMid: string; +} export interface GetContactCalendarEventsRequest { - targetUsers: GetContactCalendarEventTarget[]; + targetUsers: GetContactCalendarEventTarget[]; syncReason: Pb1_V7; requiredContactCalendarEvents: any[]; - } +} export interface GetContactCalendarEventsResponse { - responses: GetContactCalendarEventResponse[]; - } + responses: GetContactCalendarEventResponse[]; +} export interface GetContactV3Response { - targetUserMid: string; + targetUserMid: string; userType: LN0_X0; targetProfileDetail: TargetProfileDetail; friendDetail: LN0_Z; blockDetail: LN0_V; recommendationDetail: LN0_y0; notificationSettingEntry: NotificationSettingEntry; - } +} export interface GetContactV3Target { - targetUserMid: string; - } + targetUserMid: string; +} export interface GetContactsV3Request { - targetUsers: GetContactV3Target[]; + targetUsers: GetContactV3Target[]; syncReason: Pb1_V7; checkUserStatusStrictly: boolean; - } +} export interface GetContactsV3Response { - responses: GetContactV3Response[]; - } + responses: GetContactV3Response[]; +} export interface I80_C26413m { - authSessionId: string; + authSessionId: string; simCard: I80_B0; - } +} export interface I80_C26414n { - countryCode: string; + countryCode: string; countryInEEA: boolean; countrySetOfEEA: string[]; - } +} export interface GetCountryInfoResponse { - countryCode: string; + countryCode: string; countryInEEA: boolean; countrySetOfEEA: string[]; - } +} export interface GetDisasterCasesResponse { - disasters: DisasterInfo[]; + disasters: DisasterInfo[]; messageTemplate: string[]; ttlInMillis: Int64; - } +} export interface GetE2EEKeyBackupCertificatesResponse { - urlHashList: string[]; - } + urlHashList: string[]; +} export interface GetE2EEKeyBackupInfoResponse { - blobHeaderHash: string; + blobHeaderHash: string; blobPayloadHash: string; missingKeyIds: number[]; startTimeMillis: Int64; endTimeMillis: Int64; - } +} export interface GetExchangeKeyRequest { - sessionId: string; - } + sessionId: string; +} export interface GetExchangeKeyResponse { - exchangeKey: Record; - } + exchangeKey: Record; +} export interface GetFollowBlacklistRequest { - cursor: string; - } + cursor: string; +} export interface GetFollowBlacklistResponse { - profiles: FollowProfile[]; + profiles: FollowProfile[]; cursor: string; - } +} export interface GetFollowersRequest { - followMid: Pb1_A4; + followMid: Pb1_A4; cursor: string; - } +} export interface GetFollowersResponse { - profiles: FollowProfile[]; + profiles: FollowProfile[]; cursor: string; followingCount: Int64; followerCount: Int64; - } +} export interface GetFollowingsRequest { - followMid: Pb1_A4; + followMid: Pb1_A4; cursor: string; - } +} export interface GetFollowingsResponse { - profiles: FollowProfile[]; + profiles: FollowProfile[]; cursor: string; followingCount: Int64; followerCount: Int64; - } +} export interface GetFontMetasRequest { - requestCause: VR0_l; - } + requestCause: VR0_l; +} export interface GetFontMetasResponse { - fontMetas: FontMeta[]; + fontMetas: FontMeta[]; ttlInSeconds: number; - } +} export interface GetFriendDetailResponse { - targetUserMid: string; + targetUserMid: string; friendDetail: LN0_Z; - } +} export interface GetFriendDetailTarget { - targetUserMid: string; - } + targetUserMid: string; +} export interface GetFriendDetailsRequest { - targetUsers: GetFriendDetailTarget[]; + targetUsers: GetFriendDetailTarget[]; syncReason: Pb1_V7; - } +} export interface GetFriendDetailsResponse { - responses: GetFriendDetailResponse[]; - } + responses: GetFriendDetailResponse[]; +} export interface GetGnbBadgeStatusRequest { - uenRevision: string; - } + uenRevision: string; +} export interface GetGnbBadgeStatusResponse { - uenRevision: string; + uenRevision: string; badgeStatus: NZ0_EnumC12170h; - } +} export interface GetGoogleAdOptionsRequest { - squareMid: string; + squareMid: string; chatMid: string; adScreen: AdScreen; - } +} export interface GetGoogleAdOptionsResponse { - showAd: boolean; + showAd: boolean; contentUrls: string[]; clientCacheTtlSeconds: number; - } +} export interface GetGroupCallUrlInfoRequest { - urlId: string; - } + urlId: string; +} export interface GetGroupCallUrlInfoResponse { - title: string; + title: string; createdTimeMillis: Int64; - } +} export interface GetGroupCallUrlsResponse { - urls: GroupCallUrl[]; - } + urls: GroupCallUrl[]; +} export interface GetHomeFlexContentRequest { - supportedFlexVersion: number; - } + supportedFlexVersion: number; +} export interface GetHomeFlexContentResponse { - placements: HomeTabPlacement[]; + placements: HomeTabPlacement[]; expireTimeMillis: Int64; gnbBadgeId: string; gnbBadgeExpireTimeMillis: Int64; - } +} export interface GetHomeServiceListResponse { - services: HomeService[]; + services: HomeService[]; fixedServiceIds: number[]; pinnedServiceCandidateIds: number[]; categories: HomeCategory[]; fixedServiceIdsV3: number[]; specificServiceId: number; - } +} export interface GetHomeServicesRequest { - ids: number[]; - } + ids: number[]; +} export interface GetHomeServicesResponse { - services: HomeService[]; - } + services: HomeService[]; +} export interface GetIncentiveStatusResponse { - paypayPoint: number; + paypayPoint: number; incentiveCode: string; subscribedFromViral: boolean; - } +} export interface GetInvitationTicketUrlRequest { - mid: string; - } + mid: string; +} export interface GetInvitationTicketUrlResponse { - invitationURL: string; - } + invitationURL: string; +} export interface GetJoinableSquareChatsRequest { - squareMid: string; + squareMid: string; continuationToken: string; limit: number; - } +} export interface GetJoinableSquareChatsResponse { - squareChats: SquareChat[]; + squareChats: SquareChat[]; continuationToken: string; totalSquareChatCount: number; - squareChatStatuses: Record; - } + squareChatStatuses: Record; +} export interface GetJoinedMembershipByBotMidRequest { - botMid: string; - } + botMid: string; +} export interface GetJoinedMembershipRequest { - uniqueKey: string; - } + uniqueKey: string; +} export interface GetJoinedSquareChatsRequest { - continuationToken: string; + continuationToken: string; limit: number; - } +} export interface GetJoinedSquareChatsResponse { - chats: SquareChat[]; - chatMembers: Record; - statuses: Record; + chats: SquareChat[]; + chatMembers: Record; + statuses: Record; continuationToken: string; - } +} export interface GetJoinedSquaresRequest { - continuationToken: string; + continuationToken: string; limit: number; - } +} export interface GetJoinedSquaresResponse { - squares: Square[]; - members: Record; - authorities: Record; - statuses: Record; + squares: Square[]; + members: Record; + authorities: Record; + statuses: Record; continuationToken: string; - noteStatuses: Record; - } + noteStatuses: Record; +} export interface GetKeyBackupCertificatesV2Response { - urlHashList: string[]; - } + urlHashList: string[]; +} export interface GetLFLSuggestionResponse { - majorVersion: string; + majorVersion: string; minorVersion: string; clusterLink: string; - } +} export interface GetLiveTalkInfoForNonMemberRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; speakers: string[]; - } +} export interface GetLiveTalkInfoForNonMemberResponse { - chatName: string; + chatName: string; chatImageObsHash: string; liveTalk: LiveTalk; speakers: LiveTalkSpeaker[]; chatInvitationTicket: string; - } +} export interface GetLiveTalkInvitationUrlRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface GetLiveTalkInvitationUrlResponse { - invitationUrl: string; - } + invitationUrl: string; +} export interface GetLiveTalkSpeakersForNonMemberRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; speakers: string[]; - } +} export interface GetLiveTalkSpeakersForNonMemberResponse { - speakers: LiveTalkSpeaker[]; - } + speakers: LiveTalkSpeaker[]; +} export interface GetLoginActorContextRequest { - sessionId: string; - } + sessionId: string; +} export interface GetLoginActorContextResponse { - applicationType: string; + applicationType: string; ipAddress: string; location: string; - } +} export interface GetMappedProfileIdsRequest { - targetUserMids: string[]; - } + targetUserMids: string[]; +} export interface GetMappedProfileIdsResponse { - mappings: Record; - } + mappings: Record; +} export interface I80_C26415o { - authSessionId: string; - } + authSessionId: string; +} export interface I80_C26416p { - maskedEmail: string; - } + maskedEmail: string; +} export interface GetMaskedEmailResponse { - maskedEmail: string; - } + maskedEmail: string; +} export interface GetMessageReactionsRequest { - squareChatMid: string; + squareChatMid: string; messageId: string; type: MessageReactionType; continuationToken: string; limit: number; threadMid: string; - } +} export interface GetMessageReactionsResponse { - reactions: SquareMessageReaction[]; + reactions: SquareMessageReaction[]; status: SquareMessageReactionStatus; continuationToken: string; - } +} export interface GetModuleLayoutV4Request { - etag: string; - } + etag: string; +} export interface GetModulesRequestV2 { - etag: string; + etag: string; deviceAdId: string; - } +} export interface GetModulesRequestV3 { - etag: string; + etag: string; tabIdentifier: NZ0_EnumC12169g1; deviceAdId: string; agreedWithTargetingAdByMid: boolean; - } +} export interface GetModulesV4WithStatusRequest { - etag: string; + etag: string; subTabId: string; deviceAdId: string; agreedWithTargetingAdByMid: boolean; deviceId: string; - } +} export interface GetMusicSubscriptionStatusResponse { - validUntil: Int64; + validUntil: Int64; expired: boolean; isStickersPremiumEnabled: boolean; - } +} export interface GetMyAssetInformationV2Request { - refresh: boolean; - } + refresh: boolean; +} export interface GetMyAssetInformationV2Response { - headerInfo: HeaderInfo; + headerInfo: HeaderInfo; assetServiceInfos: AssetServiceInfo[]; serviceDisclaimerInfo: ServiceDisclaimerInfo; pointInfo: PointInfo; @@ -8334,160 +10028,160 @@ export interface GetMyAssetInformationV2Response { pocketMoneyInfo: PocketMoneyInfo; scoreInfo: ScoreInfo; timestamp: Int64; - } +} export interface GetMyChatappsRequest { - language: string; + language: string; continuationToken: string; - } +} export interface GetMyChatappsResponse { - apps: MyChatapp[]; + apps: MyChatapp[]; continuationToken: string; - } +} export interface GetMyDashboardRequest { - tabIdentifier: NZ0_EnumC12169g1; - } + tabIdentifier: NZ0_EnumC12169g1; +} export interface GetMyDashboardResponse { - responseStatus: NZ0_W0; + responseStatus: NZ0_W0; messages: MyDashboardItem[]; cacheTimeSec: number; cautionText: string; - } +} export interface GetNoteStatusRequest { - squareMid: string; - } + squareMid: string; +} export interface GetNoteStatusResponse { - squareMid: string; + squareMid: string; status: NoteStatus; - } +} export interface GetNotificationSettingsRequest { - chatMids: string[]; + chatMids: string[]; syncReason: Pb1_V7; - } +} export interface GetNotificationSettingsResponse { - notificationSettingEntries: Record; - } + notificationSettingEntries: Record; +} export interface I80_C26417q { - authSessionId: string; - } + authSessionId: string; +} export interface GetPasswordHashingParametersForPwdRegRequest { - authSessionId: string; - } + authSessionId: string; +} export interface GetPasswordHashingParametersForPwdRegResponse { - params: PasswordHashingParameters; + params: PasswordHashingParameters; passwordValidationRule: PasswordValidationRule[]; - } +} export interface I80_C26418r { - params: PasswordHashingParameters; + params: PasswordHashingParameters; passwordValidationRule: PasswordValidationRule[]; - } +} export interface GetPasswordHashingParametersForPwdVerifRequest { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; - } +} export interface I80_C26419s { - authSessionId: string; - } + authSessionId: string; +} export interface GetPasswordHashingParametersForPwdVerifResponse { - isV1HashRequired: boolean; + isV1HashRequired: boolean; v1HashParams: V1PasswordHashingParameters; hashParams: PasswordHashingParameters; - } +} export interface I80_C26420t { - isV1HashRequired: boolean; + isV1HashRequired: boolean; v1HashParams: V1PasswordHashingParameters; hashParams: PasswordHashingParameters; - } +} export interface GetPasswordHashingParametersRequest { - sessionId: string; - } + sessionId: string; +} export interface GetPasswordHashingParametersResponse { - hmacKey: string; + hmacKey: string; scryptParams: ScryptParams; passwordValidationRule: PasswordValidationRule[]; - } +} export interface GetPhoneVerifMethodForRegistrationRequest { - authSessionId: string; + authSessionId: string; device: Device; userPhoneNumber: UserPhoneNumber; - } +} export interface GetPhoneVerifMethodForRegistrationResponse { - availableMethods: number[]; + availableMethods: number[]; prettifiedPhoneNumber: string; - } +} export interface GetPhoneVerifMethodV2Request { - authSessionId: string; + authSessionId: string; device: Device; userPhoneNumber: UserPhoneNumber; - } +} export interface I80_C26421u { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; - } +} export interface I80_C26422v { - availableMethods: number[]; + availableMethods: number[]; prettifiedPhoneNumber: string; - } +} export interface GetPhoneVerifMethodV2Response { - availableMethods: number[]; + availableMethods: number[]; prettifiedPhoneNumber: string; - } +} export interface GetPhotoboothBalanceResponse { - availableTickets: number; + availableTickets: number; nextTicketAvailableAt: Int64; - } +} export interface GetPopularKeywordsResponse { - popularKeywords: PopularKeyword[]; + popularKeywords: PopularKeyword[]; expiredAt: Int64; - } +} export interface GetPredefinedScenarioSetsRequest { - deviceIds: string[]; - } + deviceIds: string[]; +} export interface GetPredefinedScenarioSetsResponse { - scenarioSets: Record; - } + scenarioSets: Record; +} export interface GetPremiumContextForMigResponse { - isPremiumActive: boolean; + isPremiumActive: boolean; isPremiumBackupActive: boolean; premiumType: T70_L; availablePremiumTypes: number[]; - } +} export interface GetPremiumDataRetentionResponse { - dataRetentions: DataRetention[]; + dataRetentions: DataRetention[]; noSyncUntil: Int64; - } +} export interface GetPremiumStatusResponse { - active: boolean; + active: boolean; validUntil: Int64; updatedTime: Int64; freeTrialUsed: boolean; @@ -8505,89 +10199,89 @@ export interface GetPremiumStatusResponse { invitedByFriend: boolean; canceledProviders: number[]; nextPaymentTime: Int64; - } +} export interface GetPreviousMessagesV2Request { - messageBoxId: string; + messageBoxId: string; endMessageId: MessageBoxV2MessageId; messagesCount: number; withReadCount: boolean; receivedOnly: boolean; - } +} export interface GetProductLatestVersionForUserRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; - } +} export interface GetProductLatestVersionForUserResponse { - latestVersion: Int64; + latestVersion: Int64; latestVersionString: string; - } +} export interface GetProductRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; carrierCode: string; saveBrowsingHistory: boolean; - } +} export interface GetProductResponse { - productDetail: ProductDetail; - } + productDetail: ProductDetail; +} export interface GetProfileRequest { - profileId: string; - } + profileId: string; +} export interface GetProfileResponse { - profile: Profile; - } + profile: Profile; +} export interface GetProfilesRequest { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface GetProfilesResponse { - profiles: Profile[]; - } + profiles: Profile[]; +} export interface GetPublishedMembershipsRequest { - basicSearchId: string; - } + basicSearchId: string; +} export interface GetQuickMenuResponse { - pointInfo: QuickMenuPointInfo; + pointInfo: QuickMenuPointInfo; couponInfo: QuickMenuCouponInfo; myCardInfo: QuickMenuMyCardInfo; - } +} export interface GetRecommendationDetailResponse { - targetUserMid: string; + targetUserMid: string; recommendationOrNot: LN0_y0; - } +} export interface GetRecommendationDetailTarget { - targetUserMid: string; - } + targetUserMid: string; +} export interface GetRecommendationDetailsRequest { - targetUsers: GetRecommendationDetailTarget[]; + targetUsers: GetRecommendationDetailTarget[]; syncReason: Pb1_V7; - } +} export interface GetRecommendationDetailsResponse { - responses: GetRecommendationDetailResponse[]; - } + responses: GetRecommendationDetailResponse[]; +} export interface GetRecommendationResponse { - results: ProductSearchSummary[]; + results: ProductSearchSummary[]; continuationToken: string; totalSize: Int64; - } +} export interface GetRepairElementsRequest { - profile: boolean; + profile: boolean; settings: boolean; configurations: ConfigurationsParams; numLocalJoinedGroups: number; @@ -8596,13 +10290,13 @@ export interface GetRepairElementsRequest { numLocalRecommendations: number; numLocalBlockedFriends: number; numLocalBlockedRecommendations: number; - localGroupMembers: Record; + localGroupMembers: Record; syncReason: Pb1_V7; - localProfileMappings: Record; - } + localProfileMappings: Record; +} export interface GetRepairElementsResponse { - profile: RepairTriggerProfileElement; + profile: RepairTriggerProfileElement; settings: RepairTriggerSettingsElement; configurations: RepairTriggerConfigurationsElement; numJoinedGroups: RepairTriggerNumElement; @@ -8613,453 +10307,453 @@ export interface GetRepairElementsResponse { numBlockedRecommendations: RepairTriggerNumElement; groupMembers: RepairTriggerGroupMembersElement; profileMappings: RepairTriggerProfileMappingListElement; - } +} export interface GetRequest { - keyName: string; + keyName: string; ns: t80_h; - } +} export interface GetResourceFileReponse { - tagClusterFileResponse: GetTagClusterFileResponse; - } + tagClusterFileResponse: GetTagClusterFileResponse; +} export interface GetResourceFileRequest { - tagClusterFileRequest: Ob1_C12642m0; + tagClusterFileRequest: Ob1_C12642m0; staging: boolean; - } +} export interface GetResponse { - value: SettingValue; - } + value: SettingValue; +} export interface GetResponseStatusRequest { - botMid: string; - } + botMid: string; +} export interface GetResponseStatusResponse { - displayedResponseStatus: jf_EnumC27712a; - } + displayedResponseStatus: jf_EnumC27712a; +} export interface GetSCCRequest { - basicSearchId: string; - } + basicSearchId: string; +} export interface I80_C26423w { - authSessionId: string; - } + authSessionId: string; +} export interface I80_C26424x { - encryptionKey: I80_y0; - } + encryptionKey: I80_y0; +} export interface GetSeasonalEffectsResponse { - effects: HomeEffect[]; - } + effects: HomeEffect[]; +} export interface GetSecondAuthMethodResponse { - secondAuthMethod: T70_e1; - } + secondAuthMethod: T70_e1; +} export interface GetServiceShortcutMenuResponse { - revision: string; + revision: string; refreshTimeSec: number; expandable: boolean; serviceShortcuts: ServiceShortcut[]; menuDescription: string; numberOfItemsInRow: number; - } +} export interface GetSessionContentBeforeMigCompletionResponse { - appTypeDifferentFromPrevDevice: boolean; + appTypeDifferentFromPrevDevice: boolean; e2eeKeyBackupServiceConfig: boolean; e2eeKeyBackupPeriodServiceConfig: number; - } +} export interface GetSmartChannelRecommendationsRequest { - maxResults: number; + maxResults: number; placement: string; testMode: boolean; - } +} export interface GetSmartChannelRecommendationsResponse { - smartChannelRecommendations: SmartChannelRecommendation[]; + smartChannelRecommendations: SmartChannelRecommendation[]; minInterval: number; requestId: string; - } +} export interface GetSquareAuthoritiesRequest { - squareMids: string[]; - } + squareMids: string[]; +} export interface GetSquareAuthoritiesResponse { - authorities: Record; - } + authorities: Record; +} export interface GetSquareAuthorityRequest { - squareMid: string; - } + squareMid: string; +} export interface GetSquareAuthorityResponse { - authority: SquareAuthority; - } + authority: SquareAuthority; +} export interface GetSquareBotRequest { - botMid: string; - } + botMid: string; +} export interface GetSquareBotResponse { - squareBot: SquareBot; - } + squareBot: SquareBot; +} export interface GetSquareCategoriesResponse { - categoryList: Category[]; - } + categoryList: Category[]; +} export interface GetSquareChatAnnouncementsRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareChatAnnouncementsResponse { - announcements: SquareChatAnnouncement[]; - } + announcements: SquareChatAnnouncement[]; +} export interface GetSquareChatEmidRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareChatEmidResponse { - squareChatEmid: string; - } + squareChatEmid: string; +} export interface GetSquareChatFeatureSetRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareChatFeatureSetResponse { - squareChatFeatureSet: SquareChatFeatureSet; - } + squareChatFeatureSet: SquareChatFeatureSet; +} export interface GetSquareChatMemberRequest { - squareMemberMid: string; + squareMemberMid: string; squareChatMid: string; - } +} export interface GetSquareChatMemberResponse { - squareChatMember: SquareChatMember; - } + squareChatMember: SquareChatMember; +} export interface GetSquareChatMembersRequest { - squareChatMid: string; + squareChatMid: string; continuationToken: string; limit: number; - } +} export interface GetSquareChatMembersResponse { - squareChatMembers: SquareMember[]; + squareChatMembers: SquareMember[]; continuationToken: string; - contentsAttributes: Record; - } + contentsAttributes: Record; +} export interface GetSquareChatRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareChatResponse { - squareChat: SquareChat; + squareChat: SquareChat; squareChatMember: SquareChatMember; squareChatStatus: SquareChatStatus; - } +} export interface GetSquareChatStatusRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareChatStatusResponse { - chatStatus: SquareChatStatus; - } + chatStatus: SquareChatStatus; +} export interface GetSquareEmidRequest { - squareMid: string; - } + squareMid: string; +} export interface GetSquareEmidResponse { - squareEmid: string; - } + squareEmid: string; +} export interface GetSquareFeatureSetRequest { - squareMid: string; - } + squareMid: string; +} export interface GetSquareFeatureSetResponse { - squareFeatureSet: SquareFeatureSet; - } + squareFeatureSet: SquareFeatureSet; +} export interface GetSquareInfoByChatMidRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface GetSquareInfoByChatMidResponse { - defaultChatMid: string; + defaultChatMid: string; squareName: string; squareDesc: string; - } +} export interface GetSquareMemberRelationRequest { - squareMid: string; + squareMid: string; targetSquareMemberMid: string; - } +} export interface GetSquareMemberRelationResponse { - squareMid: string; + squareMid: string; targetSquareMemberMid: string; relation: SquareMemberRelation; - } +} export interface GetSquareMemberRelationsRequest { - state: SquareMemberRelationState; + state: SquareMemberRelationState; continuationToken: string; limit: number; - } +} export interface GetSquareMemberRelationsResponse { - squareMembers: SquareMember[]; - relations: Record; + squareMembers: SquareMember[]; + relations: Record; continuationToken: string; - } +} export interface GetSquareMemberRequest { - squareMemberMid: string; - } + squareMemberMid: string; +} export interface GetSquareMemberResponse { - squareMember: SquareMember; + squareMember: SquareMember; relation: SquareMemberRelation; oneOnOneChatMid: string; contentsAttribute: ContentsAttribute; - } +} export interface GetSquareMembersBySquareRequest { - squareMid: string; + squareMid: string; squareMemberMids: string[]; - } +} export interface GetSquareMembersBySquareResponse { - members: SquareMember[]; - contentsAttributes: Record; - } + members: SquareMember[]; + contentsAttributes: Record; +} export interface GetSquareMembersRequest { - mids: string[]; - } + mids: string[]; +} export interface GetSquareMembersResponse { - members: Record; - } + members: Record; +} export interface GetSquareRequest { - mid: string; - } + mid: string; +} export interface GetSquareResponse { - square: Square; + square: Square; myMembership: SquareMember; squareAuthority: SquareAuthority; squareStatus: SquareStatus; squareFeatureSet: SquareFeatureSet; noteStatus: NoteStatus; extraInfo: SquareExtraInfo; - } +} export interface GetSquareStatusRequest { - squareMid: string; - } + squareMid: string; +} export interface GetSquareStatusResponse { - squareStatus: SquareStatus; - } + squareStatus: SquareStatus; +} export interface GetSquareThreadMidRequest { - chatMid: string; + chatMid: string; messageId: string; - } +} export interface GetSquareThreadMidResponse { - threadMid: string; - } + threadMid: string; +} export interface GetSquareThreadRequest { - threadMid: string; + threadMid: string; includeRootMessage: boolean; - } +} export interface GetSquareThreadResponse { - squareThread: SquareThread; + squareThread: SquareThread; myThreadMember: SquareThreadMember; rootMessage: SquareMessage; - } +} export interface GetStudentInformationResponse { - studentInformation: StudentInformation; + studentInformation: StudentInformation; isValid: boolean; - } +} export interface GetSubscriptionPlansRequest { - subscriptionService: any; + subscriptionService: any; storeCode: Ob1_K1; - } +} export interface GetSubscriptionPlansResponse { - plans: SubscriptionPlan[]; - } + plans: SubscriptionPlan[]; +} export interface GetSubscriptionStatusRequest { - includeOtherOwnedSubscriptions: boolean; - } + includeOtherOwnedSubscriptions: boolean; +} export interface GetSubscriptionStatusResponse { - subscriptions: Record; + subscriptions: Record; hasValidStudentInformation: boolean; - } +} export interface GetSuggestDictionarySettingResponse { - results: SuggestDictionarySetting[]; - } + results: SuggestDictionarySetting[]; +} export interface GetSuggestResourcesV2Request { - productType: Ob1_O0; + productType: Ob1_O0; productIds: string[]; - } +} export interface GetSuggestResourcesV2Response { - suggestResources: Record; - } + suggestResources: Record; +} export interface GetSuggestTrialRecommendationResponse { - recommendations: SuggestTrialRecommendation[]; + recommendations: SuggestTrialRecommendation[]; expiresAt: Int64; recommendationGrouping: string; - } +} export interface GetTagClusterFileResponse { - path: string; + path: string; updatedTimeMillis: Int64; - } +} export interface GetTaiwanBankBalanceRequest { - accessToken: string; + accessToken: string; authorizationCode: string; codeVerifier: string; - } +} export interface GetTaiwanBankBalanceResponse { - maintenaceText: string; + maintenaceText: string; lineBankPromotions: LineBankPromotion[]; taiwanBankBalanceInfo: TaiwanBankBalanceInfo; lineBankShortcutInfo: LineBankShortcutInfo; loginParameters: TaiwanBankLoginParameters; - } +} export interface GetTargetProfileResponse { - targetUserMid: string; + targetUserMid: string; userType: LN0_X0; targetProfileDetail: TargetProfileDetail; - } +} export interface GetTargetProfileTarget { - targetUserMid: string; - } + targetUserMid: string; +} export interface GetTargetProfilesRequest { - targetUsers: GetTargetProfileTarget[]; + targetUsers: GetTargetProfileTarget[]; syncReason: Pb1_V7; - } +} export interface GetTargetProfilesResponse { - responses: GetTargetProfileResponse[]; - } + responses: GetTargetProfileResponse[]; +} export interface GetTargetingPopupResponse { - targetingPopups: PopupProperty[]; + targetingPopups: PopupProperty[]; intervalTimeSec: number; - } +} export interface GetThaiBankBalanceRequest { - deviceId: string; - } + deviceId: string; +} export interface GetThaiBankBalanceResponse { - maintenaceText: string; + maintenaceText: string; thaiBankBalanceInfo: ThaiBankBalanceInfo; lineBankPromotions: LineBankPromotion[]; lineBankShortcutInfo: LineBankShortcutInfo; - } +} export interface GetTotalCoinBalanceRequest { - appStoreCode: jO0_EnumC27533B; - } + appStoreCode: jO0_EnumC27533B; +} export interface GetTotalCoinBalanceResponse { - totalBalance: string; + totalBalance: string; paidCoinBalance: string; freeCoinBalance: string; rewardCoinBalance: string; expectedAutoExchangedCoinBalance: string; - } +} export interface GetUserCollectionsRequest { - lastUpdatedTimeMillis: Int64; + lastUpdatedTimeMillis: Int64; includeSummary: boolean; productType: Ob1_O0; - } +} export interface GetUserCollectionsResponse { - collections: Collection[]; + collections: Collection[]; updated: boolean; - } +} export interface GetUserProfileResponse { - userProfile: UserProfile; - } + userProfile: UserProfile; +} export interface GetUserSettingsRequest { - requestedAttrs: any[]; - } + requestedAttrs: any[]; +} export interface GetUserSettingsResponse { - requestedAttrs: number[]; + requestedAttrs: number[]; userSettings: SquareUserSettings; - } +} export interface GetUserVectorRequest { - majorVersion: string; - } + majorVersion: string; +} export interface GetUserVectorResponse { - userVector: number[]; + userVector: number[]; majorVersion: string; minorVersion: string; - } +} export interface GetUsersMappedByProfileRequest { - profileId: string; + profileId: string; syncReason: Pb1_V7; - } +} export interface GetUsersMappedByProfileResponse { - mappedMids: string[]; - } + mappedMids: string[]; +} export interface GlobalEvent { - type: Pb1_EnumC13209v5; + type: Pb1_EnumC13209v5; minDelayInMinutes: number; maxDelayInMinutes: number; createTimeMillis: Int64; maxDelayHardLimit: boolean; - } +} export interface GroupCall { - online: boolean; + online: boolean; chatMid: string; hostMid: string; memberMids: string[]; @@ -9067,10 +10761,10 @@ export interface GroupCall { mediaType: Pb1_EnumC13237x5; protocol: Pb1_EnumC13251y5; maxAllowableMembers: number; - } +} export interface GroupCallRoute { - token: string; + token: string; cscf: CallHost; mix: CallHost; hostMid: string; @@ -9087,59 +10781,59 @@ export interface GroupCallRoute { orionAddress: string; voipAddress6: string; stnpk: string; - } +} export interface GroupCallUrl { - urlId: string; + urlId: string; title: string; createdTimeMillis: Int64; - } +} export interface GroupExtra { - creator: string; + creator: string; preventedJoinByTicket: boolean; invitationTicket: string; - memberMids: Record; - inviteeMids: Record; + memberMids: Record; + inviteeMids: Record; addFriendDisabled: boolean; ticketDisabled: boolean; autoName: boolean; - } +} export interface HeaderContent { - iconUrl: string; + iconUrl: string; iconAltText: string; linkUrl: string; title: string; animationImageUrl: string; tooltipText: string; - } +} export interface HeaderInfo { - totalBalance: string; + totalBalance: string; currencyProperty: CurrencyProperty; - } +} export interface HideSquareMemberContentsRequest { - squareMemberMid: string; - } + squareMemberMid: string; +} export interface HomeCategory { - id: number; + id: number; title: string; ids: number[]; - } +} export interface HomeEffect { - id: string; + id: string; resourceUrl: string; checksum: string; startDate: Int64; endDate: Int64; - } +} export interface HomeService { - id: number; + id: number; title: string; serviceEntryUrl: string; storeUrl: string; @@ -9149,62 +10843,62 @@ export interface HomeService { badgeType: Eg_EnumC8927a; serviceDescription: string; iconThemeDisabled: boolean; - } +} export interface HomeTabPlacement { - placementTemplateId: string; + placementTemplateId: string; placementService: string; placementLogic: string; contents: string; crsPlacementImpressionTrackingUrl: string; - } +} export interface Icon { - darkModeUrl: string; + darkModeUrl: string; lightModeUrl: string; - } +} export interface IconDisplayRule { - rule: string; + rule: string; offset: number; - } +} export interface IdentifierConfirmationRequest { - metaData: Record; + metaData: Record; forceRegistration: boolean; verificationCode: string; - } +} export interface IdentityCredentialRequest { - metaData: Record; + metaData: Record; identityProvider: IdentityProvider; cipherKeyId: string; cipherText: string; confirmationRequest: IdentifierConfirmationRequest; - } +} export interface IdentityCredentialResponse { - metaData: Record; + metaData: Record; responseType: Pb1_F5; confirmationVerifier: string; timeoutInSeconds: Int64; - } +} export interface Image { - url: string; + url: string; height: number; width: number; - } +} export interface ImageTextProperty { - status: Ob1_EnumC12656r0; + status: Ob1_EnumC12656r0; plainText: string; nameTextMaxCharacterCount: number; encryptedText: string; - } +} export interface InstantNews { - newsId: Int64; + newsId: Int64; newsService: string; ttlMillis: Int64; category: string; @@ -9213,135 +10907,135 @@ export interface InstantNews { title: string; url: string; image: string; - } +} export interface InviteFriendsRequest { - campaignId: string; + campaignId: string; invitees: string[]; - } +} export interface InviteFriendsResponse { - result: fN0_EnumC24469a; - } + result: fN0_EnumC24469a; +} export interface InviteIntoChatRequest { - reqSeq: number; + reqSeq: number; chatMid: string; targetUserMids: string[]; - } +} export interface InviteIntoSquareChatRequest { - inviteeMids: string[]; + inviteeMids: string[]; squareChatMid: string; - } +} export interface InviteIntoSquareChatResponse { - inviteeMids: string[]; - } + inviteeMids: string[]; +} export interface InviteToChangeRoleRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; targetMid: string; targetRole: LiveTalkRole; - } +} export interface InviteToListenRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; targetMid: string; - } +} export interface InviteToLiveTalkRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; invitees: string[]; - } +} export interface InviteToSpeakRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; targetMid: string; - } +} export interface InviteToSpeakResponse { - inviteRequestId: string; - } + inviteRequestId: string; +} export interface InviteToSquareRequest { - squareMid: string; + squareMid: string; invitees: string[]; squareChatMid: string; - } +} export interface IpassTokenProperty { - token: string; + token: string; tokenIssuedTimestamp: string; - } +} export interface IsProductForCollectionsRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; - } +} export interface IsProductForCollectionsResponse { - isAvailable: boolean; - } + isAvailable: boolean; +} export interface IsStickerAvailableForCombinationStickerRequest { - packageId: string; - } + packageId: string; +} export interface IsStickerAvailableForCombinationStickerResponse { - availableForCombinationSticker: boolean; - } + availableForCombinationSticker: boolean; +} export interface IssueBirthdayGiftTokenRequest { - recipientUserMid: string; - } + recipientUserMid: string; +} export interface IssueBirthdayGiftTokenResponse { - giftAssociationToken: string; - } + giftAssociationToken: string; +} export interface IssueV3TokenForPrimaryRequest { - udid: string; + udid: string; systemDisplayName: string; modelName: string; - } +} export interface IssueV3TokenForPrimaryResponse { - accessToken: string; + accessToken: string; refreshToken: string; durationUntilRefreshInSec: Int64; refreshApiRetryPolicy: RefreshApiRetryPolicy; loginSessionId: string; tokenIssueTimeEpochSec: Int64; mid: string; - } +} export interface IssueWebAuthDetailsForSecondAuthResponse { - webAuthDetails: WebAuthDetails; - } + webAuthDetails: WebAuthDetails; +} export interface JoinChatByCallUrlRequest { - urlId: string; + urlId: string; reqSeq: number; - } +} export interface JoinChatByCallUrlResponse { - chat: Chat; - } + chat: Chat; +} export interface JoinLiveTalkRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; wantToSpeak: boolean; claimAdult: BooleanState; - } +} export interface JoinLiveTalkResponse { - hostMemberMid: string; + hostMemberMid: string; memberSessionId: string; token: string; proto: string; @@ -9356,28 +11050,28 @@ export interface JoinLiveTalkResponse { polarisZone: string; polarisUdpPort: number; speaker: boolean; - } +} export interface JoinSquareChatRequest { - squareChatMid: string; - } + squareChatMid: string; +} export interface JoinSquareChatResponse { - squareChat: SquareChat; + squareChat: SquareChat; squareChatStatus: SquareChatStatus; squareChatMember: SquareChatMember; - } +} export interface JoinSquareRequest { - squareMid: string; + squareMid: string; member: SquareMember; squareChatMid: string; joinValue: SquareJoinMethodValue; claimAdult: BooleanState; - } +} export interface JoinSquareResponse { - square: Square; + square: Square; squareAuthority: SquareAuthority; squareStatus: SquareStatus; squareMember: SquareMember; @@ -9386,42 +11080,42 @@ export interface JoinSquareResponse { squareChat: SquareChat; squareChatStatus: SquareChatStatus; squareChatMember: SquareChatMember; - } +} export interface JoinSquareThreadRequest { - chatMid: string; + chatMid: string; threadMid: string; - } +} export interface JoinSquareThreadResponse { - threadMember: SquareThreadMember; - } + threadMember: SquareThreadMember; +} export interface JoinedMemberships { - subscribing: MemberInfo[]; + subscribing: MemberInfo[]; expired: MemberInfo[]; - } +} export interface KickOutLiveTalkParticipantsRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; target: LiveTalkKickOutTarget; - } +} export interface KickoutFromGroupCallRequest { - chatMid: string; + chatMid: string; targetMids: string[]; - } +} export interface LFLClusterV2 { - majorVersion: string; + majorVersion: string; minorVersion: string; tags: Tag[]; products: Product[]; - } +} export interface LIFFMenuColor { - iconColor: number; + iconColor: number; statusBarColor: Qj_EnumC13585b; titleTextColor: number; titleSubtextColor: number; @@ -9431,39 +11125,33 @@ export interface LIFFMenuColor { progressBackgroundColor: number; titleButtonAreaBackgroundColor: number; titleButtonAreaBorderColor: number; - } +} export interface LIFFMenuColorSetting { - lightModeColor: LIFFMenuColor; + lightModeColor: LIFFMenuColor; darkModeColor: LIFFMenuColor; - } +} export interface LN0_A { - - } +} export interface LN0_A0 { - - } +} export interface LN0_B { - - } +} export interface LN0_B0 { - - } +} export interface LN0_C0 { - - } +} export interface LN0_C11270b { - - } +} export interface LN0_C11274d { - invalid: AddMetaInvalid; + invalid: AddMetaInvalid; byPhone: AddMetaByPhone; bySearchId: AddMetaBySearchId; byUserTicket: AddMetaByUserTicket; @@ -9505,232 +11193,203 @@ export interface LN0_C11274d { newsDigestADCPF: LN0_D; albumCPF: LN0_C11278f; premiumAgreement: LN0_H; - } +} export interface LN0_C11276e { - - } +} export interface LN0_C11278f { - - } +} export interface LN0_C11280g { - - } +} export interface LN0_C11282h { - - } +} export interface LN0_C11290l { - - } +} export interface LN0_C11292m { - - } +} export interface LN0_C11294n { - - } +} export interface LN0_C11300q { - - } +} export interface LN0_C11307u { - - } +} export interface LN0_C11308u0 { - - } +} export interface LN0_C11309v { - - } +} export interface LN0_C11310v0 { - - } +} export interface LN0_C11312w0 { - - } +} export interface LN0_C11313x { - - } +} export interface LN0_C11315y { - - } +} export interface LN0_C11316z { - - } +} export interface LN0_D { - - } +} export interface LN0_E { - - } +} export interface LN0_F { - - } +} export interface LN0_G { - - } +} export interface LN0_H { - - } +} export interface LN0_L { - - } +} export interface LN0_O { - - } +} export interface LN0_P { - - } +} export interface LN0_Q { - - } +} export interface LN0_S { - - } +} export interface LN0_T { - - } +} export interface LN0_U { - - } +} export interface LN0_V { - user: UserBlockDetail; + user: UserBlockDetail; bot: BotBlockDetail; notBlocked: LN0_C11308u0; - } +} export interface LN0_Z { - user: UserFriendDetail; + user: UserFriendDetail; bot: BotFriendDetail; notFriend: LN0_C11310v0; - } +} export interface LN0_r { - - } +} export interface LN0_y0 { - recommendationDetail: RecommendationDetail; + recommendationDetail: RecommendationDetail; notRecommended: LN0_C11312w0; - } +} export interface LN0_z0 { - sharedChat: RecommendationReasonSharedChat; + sharedChat: RecommendationReasonSharedChat; reverseFriendByUserId: LN0_C0; reverseFriendByQrCode: LN0_B0; reverseFriendByPhone: LN0_A0; - } +} export interface LatestProductByAuthorItem { - productId: string; + productId: string; displayName: string; version: Int64; newFlag: boolean; productResourceType: Ob1_I0; popupLayer: Ob1_B0; - } +} export interface LatestProductsByAuthorRequest { - productType: Ob1_O0; + productType: Ob1_O0; authorId: Int64; limit: number; - } +} export interface LatestProductsByAuthorResponse { - authorId: Int64; + authorId: Int64; author: string; items: LatestProductByAuthorItem[]; - } +} export interface LeaveSquareChatRequest { - squareChatMid: string; + squareChatMid: string; sayGoodbye: boolean; squareChatMemberRevision: Int64; - } +} export interface LeaveSquareRequest { - squareMid: string; - } + squareMid: string; +} export interface LeaveSquareThreadRequest { - chatMid: string; + chatMid: string; threadMid: string; - } +} export interface LeaveSquareThreadResponse { - threadMember: SquareThreadMember; - } + threadMember: SquareThreadMember; +} export interface LeftSquareMember { - squareMemberMid: string; + squareMemberMid: string; displayName: string; profileImageObsHash: string; updatedAt: Int64; - } +} export interface LiffAdvertisingId { - advertisingId: string; + advertisingId: string; tracking: boolean; att: Qj_EnumC13584a; skAdNetwork: SKAdNetwork; - } +} export interface LiffChatContext { - chatMid: string; - } + chatMid: string; +} export interface LiffDeviceSetting { - videoAutoPlayAllowed: boolean; + videoAutoPlayAllowed: boolean; advertisingId: LiffAdvertisingId; - } +} export interface LiffErrorConsentRequired { - channelId: string; + channelId: string; consentUrl: string; - } +} export interface LiffErrorPermanentLinkInvalidRequest { - liffId: string; + liffId: string; fallbackUrl: string; - } +} export interface LiffFIDOExternalService { - rpId: string; + rpId: string; rpApiBaseUrl: string; - } +} export interface LiffSquareChatContext { - squareChatMid: string; - } + squareChatMid: string; +} export interface LiffView { - type: string; + type: string; url: string; titleTextColor: number; titleBackgroundColor: number; @@ -9761,20 +11420,20 @@ export interface LiffView { skipWebRTCPermissionPopupAllowed: boolean; useGmaSdkAllowed: boolean; useMinimizeButtonAllowed: boolean; - } +} export interface LiffViewRequest { - liffId: string; + liffId: string; context: Qj_C13595l; lang: string; deviceSetting: LiffDeviceSetting; msit: string; subsequentLiff: boolean; domain: string; - } +} export interface LiffViewResponse { - view: LiffView; + view: LiffView; contextToken: string; accessToken: string; featureToken: string; @@ -9785,7 +11444,7 @@ export interface LiffViewResponse { launchOptions: number[]; permanentLinkPattern: Qj_a0; subLiffView: SubLiffView; - revisions: Record; + revisions: Record; accessTokenExpiresIn: Int64; accessTokenExpiresInWithRoom: Int64; liffId: string; @@ -9796,27 +11455,27 @@ export interface LiffViewResponse { addToHomeV2LineSchemeAllowed: boolean; fido: Qj_C13602t; omitLiffReferrer: boolean; - } +} export interface LiffViewWithoutUserContextRequest { - liffId: string; - } + liffId: string; +} export interface LiffWebLoginRequest { - hookedFullUrl: string; + hookedFullUrl: string; sessionString: string; context: Qj_C13595l; deviceSetting: LiffDeviceSetting; - } +} export interface LiffWebLoginResponse { - returnUrl: string; + returnUrl: string; sessionString: string; liffId: string; - } +} export interface LineBankBalanceShortcut { - iconPosition: number; + iconPosition: number; iconUrl: string; iconText: string; iconAltText: string; @@ -9824,21 +11483,21 @@ export interface LineBankBalanceShortcut { linkUrl: string; tsTargetId: string; userGuidePopupInfo: ShortcutUserGuidePopupInfo; - } +} export interface LineBankPromotion { - mainText: string; + mainText: string; linkUrl: string; tsTargetId: string; - } +} export interface LineBankShortcutInfo { - mainShortcuts: LineBankBalanceShortcut[]; + mainShortcuts: LineBankBalanceShortcut[]; subShortcuts: LineBankBalanceShortcut[]; - } +} export interface LinePayInfo { - balanceAmount: string; + balanceAmount: string; currencyProperty: CurrencyProperty; payMemberStatus: NZ0_EnumC12195p0; applicationUrl: string; @@ -9852,10 +11511,10 @@ export interface LinePayInfo { iconLinkUrl: string; suspendedText: string; responseStatus: NZ0_W0; - } +} export interface LinePayInfoV3 { - availableBalance: string; + availableBalance: string; availableBalanceString: string; currencyProperty: CurrencyProperty; payMemberStatus: NZ0_EnumC12195p0; @@ -9866,33 +11525,33 @@ export interface LinePayInfoV3 { iconLinkUrl: string; suspendedText: string; responseStatus: NZ0_W0; - } +} export interface LinePayPromotion { - mainText: string; + mainText: string; subText: string; buttonText: string; iconUrl: string; linkUrl: string; tsTargetId: string; - } +} export interface LinePointInfo { - balanceAmount: string; + balanceAmount: string; applicationUrl: string; iconUrl: string; displayText: string; responseStatus: NZ0_W0; - } +} export interface LinkRewardInfo { - assetServiceInfo: AssetServiceInfo; + assetServiceInfo: AssetServiceInfo; autoConversion: boolean; backgroundColorCode: string; - } +} export interface LiveTalk { - squareChatMid: string; + squareChatMid: string; sessionId: string; title: string; type: LiveTalkType; @@ -9903,64 +11562,64 @@ export interface LiveTalk { participantCount: number; revision: Int64; startedAt: Int64; - } +} export interface LiveTalkEvent { - type: LiveTalkEventType; + type: LiveTalkEventType; payload: LiveTalkEventPayload; revision: Int64; - } +} export interface LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak { - allowRequestToSpeak: boolean; - } + allowRequestToSpeak: boolean; +} export interface LiveTalkEventNotifiedUpdateLiveTalkAnnouncement { - announcement: string; - } + announcement: string; +} export interface LiveTalkEventNotifiedUpdateLiveTalkTitle { - title: string; - } + title: string; +} export interface LiveTalkEventNotifiedUpdateSquareMember { - squareMemberMid: string; + squareMemberMid: string; displayName: string; profileImageObsHash: string; role: SquareMemberRole; - } +} export interface LiveTalkEventNotifiedUpdateSquareMemberRole { - squareMemberMid: string; + squareMemberMid: string; role: SquareMemberRole; - } +} export interface LiveTalkExtraInfo { - saturnResponse: string; - } + saturnResponse: string; +} export interface LiveTalkParticipant { - mid: string; - } + mid: string; +} export interface LiveTalkSpeaker { - displayName: string; + displayName: string; profileImageObsHash: string; role: SquareMemberRole; - } +} export interface LiveTalkSubscriptionNotification { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface Locale { - language: string; + language: string; country: string; - } +} export interface Location { - title: string; + title: string; address: string; latitude: number; longitude: number; @@ -9969,77 +11628,77 @@ export interface Location { provider: Pb1_D6; accuracy: GeolocationAccuracy; altitudeMeters: number; - } +} export interface LocationDebugInfo { - poiInfo: PoiInfo; - } + poiInfo: PoiInfo; +} export interface LookupAvailableEapRequest { - authSessionId: string; - } + authSessionId: string; +} export interface LookupAvailableEapResponse { - availableEap: number[]; - } + availableEap: number[]; +} export interface LpPromotionProperty { - landingPageUrl: string; + landingPageUrl: string; label: string; buttonLabel: string; - } +} export interface MainPopup { - imageObsHash: string; + imageObsHash: string; button: Button; - } +} export interface ManualRepairRequest { - syncToken: string; + syncToken: string; limit: number; continuationToken: string; - } +} export interface ManualRepairResponse { - events: SquareEvent[]; + events: SquareEvent[]; syncToken: string; continuationToken: string; - } +} export interface MapProfileToUsersRequest { - profileId: string; + profileId: string; targetMids: string[]; - } +} export interface MapProfileToUsersResponse { - mappedMids: string[]; - } + mappedMids: string[]; +} export interface MarkAsReadRequest { - squareChatMid: string; + squareChatMid: string; messageId: string; threadMid: string; - } +} export interface MarkChatsAsReadRequest { - chatMids: string[]; - } + chatMids: string[]; +} export interface MarkThreadsAsReadRequest { - chatMid: string; - } + chatMid: string; +} export interface MemberInfo { - membership: Membership; + membership: Membership; memberNo: number; isJoining: boolean; isSubscribing: boolean; validUntil: Int64; billingItemName: string; - } +} export interface Membership { - membershipId: Int64; + membershipId: Int64; uniqueKey: string; title: string; membershipDescription: string; @@ -10055,25 +11714,25 @@ export interface Membership { closeDate: Int64; membershipCardUrl: string; openchatUrl: string; - } +} export interface MentionableBot { - mid: string; + mid: string; displayName: string; profileImageObsHash: string; squareMid: string; - } +} export interface MentionableSquareMember { - mid: string; + mid: string; displayName: string; profileImageObsHash: string; role: SquareMemberRole; squareMid: string; - } +} export interface Message { - from: string; + from: string; to: string; toType: MIDType; id: string; @@ -10084,100 +11743,100 @@ export interface Message { hasContent: boolean; contentType: ContentType; contentPreview: string; - contentMetadata: Record; + contentMetadata: Record; sessionId: number; - chunks: (string|Buffer)[]; + chunks: (string | Buffer)[]; relatedMessageId: string; messageRelationType: Pb1_EnumC13015h6; readCount: number; relatedMessageServiceCode: Pb1_E7; appExtensionType: Pb1_B; reactions: Reaction[]; - } +} export interface MessageBoxList { - messageBoxes: ExtendedMessageBox[]; + messageBoxes: ExtendedMessageBox[]; hasNext: boolean; - } +} export interface MessageBoxListRequest { - minChatId: string; + minChatId: string; maxChatId: string; activeOnly: boolean; messageBoxCountLimit: number; withUnreadCount: boolean; lastMessagesPerMessageBoxCount: number; unreadOnly: boolean; - } +} export interface MessageBoxV2MessageId { - deliveredTime: Int64; + deliveredTime: Int64; messageId: Int64; - } +} export interface MessageSummary { - summary: string[]; + summary: string[]; keywords: string[]; range: MessageSummaryRange; detailedSummary: string[]; - } +} export interface MessageSummaryContent { - summary: string[]; + summary: string[]; keywords: string[]; range: MessageSummaryRange; - } +} export interface MessageSummaryRange { - from: Int64; + from: Int64; to: Int64; - } +} export interface MessageVisibility { - showJoinMessage: boolean; + showJoinMessage: boolean; showLeaveMessage: boolean; showKickoutMessage: boolean; - } +} export interface MigratePrimaryUsingQrCodeRequest { - sessionId: string; + sessionId: string; nonce: string; newDevice: any; - } +} export interface MigratePrimaryUsingQrCodeResponse { - mid: string; + mid: string; tokenV3IssueResult: TokenV3IssueResult; tokenV1IssueResult: TokenV1IssueResult; accountCountryCode: any; formattedPhoneNumbers: FormattedPhoneNumbers; - } +} export interface MigratePrimaryWithTokenV3Response { - authToken: string; + authToken: string; tokenV3IssueResult: TokenV3IssueResult; countryCode: string; prettifiedFormatPhoneNumber: string; localFormatPhoneNumber: string; mid: string; - } +} export interface ModuleResponse { - moduleInstance: NZ0_C12206t0; - } + moduleInstance: NZ0_C12206t0; +} export interface ModuleWithStatusResponse { - moduleInstance: NZ0_C12221y0; - } + moduleInstance: NZ0_C12221y0; +} export interface MyChatapp { - app: Chatapp; + app: Chatapp; category: zf_EnumC40715c; priority: Int64; - } +} export interface MyDashboardItem { - id: string; + id: string; messageText: string; icon: MyDashboardMessageIcon; linkUrl: string; @@ -10188,30 +11847,27 @@ export interface MyDashboardItem { templateId: string; fullMessageText: string; templateCautionText: string; - } +} export interface MyDashboardMessageIcon { - walletTabIconUrl: string; + walletTabIconUrl: string; assetTabIconUrl: string; iconAltText: string; - } +} export interface NZ0_C12150a0 { - - } +} export interface NZ0_C12152b { - - } +} export interface NZ0_C12155c { - - } +} export interface NZ0_C12206t0 { - id: string; + id: string; templateName: string; - fields: Record; + fields: Record; elements: any[]; etag: string; refreshTimeSec: number; @@ -10221,33 +11877,31 @@ export interface NZ0_C12206t0 { flexContent: string; categories: any[]; headers: any[]; - } +} export interface NZ0_C12208u { - - } +} export interface NZ0_C12209u0 { - fixedModules: NZ0_C12206t0[]; + fixedModules: NZ0_C12206t0[]; etag: string; refreshTimeSec: number; recommendedModules: NZ0_C12206t0[]; - } +} export interface NZ0_C12212v0 { - topTab: TopTab; + topTab: TopTab; subTabs: SubTab[]; forceSelectedSubTabInfo: ForceSelectedSubTabInfo; refreshTimeSec: number; etag: string; - } +} export interface NZ0_C12214w { - - } +} export interface NZ0_C12221y0 { - status: NZ0_EnumC12218x0; + status: NZ0_EnumC12218x0; id: string; templateName: string; etag: string; @@ -10255,262 +11909,249 @@ export interface NZ0_C12221y0 { name: string; recommendable: boolean; recommendedModelId: string; - fields: Record; + fields: Record; elements: any[]; categories: any[]; headers: any[]; - } +} export interface NZ0_C12224z0 { - etag: string; + etag: string; refreshTimeSec: number; fixedModules: NZ0_C12221y0[]; recommendedModules: NZ0_C12221y0[]; - } +} export interface NZ0_D { - moduleLayoutV4: NZ0_C12212v0; + moduleLayoutV4: NZ0_C12212v0; notModified: NZ0_G0; notFound: NZ0_F0; - } +} export interface NZ0_E { - id: string; + id: string; etag: string; recommendedModelId: string; deviceAdId: string; agreedWithTargetingAdByMid: boolean; deviceId: string; - } +} export interface NZ0_F { - moduleResponse: ModuleResponse; + moduleResponse: ModuleResponse; notModified: NZ0_G0; notFound: NZ0_F0; - } +} export interface NZ0_F0 { - - } +} export interface NZ0_G { - id: string; + id: string; etag: string; recommendedModelId: string; deviceAdId: string; agreedWithTargetingAdByMid: boolean; deviceId: string; - } +} export interface NZ0_G0 { - - } +} export interface NZ0_H { - moduleResponse: ModuleWithStatusResponse; + moduleResponse: ModuleWithStatusResponse; notModified: NZ0_G0; notFound: NZ0_F0; - } +} export interface NZ0_K { - moduleAggregationResponse: NZ0_C12209u0; + moduleAggregationResponse: NZ0_C12209u0; notModified: NZ0_G0; - } +} export interface NZ0_M { - moduleAggregationResponse: NZ0_C12224z0; + moduleAggregationResponse: NZ0_C12224z0; notModified: NZ0_G0; - } +} export interface NZ0_S { - - } +} export interface NZ0_U { - - } +} export interface NearbyEntry { - emid: string; + emid: string; distance: number; lastUpdatedInSec: number; - property: Record; + property: Record; profile: Profile; - } +} export interface NoBidCallback { - impEventUrl: string; + impEventUrl: string; vimpEventUrl: string; imp100pEventUrl: string; - } +} export interface NoteStatus { - noteCount: number; + noteCount: number; latestCreatedAt: Int64; - } +} export interface NotificationSetting { - mute: boolean; - } + mute: boolean; +} export interface NotificationSettingEntry { - notificationSetting: NotificationSetting; - } + notificationSetting: NotificationSetting; +} export interface NotifyChatAdEntryRequest { - chatMid: string; + chatMid: string; scenarioId: string; sdata: string; - } +} export interface NotifyDeviceConnectionRequest { - deviceId: string; + deviceId: string; connectionId: string; connectionType: do0_EnumC23148f; code: do0_EnumC23147e; errorReason: string; startTime: Int64; endTime: Int64; - } +} export interface NotifyDeviceConnectionResponse { - latestOffset: Int64; - } + latestOffset: Int64; +} export interface NotifyDeviceDisconnectionRequest { - deviceId: string; + deviceId: string; connectionId: string; disconnectedTime: Int64; - } +} export interface NotifyOATalkroomEventsRequest { - events: OATalkroomEvent[]; - } + events: OATalkroomEvent[]; +} export interface NotifyScenarioExecutedRequest { - scenarioResults: do0_F[]; - } + scenarioResults: do0_F[]; +} export interface OATalkroomEvent { - eventId: string; + eventId: string; type: kf_p; context: OATalkroomEventContext; content: kf_m; - } +} export interface OATalkroomEventContext { - timestampMillis: Int64; + timestampMillis: Int64; botMid: string; userMid: string; os: kf_o; osVersion: string; appVersion: string; region: string; - } +} export interface OaAddFriendArea { - text: string; - } + text: string; +} export interface Ob1_C12606a0 { - - } +} export interface Ob1_C12608b { - - } +} export interface Ob1_C12618e0 { - subscriptionService: any; + subscriptionService: any; continuationToken: string; limit: number; productType: Ob1_O0; - } +} export interface Ob1_C12621f0 { - history: SubscriptionSlotHistory[]; + history: SubscriptionSlotHistory[]; continuationToken: string; totalSize: Int64; - } +} export interface Ob1_C12630i0 { - - } +} export interface Ob1_C12637k1 { - - } +} export interface Ob1_C12642m0 { - - } +} export interface Ob1_C12649o1 { - - } +} export interface Ob1_C12660s1 { - - } +} export interface Ob1_E { - stickerSummary: any; - } + stickerSummary: any; +} export interface Ob1_G { - - } +} export interface Ob1_H0 { - lpPromotionProperty: any; - } + lpPromotionProperty: any; +} export interface Ob1_I0 { - stickerResourceType: number; + stickerResourceType: number; themeResourceType: number; sticonResourceType: number; - } +} export interface Ob1_L { - productTypes: Ob1_O0[]; + productTypes: Ob1_O0[]; continuationToken: string; limit: number; shopFilter: ShopFilter; - } +} export interface Ob1_M { - browsingHistory: BrowsingHistory[]; + browsingHistory: BrowsingHistory[]; continuationToken: string; totalSize: number; - } +} export interface Ob1_N { - - } +} export interface Ob1_P0 { - stickerSummary: StickerSummary; + stickerSummary: StickerSummary; themeSummary: ThemeSummary; sticonSummary: SticonSummary; - } +} export interface Ob1_U { - productType: Ob1_O0; + productType: Ob1_O0; continuationToken: string; limit: number; subscriptionService: any; sortType: Ob1_V1; - } +} export interface Ob1_V { - products: ProductSummary[]; + products: ProductSummary[]; continuationToken: string; totalSize: Int64; maxSlotCount: number; - } +} export interface Ob1_W { - continuationToken: string; + continuationToken: string; limit: number; productType: Ob1_O0; recommendationType: Ob1_EnumC12631i1; @@ -10519,46 +12160,45 @@ export interface Ob1_W { shouldShuffle: boolean; includeStickerIds: boolean; shopFilter: ShopFilter; - } +} export interface Ob1_W0 { - promotionBuddyInfo: PromotionBuddyInfo; + promotionBuddyInfo: PromotionBuddyInfo; promotionInstallInfo: PromotionInstallInfo; promotionMissionInfo: PromotionMissionInfo; - } +} export interface OkButton { - text: string; - } + text: string; +} export interface OpenSessionRequest { - metaData: Record; - } + metaData: Record; +} export interface OpenSessionResponse { - authSessionId: string; - } + authSessionId: string; +} export interface OperationResponse { - operations: Pb1_C13154r6[]; + operations: Pb1_C13154r6[]; hasMoreOps: boolean; globalEvents: TGlobalEvents; individualEvents: TIndividualEvents; - } +} export interface OrderInfo { - productId: string; + productId: string; orderId: string; confirmUrl: string; bot: Bot; - } +} export interface P70_k { - - } +} export interface PaidCallDialing { - type: PaidCallType; + type: PaidCallType; dialedNumber: string; serviceDomain: string; productType: Pb1_EnumC13196u6; @@ -10576,66 +12216,66 @@ export interface PaidCallDialing { adMaxMin: number; adRemains: number; adSessionId: string; - } +} export interface PaidCallResponse { - host: CallHost; + host: CallHost; dialing: PaidCallDialing; token: string; spotItems: SpotItem[]; - } +} export interface PartialFullSyncResponse { - targetCategories: Record; - } + targetCategories: Record; +} export interface PasswordHashingParameters { - hmacKey: string; + hmacKey: string; scryptParams: ScryptParams; - } +} export interface PasswordValidationRule { - type: any; + type: any; pattern: string[]; clientNoticeMessage: string; - } +} export interface PaymentAuthenticationInfo { - authToken: string; + authToken: string; confirmMessage: string; - } +} export interface PaymentEligibleFriendStatus { - mid: string; + mid: string; status: r80_EnumC34367g; - } +} export interface PaymentLineCardInfo { - designCode: string; + designCode: string; imageUrl: string; - } +} export interface PaymentLineCardIssueForm { - requiredTermsOfServiceBundle: r80_e0; + requiredTermsOfServiceBundle: r80_e0; availableLineCards: PaymentLineCardInfo[]; - } +} export interface PaymentRequiredAgreementsInfo { - title: string; + title: string; desc: string; linkName: string; linkUrl: string; newAgreements: string[]; - } +} export interface PaymentReservationResult { - orderId: string; + orderId: string; confirmUrl: string; - extras: Record; - } + extras: Record; +} export interface PaymentTradeInfo { - chargeRequestId: string; + chargeRequestId: string; chargeRequestType: r80_g0; chargeRequestYmdt: Int64; tradeNumber: string; @@ -10648,99 +12288,86 @@ export interface PaymentTradeInfo { status: r80_h0; helpUrl: string; guideMessage: string; - } +} export interface Pb1_A4 { - mid: string; + mid: string; eMid: string; - } +} export interface Pb1_A6 { - - } +} export interface Pb1_B3 { - - } +} export interface Pb1_C12916a5 { - wrappedNonce: string; + wrappedNonce: string; kdfParameter1: string; kdfParameter2: string; - } +} export interface Pb1_C12938c { - message: AbuseReport; + message: AbuseReport; lineMeeting: AbuseReportLineMeeting; - } +} export interface Pb1_C12946c7 { - - } +} export interface Pb1_C12953d0 { - verifier: string; + verifier: string; pinCode: string; errorCode: ErrorCode; publicKey: Pb1_C13097n4; encryptedKeyChain: string; hashKeyChain: string; - } +} export interface Pb1_C12980f { - - } +} export interface Pb1_C12996g1 { - - } +} export interface Pb1_C13008h { - - } +} export interface Pb1_C13019ha { - - } +} export interface Pb1_C13042j5 { - - } +} export interface Pb1_C13070l5 { - - } +} export interface Pb1_C13097n4 { - version: number; + version: number; keyId: number; keyData: string; createdTime: Int64; - } +} export interface Pb1_C13113o6 { - callRoute: CallRoute; + callRoute: CallRoute; paidCallResponse: PaidCallResponse; - } +} export interface Pb1_C13114o7 { - - } +} export interface Pb1_C13126p5 { - - } +} export interface Pb1_C13131pa { - - } +} export interface Pb1_C13150r2 { - - } +} export interface Pb1_C13154r6 { - revision: Int64; + revision: Int64; createdTime: Int64; type: OpType; reqSeq: number; @@ -10750,119 +12377,101 @@ export interface Pb1_C13154r6 { param2: string; param3: string; message: Message; - } +} export interface Pb1_C13155r7 { - restoreClaim: string; - } + restoreClaim: string; +} export interface Pb1_C13169s7 { - recoveryKey: string; + recoveryKey: string; blobPayload: string; - } +} export interface Pb1_C13183t7 { - - } +} export interface Pb1_C13190u0 { - rich: BuddyRichMenuChatBarItem; + rich: BuddyRichMenuChatBarItem; widgetList: BuddyWidgetListCharBarItem; web: BuddyWebChatBarItem; - } +} export interface Pb1_C13202uc { - - } +} export interface Pb1_C13208v4 { - groupExtra: GroupExtra; + groupExtra: GroupExtra; peerExtra: Pb1_A6; - } +} export interface Pb1_C13254y8 { - - } +} export interface Pb1_C13263z3 { - blobHeader: string; + blobHeader: string; blobPayload: string; reason: Pb1_A3; - } +} export interface Pb1_Ca { - - } +} export interface Pb1_E3 { - blobHeader: string; + blobHeader: string; payloadDataList: Pb1_X5[]; - } +} export interface Pb1_Ea { - - } +} export interface Pb1_F3 { - - } +} export interface Pb1_H3 { - - } +} export interface Pb1_I3 { - - } +} export interface Pb1_Ia { - - } +} export interface Pb1_J5 { - - } +} export interface Pb1_K3 { - - } +} export interface Pb1_M3 { - - } +} export interface Pb1_O { - - } +} export interface Pb1_O3 { - - } +} export interface Pb1_P9 { - - } +} export interface Pb1_Q8 { - - } +} export interface Pb1_S5 { - - } +} export interface Pb1_Sb { - reqSeq: number; + reqSeq: number; encryptedKeyChain: string; hashKeyChain: string; - } +} export interface Pb1_U1 { - - } +} export interface Pb1_U3 { - keyVersion: number; + keyVersion: number; groupKeyId: number; creator: string; creatorKeyId: number; @@ -10871,113 +12480,108 @@ export interface Pb1_U3 { encryptedSharedKey: string; allowedTypes: number[]; specVersion: number; - } +} export interface Pb1_V3 { - version: number; + version: number; keyId: number; publicKey: string; privateKey: string; createdTime: Int64; - } +} export interface Pb1_W4 { - - } +} export interface Pb1_W5 { - e2ee: E2EEMetadata; + e2ee: E2EEMetadata; singleValue: SingleValueMetadata; - } +} export interface Pb1_W6 { - reqSeq: number; + reqSeq: number; publicKey: Pb1_C13097n4; blobPayload: string; - } +} export interface Pb1_X { - verifier: string; + verifier: string; publicKey: Pb1_C13097n4; encryptedKeyChain: string; hashKeyChain: string; errorCode: ErrorCode; - } +} export interface Pb1_X5 { - metadata: Pb1_W5; + metadata: Pb1_W5; blobPayload: string; - } +} export interface Pb1_X7 { - operationResponse: OperationResponse; + operationResponse: OperationResponse; fullSyncResponse: FullSyncResponse; partialFullSyncResponse: PartialFullSyncResponse; - } +} export interface Pb1_Y4 { - - } +} export interface Pb1_Za { - - } +} export interface Pb1_Zc { - - } +} export interface Pb1_ad { - title: string; - } + title: string; +} export interface Pb1_cd { - - } +} export interface PendingAgreementsResponse { - pendingAgreements: number[]; - } + pendingAgreements: number[]; +} export interface PermitLoginRequest { - sessionId: string; - metaData: Record; - } + sessionId: string; + metaData: Record; +} export interface PermitLoginResponse { - oneTimeToken: string; - } + oneTimeToken: string; +} export interface PhoneVerificationResult { - verificationResult: VerificationResult; + verificationResult: VerificationResult; accountMigrationCheckType: Pb1_EnumC13022i; recommendAddFriends: boolean; - } +} export interface PocketMoneyInfo { - assetServiceInfo: AssetServiceInfo; + assetServiceInfo: AssetServiceInfo; displayType: NZ0_I0; productType: NZ0_K0; refinanceText: string; - } +} export interface PoiInfo { - poiId: string; + poiId: string; poiRealm: Pb1_F6; - } +} export interface PointInfo { - assetServiceInfo: AssetServiceInfo; - } + assetServiceInfo: AssetServiceInfo; +} export interface PopularKeyword { - value: string; + value: string; highlighted: boolean; id: Int64; - } +} export interface Popup { - id: Int64; + id: Int64; country: string; name: string; type: PopupType; @@ -10987,15 +12591,15 @@ export interface Popup { startsAt: Int64; endsAt: Int64; createdAt: Int64; - } +} export interface PopupContent { - mainPopUp: MainPopup; + mainPopUp: MainPopup; chatroomPopup: ChatroomPopup; - } +} export interface PopupProperty { - id: string; + id: string; name: string; startDateTimeMillis: Int64; endDateTimeMillis: Int64; @@ -11003,26 +12607,26 @@ export interface PopupProperty { wrsCampaignId: string; optOut: boolean; layoutSize: NZ0_N0; - } +} export interface Price { - currency: string; + currency: string; amount: string; priceString: string; - } +} export interface Priority { - value: Int64; - } + value: Int64; +} export interface Product { - id: string; + id: string; productVersion: Int64; productDetails: AR0_o; - } +} export interface ProductDetail { - id: string; + id: string; billingItemId: string; type: string; subtype: Ob1_X1; @@ -11050,7 +12654,7 @@ export interface ProductDetail { price: Price; priceInLineCoin: string; localizedPrice: Price; - attributes: Record; + attributes: Record; authorId: string; stickerResourceType: StickerResourceType; productProperty: jp_naver_line_shop_protocol_thrift_ProductProperty; @@ -11064,17 +12668,17 @@ export interface ProductDetail { ableToBeGivenAsPresent: boolean; madeWithStickerMaker: boolean; customDownloadButtonLabel: string; - } +} export interface ProductList { - productList: ProductDetail[]; + productList: ProductDetail[]; offset: number; totalSize: number; title: string; - } +} export interface ProductListByAuthorRequest { - productType: Ob1_O0; + productType: Ob1_O0; authorId: string; offset: number; limit: number; @@ -11082,24 +12686,23 @@ export interface ProductListByAuthorRequest { includeStickerIds: boolean; additionalProductTypes: number[]; showcaseType: Ob1_EnumC12666u1; - } +} export interface ProductSearchSummary { - - } +} export interface ProductSubscriptionProperty { - availableForSubscribe: boolean; + availableForSubscribe: boolean; subscriptionAvailability: Ob1_D0; - } +} export interface ProductSummary { - id: string; + id: string; name: string; latestVersion: Int64; applicationVersionRange: ApplicationVersionRange; grantedByDefault: boolean; - attributes: Record; + attributes: Record; productTypeSummary: Ob1_P0; validUntil: Int64; validFor: number; @@ -11108,10 +12711,10 @@ export interface ProductSummary { authorId: string; canAutoDownload: boolean; promotionInfo: PromotionInfo; - } +} export interface ProductSummaryForAutoSuggest { - id: string; + id: string; version: Int64; name: string; stickerResourceType: StickerResourceType; @@ -11120,35 +12723,35 @@ export interface ProductSummaryForAutoSuggest { type: Ob1_O0; resourceType: Ob1_I0; stickerSize: Ob1_C1; - } +} export interface ProductSummaryList { - productList: ProductSummary[]; + productList: ProductSummary[]; offset: number; totalSize: number; - } +} export interface ProductValidationRequest { - validationScheme: ProductValidationScheme; + validationScheme: ProductValidationScheme; authCode: string; - } +} export interface ProductValidationResult { - validated: boolean; - } + validated: boolean; +} export interface ProductValidationScheme { - key: string; + key: string; offset: Int64; size: Int64; - } +} export interface ProductWishProperty { - totalCount: Int64; - } + totalCount: Int64; +} export interface Profile { - mid: string; + mid: string; userid: string; phone: string; email: string; @@ -11163,66 +12766,66 @@ export interface Profile { picturePath: string; musicProfile: string; videoProfile: string; - statusMessageContentMetadata: Record; + statusMessageContentMetadata: Record; avatarProfile: AvatarProfile; nftProfile: boolean; pictureSource: Pb1_N6; profileId: string; profileType: Pb1_O6; createdTimeMillis: Int64; - } +} export interface ProfileContent { - value: string; - meta: Record; - } + value: string; + meta: Record; +} export interface ProfileRefererContent { - oatQueryParameters: Record; - } + oatQueryParameters: Record; +} export interface PromotionBuddyDetail { - searchId: string; + searchId: string; contactStatus: ContactStatus; name: string; pictureUrl: string; statusMessage: string; brandType: Ob1_EnumC12641m; - } +} export interface PromotionBuddyInfo { - buddyMid: string; + buddyMid: string; promotionBuddyDetail: PromotionBuddyDetail; showBanner: boolean; - } +} export interface PromotionInfo { - promotionType: Ob1_EnumC12610b1; + promotionType: Ob1_EnumC12610b1; promotionDetail: Ob1_W0; buddyInfo: PromotionBuddyInfo; - } +} export interface PromotionInstallInfo { - downloadUrl: string; + downloadUrl: string; customUrlSchema: string; - } +} export interface PromotionMissionInfo { - promotionMissionType: Ob1_EnumC12607a1; + promotionMissionType: Ob1_EnumC12607a1; missionCompleted: boolean; downloadUrl: string; customUrlSchema: string; oaMid: string; - } +} export interface Provider { - id: string; + id: string; name: string; providerPageUrl: string; - } +} export interface PublicKeyCredentialCreationOptions { - rp: PublicKeyCredentialRpEntity; + rp: PublicKeyCredentialRpEntity; user: PublicKeyCredentialUserEntity; challenge: string; pubKeyCredParams: PublicKeyCredentialParameters[]; @@ -11231,134 +12834,131 @@ export interface PublicKeyCredentialCreationOptions { authenticatorSelection: AuthenticatorSelectionCriteria; attestation: string; extensions: AuthenticationExtensionsClientInputs; - } +} export interface PublicKeyCredentialDescriptor { - type: string; + type: string; id: string; transports: string[]; - } +} export interface PublicKeyCredentialParameters { - type: string; + type: string; alg: number; - } +} export interface PublicKeyCredentialRequestOptions { - challenge: string; + challenge: string; timeout: Int64; rpId: string; allowCredentials: PublicKeyCredentialDescriptor[]; userVerification: string; extensions: AuthenticationExtensionsClientInputs; - } +} export interface PublicKeyCredentialRpEntity { - name: string; + name: string; icon: string; id: string; - } +} export interface PublicKeyCredentialUserEntity { - name: string; + name: string; icon: string; id: string; displayName: string; - } +} export interface PurchaseEnabledRequest { - uniqueKey: string; - } + uniqueKey: string; +} export interface PurchaseOrder { - shopId: string; + shopId: string; productId: string; recipientMid: string; price: Price; enableLinePointAutoExchange: boolean; locale: Locale; - presentAttributes: Record; - } + presentAttributes: Record; +} export interface PurchaseOrderResponse { - orderId: string; - attributes: Record; + orderId: string; + attributes: Record; billingConfirmUrl: string; - } +} export interface PurchaseRecord { - productDetail: ProductDetail; + productDetail: ProductDetail; purchasedTime: Int64; giver: string; recipient: string; purchasedPrice: Price; - } +} export interface PurchaseRecordList { - purchaseRecords: PurchaseRecord[]; + purchaseRecords: PurchaseRecord[]; offset: number; totalSize: number; - } +} export interface PurchaseSubscriptionRequest { - billingItemId: string; + billingItemId: string; subscriptionService: any; storeCode: Ob1_K1; storeOrderId: string; outsideAppPurchase: boolean; unavailableItemPurchase: boolean; - } +} export interface PurchaseSubscriptionResponse { - result: Ob1_M1; + result: Ob1_M1; orderId: string; confirmUrl: string; - } +} export interface PushRecvReport { - pushTrackingId: string; + pushTrackingId: string; recvTimestamp: Int64; battery: number; batteryMode: Pb1_EnumC13009h0; clientNetworkType: Pb1_EnumC12998g3; carrierCode: string; displayTimestamp: Int64; - } +} export interface PutE2eeKeyRequest { - sessionId: string; - e2eeKey: Record; - } + sessionId: string; + e2eeKey: Record; +} export interface Q70_l { - - } +} export interface Q70_o { - - } +} export interface Qj_C13595l { - none: any; + none: any; chat: LiffChatContext; squareChat: LiffSquareChatContext; - } +} export interface Qj_C13599p { - consentRequired: LiffErrorConsentRequired; + consentRequired: LiffErrorConsentRequired; permanentLinkInvalidRequest: LiffErrorPermanentLinkInvalidRequest; - } +} export interface Qj_C13602t { - externalService: any; - } + externalService: any; +} export interface Qj_C13607y { - - } +} export interface QuickMenuCouponInfo { - couponCount: string; + couponCount: string; mainText: string; linkUrl: string; iconUrl: string; @@ -11366,686 +12966,680 @@ export interface QuickMenuCouponInfo { targetName: string; responseStatus: NZ0_W0; darkModeIconUrl: string; - } +} export interface QuickMenuMyCardInfo { - myCardItems: QuickMenuMyCardItem[]; + myCardItems: QuickMenuMyCardItem[]; responseStatus: NZ0_W0; - } +} export interface QuickMenuMyCardItem { - itemType: NZ0_S0; + itemType: NZ0_S0; mainText: string; linkUrl: string; iconUrl: string; targetId: string; targetName: string; darkModeIconUrl: string; - } +} export interface QuickMenuPointInfo { - balance: string; + balance: string; linkUrl: string; iconUrl: string; targetId: string; targetName: string; responseStatus: NZ0_W0; - } +} export interface R70_a { - - } +} export interface R70_c { - - } +} export interface R70_d { - - } +} export interface R70_t { - - } +} export interface RSAEncryptedLoginInfo { - loginId: string; + loginId: string; loginPassword: string; - } +} export interface RSAEncryptedPassword { - encrypted: string; + encrypted: string; keyName: string; - } +} export interface RSAKey { - keynm: string; + keynm: string; nvalue: string; evalue: string; sessionKey: string; - } +} export interface ReactRequest { - reqSeq: number; + reqSeq: number; messageId: Int64; reactionType: ReactionType; - } +} export interface ReactToMessageRequest { - reqSeq: number; + reqSeq: number; squareChatMid: string; messageId: string; reactionType: MessageReactionType; threadMid: string; - } +} export interface ReactToMessageResponse { - reaction: SquareMessageReaction; + reaction: SquareMessageReaction; status: SquareMessageReactionStatus; - } +} export interface Reaction { - fromUserMid: string; + fromUserMid: string; atMillis: Int64; reactionType: ReactionType; - } +} export interface ReactionType { - predefinedReactionType: MessageReactionType; - } + predefinedReactionType: MessageReactionType; +} export interface RecommendationDetail { - createdTime: Int64; + createdTime: Int64; reasons: LN0_z0[]; hidden: boolean; - } +} export interface RecommendationReasonSharedChat { - chatMid: string; - } + chatMid: string; +} export interface RefreshAccessTokenRequest { - refreshToken: string; - } + refreshToken: string; +} export interface RefreshAccessTokenResponse { - accessToken: string; + accessToken: string; durationUntilRefreshInSec: Int64; retryPolicy: RetryPolicy; tokenIssueTimeEpochSec: Int64; refreshToken: string; - } +} export interface RefreshApiRetryPolicy { - initialDelayInMillis: Int64; + initialDelayInMillis: Int64; maxDelayInMillis: Int64; multiplier: number; jitterRate: number; - } +} export interface RefreshSubscriptionsRequest { - subscriptions: Int64[]; - } + subscriptions: Int64[]; +} export interface RefreshSubscriptionsResponse { - ttlMillis: Int64; - subscriptionStates: Record; - } + ttlMillis: Int64; + subscriptionStates: Record; +} export interface RegPublicKeyCredential { - id: string; + id: string; type: string; response: AuthenticatorAttestationResponse; extensionResults: AuthenticationExtensionsClientOutputs; - } +} export interface RegisterCampaignRewardRequest { - campaignId: string; - } + campaignId: string; +} export interface RegisterCampaignRewardResponse { - campaignStatus: NZ0_EnumC12188n; + campaignStatus: NZ0_EnumC12188n; resultPopupProperty: ResultPopupProperty; errorMessage: string; registeredId: string; registeredDateTimeMillis: Int64; redirectUrlWithoutResultPopup: string; - } +} export interface RegisterE2EEPublicKeyV2Response { - publicKey: Pb1_C13097n4; + publicKey: Pb1_C13097n4; isMasterKeyConflict: boolean; - } +} export interface RegisterPrimaryCredentialRequest { - sessionId: string; + sessionId: string; credential: any; - } +} export interface RegisterPrimaryWithTokenV3Response { - authToken: string; + authToken: string; tokenV3IssueResult: TokenV3IssueResult; mid: string; - } +} export interface I80_q0 { - authSessionId: string; + authSessionId: string; encryptionKey: I80_y0; - } +} export interface RegularBadge { - label: string; + label: string; color: string; - } +} export interface ReissueChatTicketRequest { - reqSeq: number; + reqSeq: number; groupMid: string; - } +} export interface ReissueChatTicketResponse { - ticketId: string; - } + ticketId: string; +} export interface RejectChatInvitationRequest { - reqSeq: number; + reqSeq: number; chatMid: string; - } +} export interface RejectSpeakersRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; targetMids: string[]; - } +} export interface RejectSquareMembersRequest { - squareMid: string; + squareMid: string; requestedMemberMids: string[]; - } +} export interface RejectSquareMembersResponse { - rejectedMembers: SquareMember[]; + rejectedMembers: SquareMember[]; status: SquareStatus; - } +} export interface RejectToSpeakRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; inviteRequestId: string; - } +} export interface RemoveFollowerRequest { - followMid: Pb1_A4; - } + followMid: Pb1_A4; +} export interface RemoveFromFollowBlacklistRequest { - followMid: Pb1_A4; - } + followMid: Pb1_A4; +} export interface RemoveItemFromCollectionRequest { - collectionId: string; + collectionId: string; productId: string; itemId: string; - } +} export interface RemoveLiveTalkSubscriptionRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface RemoveProductFromSubscriptionSlotRequest { - productType: Ob1_O0; + productType: Ob1_O0; productId: string; subscriptionService: any; productIds: string[]; - } +} export interface RemoveProductFromSubscriptionSlotResponse { - result: Ob1_U1; - } + result: Ob1_U1; +} export interface RemoveSubscriptionsRequest { - unsubscriptions: Int64[]; - } + unsubscriptions: Int64[]; +} export interface RepairGroupMembers { - numMembers: number; + numMembers: number; invalidGroup: boolean; - } +} export interface RepairProfileMappingMembers { - matched: boolean; + matched: boolean; numMembers: number; - } +} export interface RepairTriggerConfigurationsElement { - serverConfigurations: Configurations; + serverConfigurations: Configurations; nextCallIntervalMinutes: number; - } +} export interface RepairTriggerGroupMembersElement { - matchedGroups: Record; - mismatchedGroups: Record; + matchedGroups: Record; + mismatchedGroups: Record; nextCallIntervalMinutes: number; - } +} export interface RepairTriggerNumElement { - matched: boolean; + matched: boolean; numValue: number; nextCallIntervalMinutes: number; - } +} export interface RepairTriggerProfileElement { - serverProfile: Profile; + serverProfile: Profile; nextCallIntervalMinutes: number; serverMultiProfiles: Profile[]; - } +} export interface RepairTriggerProfileMappingListElement { - profileMappings: Record; + profileMappings: Record; nextCallIntervalMinutes: number; - } +} export interface RepairTriggerSettingsElement { - serverSettings: Settings; + serverSettings: Settings; nextCallIntervalMinutes: number; - } +} export interface ReportAbuseExRequest { - abuseReportEntry: Pb1_C12938c; - } + abuseReportEntry: Pb1_C12938c; +} export interface ReportLiveTalkRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; reportType: LiveTalkReportType; - } +} export interface ReportLiveTalkSpeakerRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; speakerMemberMid: string; reportType: LiveTalkReportType; - } +} export interface ReportMessageSummaryRequest { - chatEmid: string; + chatEmid: string; messageSummaryRangeTo: Int64; reportType: MessageSummaryReportType; - } +} export interface ReportRefreshedAccessTokenRequest { - accessToken: string; - } + accessToken: string; +} export interface ReportSquareChatRequest { - squareMid: string; + squareMid: string; squareChatMid: string; reportType: ReportType; otherReason: string; - } +} export interface ReportSquareMemberRequest { - squareMemberMid: string; + squareMemberMid: string; reportType: ReportType; otherReason: string; squareChatMid: string; threadMid: string; - } +} export interface ReportSquareMessageRequest { - squareMid: string; + squareMid: string; squareChatMid: string; squareMessageId: string; reportType: ReportType; otherReason: string; threadMid: string; - } +} export interface ReportSquareRequest { - squareMid: string; + squareMid: string; reportType: ReportType; otherReason: string; - } +} export interface ReqToSendPhonePinCodeRequest { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; verifMethod: T70_K; - } +} export interface I80_s0 { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; verifMethod: I80_EnumC26425y; - } +} export interface I80_t0 { - availableMethods: number[]; - } + availableMethods: number[]; +} export interface ReqToSendPhonePinCodeResponse { - availableMethods: number[]; - } + availableMethods: number[]; +} export interface RequestToListenRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface I80_u0 { - authSessionId: string; + authSessionId: string; email: string; - } +} export interface RequestToSendPasswordSetVerificationEmailResponse { - timeoutMinutes: Int64; - } + timeoutMinutes: Int64; +} export interface RequestToSpeakRequest { - squareChatMid: string; + squareChatMid: string; sessionId: string; - } +} export interface RequestTokenResponse { - requestToken: string; + requestToken: string; returnUrl: string; - } +} export interface ReserveInfo { - purchaseEnabledStatus: og_I; + purchaseEnabledStatus: og_I; orderInfo: OrderInfo; - } +} export interface ReserveRequest { - uniqueKey: string; - } + uniqueKey: string; +} export interface ReserveSubscriptionPurchaseRequest { - billingItemId: string; + billingItemId: string; storeCode: fN0_G; addOaFriend: boolean; entryPoint: string; campaignId: string; invitationId: string; - } +} export interface ReserveSubscriptionPurchaseResponse { - result: fN0_F; + result: fN0_F; orderId: string; confirmUrl: string; - } +} export interface I80_w0 { - authSessionId: string; - } + authSessionId: string; +} export interface I80_x0 { - mid: string; + mid: string; tokenV3IssueResult: TokenV3IssueResult; tokenV1IssueResult: TokenV1IssueResult; accountCountryCode: any; formattedPhoneNumbers: FormattedPhoneNumbers; - } +} export interface ResultPopupProperty { - iconUrl: string; + iconUrl: string; text: string; closeButtonText: string; linkButtonText: string; linkButtonForwardUrl: string; eventButton: EventButton; oaAddfreindArea: OaAddFriendArea; - } +} export interface RetrieveRequestTokenWithDocomoV2Response { - loginRedirectUrl: string; - } + loginRedirectUrl: string; +} export interface RetryPolicy { - initialDelayInMillis: Int64; + initialDelayInMillis: Int64; maxDelayInMillis: Int64; multiplier: number; jitterRate: number; - } +} export interface RevokeTokensRequest { - accessTokens: string[]; - } + accessTokens: string[]; +} export interface RichContent { - callback: Callback; + callback: Callback; noBidCallback: NoBidCallback; ttl: Int64; muteSupported: boolean; voteSupported: boolean; priority: Priority; richFormatPayload: Uf_t; - } +} export interface RichImage { - url: string; - } + url: string; +} export interface RichItem { - eyeCatchMessage: string; + eyeCatchMessage: string; message: string; animationLayer: AnimationLayer; thumbnailLayer: ThumbnailLayer; linkUrl: string; fallbackUrl: string; - } +} export interface RichString { - content: string; - meta: Record; - } + content: string; + meta: Record; +} export interface RichmenuCoordinates { - x: number; + x: number; y: number; - } +} export interface RichmenuEvent { - type: kf_u; + type: kf_u; richmenuId: string; coordinates: RichmenuCoordinates; areaIndex: number; clickUrl: string; clickAction: kf_r; - } +} export interface RingbackTone { - uuid: string; + uuid: string; trackId: string; title: string; oid: string; - tids: Record; + tids: Record; sid: string; artist: string; channelId: string; - } +} export interface Ringtone { - title: string; + title: string; artist: string; oid: string; channelId: string; - } +} export interface Room { - mid: string; + mid: string; createdTime: Int64; contacts: Contact[]; notificationDisabled: boolean; memberMids: string[]; - } +} export interface Rssi { - value: number; - } + value: number; +} export interface S70_b { - - } +} export interface S70_k { - - } +} export interface SCC { - businessName: string; + businessName: string; tel: string; email: string; url: string; address: string; personName: string; memo: string; - } +} export interface SIMInfo { - phoneNumber: string; + phoneNumber: string; countryCode: string; - } +} export interface SKAdNetwork { - identifiers: string; + identifiers: string; version: string; - } +} export interface I80_y0 { - keyMaterial: string; - } + keyMaterial: string; +} export interface SaveStudentInformationRequest { - studentInformation: StudentInformation; - } + studentInformation: StudentInformation; +} export interface Scenario { - id: string; + id: string; trigger: do0_I; actions: do0_C23141D[]; - } +} export interface ScenarioSet { - scenarios: Scenario[]; + scenarios: Scenario[]; autoClose: boolean; suppressionInterval: Int64; revision: Int64; modifiedTime: Int64; - } +} export interface ScoreInfo { - assetServiceInfo: AssetServiceInfo; - } + assetServiceInfo: AssetServiceInfo; +} export interface ScryptParams { - salt: string; + salt: string; nrp: string; dkLen: Int64; - } +} export interface SearchSquareChatMembersRequest { - squareChatMid: string; + squareChatMid: string; searchOption: SquareChatMemberSearchOption; continuationToken: string; limit: number; - } +} export interface SearchSquareChatMembersResponse { - members: SquareMember[]; + members: SquareMember[]; continuationToken: string; totalCount: number; - } +} export interface SearchSquareChatMentionablesRequest { - squareChatMid: string; + squareChatMid: string; searchOption: SquareChatMentionableSearchOption; continuationToken: string; limit: number; - } +} export interface SearchSquareChatMentionablesResponse { - mentionables: Mentionable[]; + mentionables: Mentionable[]; continuationToken: string; - } +} export interface SearchSquareMembersRequest { - squareMid: string; + squareMid: string; searchOption: SquareMemberSearchOption; continuationToken: string; limit: number; - } +} export interface SearchSquareMembersResponse { - members: SquareMember[]; + members: SquareMember[]; revision: Int64; continuationToken: string; totalCount: number; - } +} export interface SearchSquaresRequest { - query: string; + query: string; continuationToken: string; limit: number; - } +} export interface SearchSquaresResponse { - squares: Square[]; - squareStatuses: Record; - myMemberships: Record; + squares: Square[]; + squareStatuses: Record; + myMemberships: Record; continuationToken: string; - noteStatuses: Record; - } + noteStatuses: Record; +} export interface SecurityCenterResult { - uri: string; + uri: string; token: string; cookiePath: string; skip: boolean; - } +} export interface SendEncryptedE2EEKeyRequest { - sessionId: string; + sessionId: string; encryptedSecureChannelPayload: any; - } +} export interface SendMessageRequest { - reqSeq: number; + reqSeq: number; squareChatMid: string; squareMessage: SquareMessage; - } +} export interface SendMessageResponse { - createdSquareMessage: SquareMessage; - } + createdSquareMessage: SquareMessage; +} export interface SendPostbackRequest { - messageId: string; + messageId: string; url: string; chatMID: string; originMID: string; - } +} export interface SendSquareThreadMessageRequest { - reqSeq: number; + reqSeq: number; chatMid: string; threadMid: string; threadMessage: SquareMessage; - } +} export interface SendSquareThreadMessageResponse { - createdThreadMessage: SquareMessage; - } + createdThreadMessage: SquareMessage; +} export interface ServiceDisclaimerInfo { - disclaimerText: string; + disclaimerText: string; popupTitle: string; popupText: string; - } +} export interface ServiceShortcut { - id: string; + id: string; name: string; serviceEntryUrl: string; pictogramIconUrl: string; @@ -12055,53 +13649,53 @@ export interface ServiceShortcut { eventIcon: Icon; coloredPictogramIcon: Icon; customBadgeLabel: CustomBadgeLabel; - } +} export interface SetChatHiddenStatusRequest { - reqSeq: number; + reqSeq: number; chatMid: string; lastMessageId: Int64; hidden: boolean; - } +} export interface I80_z0 { - authSessionId: string; + authSessionId: string; password: string; - } +} export interface SetHashedPasswordRequest { - authSessionId: string; + authSessionId: string; password: string; - } +} export interface SetPasswordRequest { - sessionId: string; + sessionId: string; hashedPassword: string; - } +} export interface SetRequest { - keyName: string; + keyName: string; value: t80_p; clientTimestampMillis: Int64; ns: t80_h; transactionId: string; updateReason: UpdateReason; - } +} export interface SetResponse { - value: SettingValue; + value: SettingValue; updateTransactionId: string; - } +} export interface SettingValue { - value: t80_p; + value: t80_p; updateTimeMillis: Int64; scope: t80_i; scopeKey: string; - } +} export interface Settings { - notificationEnable: boolean; + notificationEnable: boolean; notificationMuteExpiration: Int64; notificationNewMessage: boolean; notificationGroupInvitation: boolean; @@ -12124,7 +13718,7 @@ export interface Settings { contactMyTicket: string; identityProvider: IdentityProvider; identityIdentifier: string; - snsAccounts: Record; + snsAccounts: Record; phoneRegistration: boolean; emailConfirmationStatus: EmailConfirmationStatus; accountMigrationPincodeType: AccountMigrationPincodeType; @@ -12133,7 +13727,7 @@ export interface Settings { allowUnregistrationSecondaryDevice: boolean; pwlessPrimaryCredentialRegistration: boolean; preferenceLocale: string; - customModes: Record; + customModes: Record; e2eeEnable: boolean; hitokotoBackupRequested: boolean; privacyProfileMusicPostToMyhome: boolean; @@ -12172,7 +13766,7 @@ export interface Settings { homeNotificationFavoriteFriendUpdate: boolean; homeNotificationGroupMemberUpdate: boolean; homeNotificationBirthday: boolean; - eapAllowedToConnect: Record; + eapAllowedToConnect: Record; agreementLineOutUse: Int64; agreementLineOutProvideInfo: Int64; notificationShowProfileImage: boolean; @@ -12191,53 +13785,53 @@ export interface Settings { agreementOaAiAssistantVersion: Int64; agreementLypPremiumMultiProfile: Int64; agreementLypPremiumMultiProfileVersion: Int64; - } +} export interface ShareTargetPickerResultRequest { - ott: string; + ott: string; liffId: string; resultCode: Qj_e0; resultDescription: string; - } +} export interface ShopFilter { - productAvailabilities: number[]; + productAvailabilities: number[]; stickerSizes: number[]; popupLayers: number[]; - } +} export interface ShortcutUserGuidePopupInfo { - popupTitle: string; + popupTitle: string; popupText: string; revisionTimeMillis: Int64; - } +} export interface ShouldShowWelcomeStickerBannerResponse { - shouldShowBanner: boolean; - } + shouldShowBanner: boolean; +} export interface I80_B0 { - countryCode: string; + countryCode: string; hni: string; carrierName: string; - } +} export interface SimCard { - countryCode: string; + countryCode: string; hni: string; carrierName: string; - } +} export interface SingleValueMetadata { - type: any; - } + type: any; +} export interface SleepAction { - sleepMillis: Int64; - } + sleepMillis: Int64; +} export interface SmartChannelRecommendation { - minDisplayDuration: number; + minDisplayDuration: number; title: string; descriptionText: string; labelText: string; @@ -12250,30 +13844,30 @@ export interface SmartChannelRecommendation { upvoteEventUrl: string; downvoteEventUrl: string; template: SmartChannelRecommendationTemplate; - } +} export interface SmartChannelRecommendationTemplate { - type: string; + type: string; bgColorName: string; - } +} export interface SocialLogin { - type: T70_j1; + type: T70_j1; accessToken: string; countryCode: string; - } +} export interface SpotItem { - name: string; + name: string; phone: string; category: SpotCategory; mid: string; countryAreaCode: string; freePhoneCallable: boolean; - } +} export interface Square { - mid: string; + mid: string; name: string; welcomeMessage: string; profileImageObsHash: string; @@ -12290,10 +13884,10 @@ export interface Square { adultOnly: BooleanState; svcTags: string[]; createdAt: Int64; - } +} export interface SquareAuthority { - squareMid: string; + squareMid: string; updateSquareProfile: SquareMemberRole; inviteNewMember: SquareMemberRole; approveJoinRequest: SquareMemberRole; @@ -12308,20 +13902,20 @@ export interface SquareAuthority { updateMaxChatMemberCount: SquareMemberRole; useReadonlyDefaultChat: SquareMemberRole; sendAllMention: SquareMemberRole; - } +} export interface SquareBot { - botMid: string; + botMid: string; active: boolean; displayName: string; profileImageObsHash: string; iconType: number; lastModifiedAt: Int64; expiredIn: Int64; - } +} export interface SquareChat { - squareChatMid: string; + squareChatMid: string; squareMid: string; type: SquareChatType; name: string; @@ -12332,110 +13926,110 @@ export interface SquareChat { invitationUrl: string; messageVisibility: MessageVisibility; ableToSearchMessage: BooleanState; - } +} export interface SquareChatAnnouncement { - announcementSeq: Int64; + announcementSeq: Int64; type: number; contents: SquareChatAnnouncementContents; createdAt: Int64; creator: string; - } +} export interface SquareChatFeature { - controlState: SquareChatFeatureControlState; + controlState: SquareChatFeatureControlState; booleanValue: BooleanState; - } +} export interface SquareChatFeatureSet { - squareChatMid: string; + squareChatMid: string; revision: Int64; disableUpdateMaxChatMemberCount: SquareChatFeature; disableMarkAsReadEvent: SquareChatFeature; - } +} export interface SquareChatMember { - squareMemberMid: string; + squareMemberMid: string; squareChatMid: string; revision: Int64; membershipState: SquareChatMembershipState; notificationForMessage: boolean; notificationForNewMember: boolean; - } +} export interface SquareChatMemberSearchOption { - displayName: string; + displayName: string; includingMe: boolean; - } +} export interface SquareChatMentionableSearchOption { - displayName: string; - } + displayName: string; +} export interface SquareChatStatus { - lastMessage: SquareMessage; + lastMessage: SquareMessage; senderDisplayName: string; otherStatus: SquareChatStatusWithoutMessage; - } +} export interface SquareChatStatusWithoutMessage { - memberCount: number; + memberCount: number; unreadMessageCount: number; markedAsReadMessageId: string; mentionedMessageId: string; notifiedMessageType: NotifiedMessageType; badges: number[]; - } +} export interface SquareCleanScore { - score: number; - } + score: number; +} export interface SquareEvent { - createdTime: Int64; + createdTime: Int64; type: SquareEventType; payload: SquareEventPayload; syncToken: string; eventStatus: SquareEventStatus; - } +} export interface SquareEventChatPopup { - squareChatMid: string; + squareChatMid: string; popupId: Int64; flexJson: string; button: ButtonContent; - } +} export interface SquareEventMutateMessage { - squareChatMid: string; + squareChatMid: string; squareMessage: SquareMessage; reqSeq: number; senderDisplayName: string; threadMid: string; - } +} export interface SquareEventNotificationJoinRequest { - squareMid: string; + squareMid: string; squareName: string; requestMemberName: string; profileImageObsHash: string; - } +} export interface SquareEventNotificationLiveTalk { - squareChatMid: string; + squareChatMid: string; liveTalkInvitationTicket: string; squareChatName: string; chatImageObsHash: string; - } +} export interface SquareEventNotificationMemberUpdate { - squareMid: string; + squareMid: string; squareName: string; profileImageObsHash: string; - } +} export interface SquareEventNotificationMessage { - squareChatMid: string; + squareChatMid: string; squareMessage: SquareMessage; senderDisplayName: string; unreadCount: number; @@ -12443,295 +14037,295 @@ export interface SquareEventNotificationMessage { mentionedMessageId: string; notifiedMessageType: NotifiedMessageType; reqSeq: number; - } +} export interface SquareEventNotificationMessageReaction { - squareChatMid: string; + squareChatMid: string; messageId: string; squareChatName: string; reactorName: string; thumbnailObsHash: string; messageText: string; type: MessageReactionType; - } +} export interface SquareEventNotificationNewChatMember { - squareChatMid: string; + squareChatMid: string; squareChatName: string; - } +} export interface SquareEventNotificationPost { - squareMid: string; + squareMid: string; notificationPostType: NotificationPostType; thumbnailObsHash: string; text: string; actionUri: string; - } +} export interface SquareEventNotificationPostAnnouncement { - squareMid: string; + squareMid: string; squareName: string; squareProfileImageObsHash: string; actionUri: string; - } +} export interface SquareEventNotificationSquareChatDelete { - squareChatMid: string; + squareChatMid: string; squareChatName: string; profileImageObsHash: string; - } +} export interface SquareEventNotificationSquareDelete { - squareMid: string; + squareMid: string; squareName: string; profileImageObsHash: string; - } +} export interface SquareEventNotificationThreadMessage { - threadMid: string; + threadMid: string; chatMid: string; squareMessage: SquareMessage; senderDisplayName: string; unreadCount: Int64; totalMessageCount: Int64; threadRootMessageId: string; - } +} export interface SquareEventNotificationThreadMessageReaction { - threadMid: string; + threadMid: string; chatMid: string; messageId: string; squareChatName: string; reactorName: string; thumbnailObsHash: string; - } +} export interface SquareEventNotifiedAddBot { - squareChatMid: string; + squareChatMid: string; squareMember: SquareMember; botMid: string; botDisplayName: string; - } +} export interface SquareEventNotifiedCreateSquareChatMember { - chat: SquareChat; + chat: SquareChat; chatStatus: SquareChatStatus; chatMember: SquareChatMember; joinedAt: Int64; peerSquareMember: SquareMember; squareChatFeatureSet: SquareChatFeatureSet; - } +} export interface SquareEventNotifiedCreateSquareMember { - square: Square; + square: Square; squareAuthority: SquareAuthority; squareStatus: SquareStatus; squareMember: SquareMember; squareFeatureSet: SquareFeatureSet; noteStatus: NoteStatus; - } +} export interface SquareEventNotifiedDeleteSquareChat { - squareChat: SquareChat; - } + squareChat: SquareChat; +} export interface SquareEventNotifiedDestroyMessage { - squareChatMid: string; + squareChatMid: string; messageId: string; threadMid: string; - } +} export interface SquareEventNotifiedInviteIntoSquareChat { - squareChatMid: string; + squareChatMid: string; invitees: SquareMember[]; invitor: SquareMember; invitorRelation: SquareMemberRelation; - } +} export interface SquareEventNotifiedJoinSquareChat { - squareChatMid: string; + squareChatMid: string; joinedMember: SquareMember; - } +} export interface SquareEventNotifiedKickoutFromSquare { - squareChatMid: string; + squareChatMid: string; kickees: SquareMember[]; kicker: SquareMember; - } +} export interface SquareEventNotifiedLeaveSquareChat { - squareChatMid: string; + squareChatMid: string; squareMemberMid: string; sayGoodbye: boolean; squareMember: SquareMember; - } +} export interface SquareEventNotifiedMarkAsRead { - squareChatMid: string; + squareChatMid: string; sMemberMid: string; messageId: string; - } +} export interface SquareEventNotifiedRemoveBot { - squareChatMid: string; + squareChatMid: string; squareMember: SquareMember; botMid: string; botDisplayName: string; - } +} export interface SquareEventNotifiedShutdownSquare { - squareChatMid: string; + squareChatMid: string; square: Square; - } +} export interface SquareEventNotifiedSystemMessage { - squareChatMid: string; + squareChatMid: string; text: string; messageKey: string; - } +} export interface SquareEventNotifiedUpdateLiveTalk { - squareChatMid: string; + squareChatMid: string; sessionId: string; liveTalkOnAir: boolean; - } +} export interface SquareEventNotifiedUpdateLiveTalkInfo { - squareChatMid: string; + squareChatMid: string; liveTalk: LiveTalk; liveTalkOnAir: boolean; - } +} export interface SquareEventNotifiedUpdateMessageStatus { - squareChatMid: string; + squareChatMid: string; messageId: string; messageStatus: SquareMessageStatus; threadMid: string; - } +} export interface SquareEventNotifiedUpdateReadonlyChat { - squareChatMid: string; + squareChatMid: string; readonly: boolean; - } +} export interface SquareEventNotifiedUpdateSquare { - squareMid: string; + squareMid: string; square: Square; - } +} export interface SquareEventNotifiedUpdateSquareAuthority { - squareMid: string; + squareMid: string; squareAuthority: SquareAuthority; - } +} export interface SquareEventNotifiedUpdateSquareChat { - squareMid: string; + squareMid: string; squareChatMid: string; squareChat: SquareChat; - } +} export interface SquareEventNotifiedUpdateSquareChatAnnouncement { - squareChatMid: string; + squareChatMid: string; announcementSeq: Int64; - } +} export interface SquareEventNotifiedUpdateSquareChatFeatureSet { - squareChatFeatureSet: SquareChatFeatureSet; - } + squareChatFeatureSet: SquareChatFeatureSet; +} export interface SquareEventNotifiedUpdateSquareChatMaxMemberCount { - squareChatMid: string; + squareChatMid: string; maxMemberCount: number; editor: SquareMember; - } +} export interface SquareEventNotifiedUpdateSquareChatMember { - squareChatMid: string; + squareChatMid: string; squareChatMember: SquareChatMember; - } +} export interface SquareEventNotifiedUpdateSquareChatProfileImage { - squareChatMid: string; + squareChatMid: string; editor: SquareMember; - } +} export interface SquareEventNotifiedUpdateSquareChatProfileName { - squareChatMid: string; + squareChatMid: string; editor: SquareMember; updatedChatName: string; - } +} export interface SquareEventNotifiedUpdateSquareChatStatus { - squareChatMid: string; + squareChatMid: string; statusWithoutMessage: SquareChatStatusWithoutMessage; - } +} export interface SquareEventNotifiedUpdateSquareFeatureSet { - squareFeatureSet: SquareFeatureSet; - } + squareFeatureSet: SquareFeatureSet; +} export interface SquareEventNotifiedUpdateSquareMember { - squareMid: string; + squareMid: string; squareMemberMid: string; squareMember: SquareMember; - } +} export interface SquareEventNotifiedUpdateSquareMemberProfile { - squareChatMid: string; + squareChatMid: string; squareMember: SquareMember; - } +} export interface SquareEventNotifiedUpdateSquareMemberRelation { - squareMid: string; + squareMid: string; myMemberMid: string; targetSquareMemberMid: string; squareMemberRelation: SquareMemberRelation; - } +} export interface SquareEventNotifiedUpdateSquareNoteStatus { - squareMid: string; + squareMid: string; noteStatus: NoteStatus; - } +} export interface SquareEventNotifiedUpdateSquareStatus { - squareMid: string; + squareMid: string; squareStatus: SquareStatus; - } +} export interface SquareEventNotifiedUpdateThread { - squareThread: SquareThread; - } + squareThread: SquareThread; +} export interface SquareEventNotifiedUpdateThreadMember { - threadMember: SquareThreadMember; + threadMember: SquareThreadMember; squareThread: SquareThread; threadRootMessage: SquareMessage; totalMessageCount: Int64; lastMessage: SquareMessage; lastMessageSenderDisplayName: string; - } +} export interface SquareEventNotifiedUpdateThreadRootMessage { - squareThread: SquareThread; - } + squareThread: SquareThread; +} export interface SquareEventNotifiedUpdateThreadRootMessageStatus { - chatMid: string; + chatMid: string; threadMid: string; threadRootMessageId: string; totalMessageCount: Int64; lastMessageAt: Int64; - } +} export interface SquareEventNotifiedUpdateThreadStatus { - threadMid: string; + threadMid: string; chatMid: string; unreadCount: Int64; markAsReadMessageId: string; - } +} export interface SquareEventReceiveMessage { - squareChatMid: string; + squareChatMid: string; squareMessage: SquareMessage; senderDisplayName: string; messageReactionStatus: SquareMessageReactionStatus; @@ -12741,10 +14335,10 @@ export interface SquareEventReceiveMessage { threadTotalMessageCount: Int64; threadLastMessageAt: Int64; contentsAttribute: ContentsAttribute; - } +} export interface SquareEventSendMessage { - squareChatMid: string; + squareChatMid: string; squareMessage: SquareMessage; reqSeq: number; senderDisplayName: string; @@ -12752,19 +14346,19 @@ export interface SquareEventSendMessage { threadMid: string; threadTotalMessageCount: Int64; threadLastMessageAt: Int64; - } +} export interface SquareExtraInfo { - country: string; - } + country: string; +} export interface SquareFeature { - controlState: SquareFeatureControlState; + controlState: SquareFeatureControlState; booleanValue: BooleanState; - } +} export interface SquareFeatureSet { - squareMid: string; + squareMid: string; revision: Int64; creatingSecretSquareChat: SquareFeature; invitingIntoOpenSquareChat: SquareFeature; @@ -12781,26 +14375,26 @@ export interface SquareFeatureSet { creatingSquareThread: SquareFeature; enableSquareThread: SquareFeature; disableChangeRoleCoAdmin: SquareFeature; - } +} export interface SquareInfo { - square: Square; + square: Square; squareStatus: SquareStatus; squareNoteStatus: NoteStatus; - } +} export interface SquareJoinMethod { - type: SquareJoinMethodType; + type: SquareJoinMethodType; value: SquareJoinMethodValue; - } +} export interface SquareJoinMethodValue { - approvalValue: ApprovalValue; + approvalValue: ApprovalValue; codeValue: CodeValue; - } +} export interface SquareMember { - squareMemberMid: string; + squareMemberMid: string; squareMid: string; displayName: string; profileImageObsHash: string; @@ -12811,15 +14405,15 @@ export interface SquareMember { preference: SquarePreference; joinMessage: string; createdAt: Int64; - } +} export interface SquareMemberRelation { - state: SquareMemberRelationState; + state: SquareMemberRelationState; revision: Int64; - } +} export interface SquareMemberSearchOption { - membershipState: SquareMembershipState; + membershipState: SquareMembershipState; memberRoles: SquareMemberRole[]; displayName: string; ableToReceiveMessage: BooleanState; @@ -12828,72 +14422,72 @@ export interface SquareMemberSearchOption { includingMe: boolean; excludeBlockedMembers: boolean; includingMeOnlyMatch: boolean; - } +} export interface SquareMessage { - message: Message; + message: Message; fromType: MIDType; squareMessageRevision: Int64; state: SquareMessageState; threadInfo: SquareMessageThreadInfo; - } +} export interface SquareMessageInfo { - message: SquareMessage; + message: SquareMessage; square: Square; chat: SquareChat; sender: SquareMember; - } +} export interface SquareMessageReaction { - type: MessageReactionType; + type: MessageReactionType; reactor: SquareMember; createdAt: Int64; updatedAt: Int64; - } +} export interface SquareMessageReactionStatus { - totalCount: number; - countByReactionType: Record; + totalCount: number; + countByReactionType: Record; myReaction: SquareMessageReaction; - } +} export interface SquareMessageStatus { - squareChatMid: string; + squareChatMid: string; globalMessageId: string; type: any; contents: MessageStatusContents; publishedAt: Int64; squareChatThreadMid: string; - } +} export interface SquareMessageThreadInfo { - chatThreadMid: string; + chatThreadMid: string; threadRoot: boolean; - } +} export interface SquareMetadata { - mid: string; + mid: string; excluded: number[]; revision: Int64; noAd: boolean; updatedAt: Int64; - } +} export interface SquarePreference { - favoriteTimestamp: Int64; + favoriteTimestamp: Int64; notiForNewJoinRequest: boolean; - } +} export interface SquareStatus { - memberCount: number; + memberCount: number; joinRequestCount: number; lastJoinRequestAt: Int64; openChatCount: number; - } +} export interface SquareThread { - threadMid: string; + threadMid: string; chatMid: string; squareMid: string; messageId: string; @@ -12901,52 +14495,52 @@ export interface SquareThread { expiresAt: Int64; readOnlyAt: Int64; revision: Int64; - } +} export interface SquareThreadMember { - squareMemberMid: string; + squareMemberMid: string; threadMid: string; chatMid: string; revision: Int64; membershipState: SquareThreadMembershipState; - } +} export interface SquareUserSettings { - liveTalkNotification: BooleanState; - } + liveTalkNotification: BooleanState; +} export interface SquareVisibility { - common: boolean; + common: boolean; search: boolean; - } +} export interface StartPhotoboothRequest { - chatMid: string; - } + chatMid: string; +} export interface StartPhotoboothResponse { - photoboothSessionId: string; - } + photoboothSessionId: string; +} export interface I80_C0 { - authSessionId: string; + authSessionId: string; modelName: string; deviceUid: string; - } +} export interface I80_D0 { - displayName: string; + displayName: string; availableAuthFactors: number[]; - } +} export interface Sticker { - stickerId: string; + stickerId: string; resourceType: StickerResourceType; popupLayer: zR0_EnumC40578c; - } +} export interface StickerDisplayData { - stickerHash: string; + stickerHash: string; stickerResourceType: StickerResourceType; nameTextProperty: ImageTextProperty; popupLayer: Ob1_B0; @@ -12956,36 +14550,36 @@ export interface StickerDisplayData { width: number; version: Int64; availableForCombinationSticker: boolean; - } +} export interface StickerIdRange { - start: Int64; + start: Int64; size: number; - } +} export interface StickerLayout { - layoutInfo: StickerLayoutInfo; + layoutInfo: StickerLayoutInfo; stickerInfo: StickerLayoutStickerInfo; - } +} export interface StickerLayoutInfo { - width: number; + width: number; height: number; rotation: number; x: number; y: number; - } +} export interface StickerLayoutStickerInfo { - stickerId: Int64; + stickerId: Int64; productId: Int64; stickerHash: string; stickerOptions: string; stickerVersion: Int64; - } +} export interface StickerProperty { - hasAnimation: boolean; + hasAnimation: boolean; hasSound: boolean; hasPopup: boolean; stickerResourceType: StickerResourceType; @@ -12995,15 +14589,15 @@ export interface StickerProperty { stickerIds: string[]; nameTextProperty: ImageTextProperty; availableForPhotoEdit: boolean; - stickerDefaultTexts: Record; + stickerDefaultTexts: Record; stickerSize: Ob1_C1; popupLayer: Ob1_B0; cpdProduct: boolean; availableForCombinationSticker: boolean; - } +} export interface StickerSummary { - stickerIdRanges: StickerIdRange[]; + stickerIdRanges: StickerIdRange[]; suggestVersion: Int64; stickerHash: string; defaultDisplayOnKeyboard: boolean; @@ -13013,69 +14607,69 @@ export interface StickerSummary { popupLayer: Ob1_B0; stickerSize: Ob1_C1; availableForCombinationSticker: boolean; - } +} export interface SticonProperty { - sticonIds: string[]; + sticonIds: string[]; availableForPhotoEdit: boolean; sticonResourceType: Ob1_F1; - } +} export interface SticonSummary { - suggestVersion: Int64; + suggestVersion: Int64; availableForPhotoEdit: boolean; sticonResourceType: Ob1_F1; - } +} export interface StopBundleSubscriptionRequest { - subscriptionService: any; + subscriptionService: any; storeCode: Ob1_K1; - } +} export interface StopBundleSubscriptionResponse { - result: Ob1_J1; - } + result: Ob1_J1; +} export interface StopNotificationAction { - serviceUuid: string; + serviceUuid: string; characteristicUuid: string; - } +} export interface StudentInformation { - schoolName: string; + schoolName: string; graduationDate: string; - } +} export interface SubLiffView { - presentationType: Qj_i0; + presentationType: Qj_i0; url: string; maxBrightness: boolean; menuColorSetting: LIFFMenuColorSetting; closeButtonPosition: Qj_h0; closeButtonLabel: string; skipWebRTCPermissionPopupAllowed: boolean; - } +} export interface SubTab { - id: string; + id: string; name: string; badgeInfo: BadgeInfo; tooltipInfo: TooltipInfo; modulesOrder: string[]; wrsSubTabModelId: string; - } +} export interface SubWindowResultRequest { - msit: string; + msit: string; mstVerifier: string; - } +} export interface SubscriptionNotification { - subscriptionId: Int64; - } + subscriptionId: Int64; +} export interface SubscriptionPlan { - billingItemId: string; + billingItemId: string; subscriptionService: any; target: Ob1_P1; type: Ob1_R1; @@ -13087,21 +14681,21 @@ export interface SubscriptionPlan { cpId: string; nameKey: string; tier: Ob1_Q1; - } +} export interface SubscriptionSlotHistory { - product: ProductSearchSummary; + product: ProductSearchSummary; addedTime: Int64; removedTime: Int64; - } +} export interface SubscriptionState { - subscriptionId: Int64; + subscriptionId: Int64; ttlMillis: Int64; - } +} export interface SubscriptionStatus { - billingItemId: string; + billingItemId: string; subscriptionService: any; period: string; localizedName: string; @@ -13115,108 +14709,104 @@ export interface SubscriptionStatus { nameKey: string; tier: Ob1_Q1; accountHold: boolean; - maxSlotCountsByProductType: Record; + maxSlotCountsByProductType: Record; agreementAccepted: boolean; originalValidUntil: Int64; - } +} export interface SuggestDictionarySetting { - language: string; + language: string; name: string; preload: boolean; suggestResource: SuggestResource; - patch: Record; + patch: Record; suggestTagResource: SuggestResource; - tagPatch: Record; + tagPatch: Record; corpusResource: SuggestResource; - } +} export interface SuggestResource { - dataUrl: string; + dataUrl: string; version: Int64; updatedTime: Int64; - } +} export interface SuggestTag { - tagId: string; + tagId: string; weight: number; - } +} export interface SuggestTrialRecommendation { - productId: string; + productId: string; productVersion: Int64; productName: string; resource: zR0_C40580e; tags: SuggestTag[]; - } +} export interface SyncRequest { - lastRevision: Int64; + lastRevision: Int64; count: number; lastGlobalRevision: Int64; lastIndividualRevision: Int64; fullSyncRequestReason: Pb1_J4; - lastPartialFullSyncs: Record; - } + lastPartialFullSyncs: Record; +} export interface SyncSquareMembersRequest { - squareMid: string; - squareMembers: Record; - } + squareMid: string; + squareMembers: Record; +} export interface SyncSquareMembersResponse { - updatedSquareMembers: SquareMember[]; - } + updatedSquareMembers: SquareMember[]; +} export interface T70_C14398f { - - } +} export interface T70_g1 { - - } +} export interface T70_o1 { - - } +} export interface T70_s1 { - - } +} export interface TGlobalEvents { - events: Record; + events: Record; lastRevision: Int64; - } +} export interface TIndividualEvents { - events: number[]; + events: number[]; lastRevision: Int64; - } +} export interface TMessageReadRange { - chatId: string; - } + chatId: string; +} export interface TMessageReadRangeEntry { - startMessageId: Int64; + startMessageId: Int64; endMessageId: Int64; startTime: Int64; endTime: Int64; - } +} export interface Tag { - tagId: string; + tagId: string; candidates: Candidate[]; - } +} export interface TaiwanBankAgreementRequiredPopupInfo { - popupTitle: string; + popupTitle: string; popupContent: string; - } +} export interface TaiwanBankBalanceInfo { - bankUser: boolean; + bankUser: boolean; balance: Int64; accessToken: string; accessTokenExpiresInSecond: number; @@ -13224,31 +14814,31 @@ export interface TaiwanBankBalanceInfo { balanceDisplay: boolean; agreedToShowBalance: boolean; agreementRequiredPopupInfo: TaiwanBankAgreementRequiredPopupInfo; - } +} export interface TaiwanBankLoginParameters { - loginScheme: string; + loginScheme: string; type: string; action: string; scope: string; responseType: string; codeChallengeMethod: string; clientId: string; - } +} export interface TalkroomEnterReferer { - urlScheme: string; + urlScheme: string; type: kf_x; content: kf_w; - } +} export interface TalkroomEvent { - type: any; + type: any; referer: TalkroomEnterReferer; - } +} export interface TargetProfileDetail { - snapshotTimeMillis: Int64; + snapshotTimeMillis: Int64; profileName: string; picturePath: string; statusMessage: RichString; @@ -13258,45 +14848,45 @@ export interface TargetProfileDetail { pictureSource: Pb1_N6; pictureStatus: string; profileId: string; - } +} export interface TermsAgreementExtraInfo { - termsType: any; + termsType: any; termsVersion: number; lanUrl: string; - } +} export interface TextButton { - text: string; - } + text: string; +} export interface TextMessageAnnouncementContents { - messageId: string; + messageId: string; text: string; senderSquareMemberMid: string; createdAt: Int64; - } +} export interface ThaiBankBalanceInfo { - bankUser: boolean; + bankUser: boolean; balanceDisplay: boolean; balance: number; balanceLinkUrl: string; - } +} export interface ThemeProperty { - thumbnailUrl: string; + thumbnailUrl: string; themeResourceType: Ob1_c2; - } +} export interface ThemeSummary { - imagePath: string; + imagePath: string; version: Int64; versionString: string; - } +} export interface ThingsDevice { - deviceId: string; + deviceId: string; actionUri: string; botMid: string; productType: do0_EnumC23139B; @@ -13306,2065 +14896,2025 @@ export interface ThingsDevice { targetABCEngineVersion: number; serviceUuid: string; bondingRequired: boolean; - } +} export interface ThingsOperation { - deviceId: string; + deviceId: string; offset: Int64; action: do0_C23138A; - } +} export interface ThumbnailLayer { - frontThumbnailImage: RichImage; + frontThumbnailImage: RichImage; backgroundThumbnailImage: RichImage; - } +} export interface Ticket { - id: string; + id: string; expirationTime: Int64; maxUseCount: number; - } +} export interface TokenV1IssueResult { - tokenSecret: string; - } + tokenSecret: string; +} export interface TokenV3IssueResult { - accessToken: string; + accessToken: string; refreshToken: string; durationUntilRefreshInSec: Int64; refreshApiRetryPolicy: RefreshApiRetryPolicy; loginSessionId: string; tokenIssueTimeEpochSec: Int64; - } +} export interface Tooltip { - text: string; + text: string; revisionTimeMillis: Int64; - } +} export interface TooltipInfo { - text: string; + text: string; tooltipRevision: Int64; - } +} export interface TopTab { - id: string; + id: string; modulesOrder: string[]; - } +} export interface TryAgainLaterExtraInfo { - blockSecs: number; - } + blockSecs: number; +} export interface U70_a { - - } +} export interface U70_t { - - } +} export interface U70_v { - - } +} export interface UEN { - revision: Int64; - } + revision: Int64; +} export interface Uf_C14856C { - uen: UEN; + uen: UEN; beacon: Beacon; - } +} export interface Uf_C14864f { - regularBadge: RegularBadge; + regularBadge: RegularBadge; urgentBadge: UrgentBadge; - } +} export interface Uf_p { - ad: AD; + ad: AD; content: Content; richContent: RichContent; - } +} export interface Uf_t { - typeA: RichItem; + typeA: RichItem; typeB: RichItem; - } +} export interface UnfollowRequest { - followMid: Pb1_A4; - } + followMid: Pb1_A4; +} export interface UnhideSquareMemberContentsRequest { - squareMemberMid: string; - } + squareMemberMid: string; +} export interface UnregisterAvailabilityInfo { - result: r80_m0; + result: r80_m0; message: string; - } +} export interface UnsendMessageRequest { - squareChatMid: string; + squareChatMid: string; messageId: string; threadMid: string; - } +} export interface UnsendMessageResponse { - unsentMessage: SquareMessage; - } + unsentMessage: SquareMessage; +} export interface UpdateChatRequest { - reqSeq: number; + reqSeq: number; chat: Chat; updatedAttribute: Pb1_O2; - } +} export interface UpdateGroupCallUrlRequest { - urlId: string; + urlId: string; targetAttribute: Pb1_ad; - } +} export interface UpdateLiveTalkAttrsRequest { - updatedAttrs: LiveTalkAttribute[]; + updatedAttrs: LiveTalkAttribute[]; liveTalk: LiveTalk; - } +} export interface UpdatePasswordRequest { - sessionId: string; + sessionId: string; hashedPassword: string; - } +} export interface UpdateProfileAttributesRequest { - profileAttributes: Record; - } + profileAttributes: Record; +} export interface UpdateReason { - type: t80_r; + type: t80_r; detail: string; - } +} export interface UpdateSafetyStatusRequest { - disasterId: string; + disasterId: string; safetyStatus: vh_m; message: string; - } +} export interface UpdateSquareAuthorityRequest { - updateAttributes: SquareAuthorityAttribute[]; + updateAttributes: SquareAuthorityAttribute[]; authority: SquareAuthority; - } +} export interface UpdateSquareAuthorityResponse { - updatdAttributes: number[]; + updatdAttributes: number[]; authority: SquareAuthority; - } +} export interface UpdateSquareChatMemberRequest { - updatedAttrs: SquareChatMemberAttribute[]; + updatedAttrs: SquareChatMemberAttribute[]; chatMember: SquareChatMember; - } +} export interface UpdateSquareChatMemberResponse { - updatedChatMember: SquareChatMember; - } + updatedChatMember: SquareChatMember; +} export interface UpdateSquareChatRequest { - updatedAttrs: SquareChatAttribute[]; + updatedAttrs: SquareChatAttribute[]; squareChat: SquareChat; - } +} export interface UpdateSquareChatResponse { - updatedAttrs: number[]; + updatedAttrs: number[]; squareChat: SquareChat; - } +} export interface UpdateSquareFeatureSetRequest { - updateAttributes: SquareFeatureSetAttribute[]; + updateAttributes: SquareFeatureSetAttribute[]; squareFeatureSet: SquareFeatureSet; - } +} export interface UpdateSquareFeatureSetResponse { - updateAttributes: number[]; + updateAttributes: number[]; squareFeatureSet: SquareFeatureSet; - } +} export interface UpdateSquareMemberRelationRequest { - squareMid: string; + squareMid: string; targetSquareMemberMid: string; updatedAttrs: number[]; relation: SquareMemberRelation; - } +} export interface UpdateSquareMemberRelationResponse { - squareMid: string; + squareMid: string; targetSquareMemberMid: string; updatedAttrs: number[]; relation: SquareMemberRelation; - } +} export interface UpdateSquareMemberRequest { - updatedAttrs: SquareMemberAttribute[]; + updatedAttrs: SquareMemberAttribute[]; updatedPreferenceAttrs: SquarePreferenceAttribute[]; squareMember: SquareMember; - } +} export interface UpdateSquareMemberResponse { - updatedAttrs: number[]; + updatedAttrs: number[]; squareMember: SquareMember; updatedPreferenceAttrs: number[]; - } +} export interface UpdateSquareMembersRequest { - updatedAttrs: SquareMemberAttribute[]; + updatedAttrs: SquareMemberAttribute[]; members: SquareMember[]; - } +} export interface UpdateSquareMembersResponse { - updatedAttrs: number[]; + updatedAttrs: number[]; editor: SquareMember; - members: Record; - } + members: Record; +} export interface UpdateSquareRequest { - updatedAttrs: SquareAttribute[]; + updatedAttrs: SquareAttribute[]; square: Square; - } +} export interface UpdateSquareResponse { - updatedAttrs: number[]; + updatedAttrs: number[]; square: Square; - } +} export interface UpdateUserSettingsRequest { - updatedAttrs: any[]; + updatedAttrs: any[]; userSettings: SquareUserSettings; - } +} export interface UrgentBadge { - bgColor: string; + bgColor: string; label: string; color: string; - } +} export interface UrlButton { - text: string; + text: string; url: string; - } +} export interface UsePhotoboothTicketRequest { - chatMid: string; + chatMid: string; photoboothSessionId: string; - } +} export interface UsePhotoboothTicketResponse { - signedTicketJwt: string; - } + signedTicketJwt: string; +} export interface UserBlockDetail { - deletedFromBlockList: boolean; - } + deletedFromBlockList: boolean; +} export interface UserDevice { - device: ThingsDevice; + device: ThingsDevice; deviceDisplayName: string; - } +} export interface UserFriendDetail { - createdTime: Int64; + createdTime: Int64; overriddenName: string; favoriteTime: Int64; hidden: boolean; ringtone: string; ringbackTone: string; - } +} export interface UserPhoneNumber { - phoneNumber: string; + phoneNumber: string; countryCode: string; - } +} export interface UserProfile { - displayName: string; + displayName: string; profileImageUrl: string; - } +} export interface UserRestrictionExtraInfo { - linkUrl: string; - } + linkUrl: string; +} export interface V1PasswordHashingParameters { - aesKey: string; + aesKey: string; salt: string; - } +} export interface VerificationSessionData { - sessionId: string; + sessionId: string; method: VerificationMethod; callback: string; normalizedPhone: string; countryCode: string; nationalSignificantNumber: string; availableVerificationMethods: VerificationMethod[]; - } +} export interface VerifyAccountUsingHashedPwdRequest { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; v1HashedPassword: string; clientHashedPassword: string; - } +} export interface I80_E0 { - authSessionId: string; + authSessionId: string; v1HashedPassword: string; clientHashedPassword: string; - } +} export interface VerifyAccountUsingHashedPwdResponse { - userProfile: UserProfile; - } + userProfile: UserProfile; +} export interface VerifyAssertionRequest { - sessionId: string; + sessionId: string; credentialId: string; assertionObject: string; clientDataJSON: string; - } +} export interface VerifyAttestationRequest { - sessionId: string; + sessionId: string; attestationObject: string; clientDataJSON: string; - } +} export interface VerifyEapLoginRequest { - authSessionId: string; + authSessionId: string; eapLogin: EapLogin; - } +} export interface I80_G0 { - authSessionId: string; + authSessionId: string; eapLogin: EapLogin; - } +} export interface VerifyEapLoginResponse { - accountExists: boolean; - } + accountExists: boolean; +} export interface I80_H0 { - userProfile: any; - } + userProfile: any; +} export interface VerifyPhonePinCodeRequest { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; pinCode: string; - } +} export interface I80_I0 { - authSessionId: string; + authSessionId: string; userPhoneNumber: UserPhoneNumber; pinCode: string; - } +} export interface VerifyPhonePinCodeResponse { - accountExist: boolean; + accountExist: boolean; sameUdidFromAccount: boolean; allowedToRegister: boolean; userProfile: UserProfile; - } +} export interface I80_J0 { - userProfile: any; - } + userProfile: any; +} export interface VerifyPinCodeRequest { - pinCode: string; - } + pinCode: string; +} export interface VerifyQrCodeRequest { - authSessionId: string; - metaData: Record; - } + authSessionId: string; + metaData: Record; +} export interface VerifySocialLoginResponse { - accountExist: boolean; + accountExist: boolean; userProfile: UserProfile; sameUdidFromAccount: boolean; - } +} export interface I80_K0 { - baseUrl: string; + baseUrl: string; token: string; - } +} export interface WebAuthDetails { - baseUrl: string; + baseUrl: string; token: string; - } +} export interface WebLoginRequest { - hookedFullUrl: string; + hookedFullUrl: string; sessionString: string; fromIAB: boolean; sourceApplication: string; - } +} export interface WebLoginResponse { - returnUrl: string; + returnUrl: string; optionalReturnUrl: string; redirectConfirmationPageUrl: string; - } +} export interface WifiSignal { - ssid: string; + ssid: string; bssid: string; wifiStandard: string; frequency: number; lastSeenTimestamp: Int64; rssi: number; - } +} export interface Z70_a { - recoveryKey: string; + recoveryKey: string; backupBlobPayload: string; - } +} export interface ZQ0_b { - - } +} export interface acceptChatInvitationByTicket_args { - request: AcceptChatInvitationByTicketRequest; - } + request: AcceptChatInvitationByTicketRequest; +} export interface acceptChatInvitationByTicket_result { - success: Pb1_C12980f; + success: Pb1_C12980f; e: TalkException; - } +} export interface acceptChatInvitation_args { - request: AcceptChatInvitationRequest; - } + request: AcceptChatInvitationRequest; +} export interface acceptChatInvitation_result { - success: Pb1_C13008h; + success: Pb1_C13008h; e: TalkException; - } +} export interface SquareService_acceptSpeakers_result { - success: AcceptSpeakersResponse; + success: AcceptSpeakersResponse; e: SquareException; - } +} export interface SquareService_acceptToChangeRole_result { - success: AcceptToChangeRoleResponse; + success: AcceptToChangeRoleResponse; e: SquareException; - } +} export interface SquareService_acceptToListen_result { - success: AcceptToListenResponse; + success: AcceptToListenResponse; e: SquareException; - } +} export interface SquareService_acceptToSpeak_result { - success: AcceptToSpeakResponse; + success: AcceptToSpeakResponse; e: SquareException; - } +} export interface SquareService_acquireLiveTalk_result { - success: AcquireLiveTalkResponse; + success: AcquireLiveTalkResponse; e: SquareException; - } +} export interface SquareService_cancelToSpeak_result { - success: CancelToSpeakResponse; + success: CancelToSpeakResponse; e: SquareException; - } +} export interface SquareService_fetchLiveTalkEvents_result { - success: FetchLiveTalkEventsResponse; + success: FetchLiveTalkEventsResponse; e: SquareException; - } +} export interface SquareService_findLiveTalkByInvitationTicket_result { - success: FindLiveTalkByInvitationTicketResponse; + success: FindLiveTalkByInvitationTicketResponse; e: SquareException; - } +} export interface SquareService_forceEndLiveTalk_result { - success: ForceEndLiveTalkResponse; + success: ForceEndLiveTalkResponse; e: SquareException; - } +} export interface SquareService_getLiveTalkInfoForNonMember_result { - success: GetLiveTalkInfoForNonMemberResponse; + success: GetLiveTalkInfoForNonMemberResponse; e: SquareException; - } +} export interface SquareService_getLiveTalkInvitationUrl_result { - success: GetLiveTalkInvitationUrlResponse; + success: GetLiveTalkInvitationUrlResponse; e: SquareException; - } +} export interface SquareService_getLiveTalkSpeakersForNonMember_result { - success: GetLiveTalkSpeakersForNonMemberResponse; + success: GetLiveTalkSpeakersForNonMemberResponse; e: SquareException; - } +} export interface SquareService_getSquareInfoByChatMid_result { - success: GetSquareInfoByChatMidResponse; + success: GetSquareInfoByChatMidResponse; e: SquareException; - } +} export interface SquareService_inviteToChangeRole_result { - success: InviteToChangeRoleResponse; + success: InviteToChangeRoleResponse; e: SquareException; - } +} export interface SquareService_inviteToListen_result { - success: InviteToListenResponse; + success: InviteToListenResponse; e: SquareException; - } +} export interface SquareService_inviteToLiveTalk_result { - success: InviteToLiveTalkResponse; + success: InviteToLiveTalkResponse; e: SquareException; - } +} export interface SquareService_inviteToSpeak_result { - success: InviteToSpeakResponse; + success: InviteToSpeakResponse; e: SquareException; - } +} export interface SquareService_joinLiveTalk_result { - success: JoinLiveTalkResponse; + success: JoinLiveTalkResponse; e: SquareException; - } +} export interface SquareService_kickOutLiveTalkParticipants_result { - success: KickOutLiveTalkParticipantsResponse; + success: KickOutLiveTalkParticipantsResponse; e: SquareException; - } +} export interface SquareService_rejectSpeakers_result { - success: RejectSpeakersResponse; + success: RejectSpeakersResponse; e: SquareException; - } +} export interface SquareService_rejectToSpeak_result { - success: RejectToSpeakResponse; + success: RejectToSpeakResponse; e: SquareException; - } +} export interface SquareService_removeLiveTalkSubscription_result { - success: RemoveLiveTalkSubscriptionResponse; + success: RemoveLiveTalkSubscriptionResponse; e: SquareException; - } +} export interface SquareService_reportLiveTalk_result { - success: ReportLiveTalkResponse; + success: ReportLiveTalkResponse; e: SquareException; - } +} export interface SquareService_reportLiveTalkSpeaker_result { - success: ReportLiveTalkSpeakerResponse; + success: ReportLiveTalkSpeakerResponse; e: SquareException; - } +} export interface SquareService_requestToListen_result { - success: RequestToListenResponse; + success: RequestToListenResponse; e: SquareException; - } +} export interface SquareService_requestToSpeak_result { - success: RequestToSpeakResponse; + success: RequestToSpeakResponse; e: SquareException; - } +} export interface SquareService_updateLiveTalkAttrs_result { - success: UpdateLiveTalkAttrsResponse; + success: UpdateLiveTalkAttrsResponse; e: SquareException; - } +} export interface SquareService_acceptSpeakers_args { - request: AcceptSpeakersRequest; - } + request: AcceptSpeakersRequest; +} export interface SquareService_acceptToChangeRole_args { - request: AcceptToChangeRoleRequest; - } + request: AcceptToChangeRoleRequest; +} export interface SquareService_acceptToListen_args { - request: AcceptToListenRequest; - } + request: AcceptToListenRequest; +} export interface SquareService_acceptToSpeak_args { - request: AcceptToSpeakRequest; - } + request: AcceptToSpeakRequest; +} export interface SquareService_acquireLiveTalk_args { - request: AcquireLiveTalkRequest; - } + request: AcquireLiveTalkRequest; +} export interface SquareService_cancelToSpeak_args { - request: CancelToSpeakRequest; - } + request: CancelToSpeakRequest; +} export interface SquareService_fetchLiveTalkEvents_args { - request: FetchLiveTalkEventsRequest; - } + request: FetchLiveTalkEventsRequest; +} export interface SquareService_findLiveTalkByInvitationTicket_args { - request: FindLiveTalkByInvitationTicketRequest; - } + request: FindLiveTalkByInvitationTicketRequest; +} export interface SquareService_forceEndLiveTalk_args { - request: ForceEndLiveTalkRequest; - } + request: ForceEndLiveTalkRequest; +} export interface SquareService_getLiveTalkInfoForNonMember_args { - request: GetLiveTalkInfoForNonMemberRequest; - } + request: GetLiveTalkInfoForNonMemberRequest; +} export interface SquareService_getLiveTalkInvitationUrl_args { - request: GetLiveTalkInvitationUrlRequest; - } + request: GetLiveTalkInvitationUrlRequest; +} export interface SquareService_getLiveTalkSpeakersForNonMember_args { - request: GetLiveTalkSpeakersForNonMemberRequest; - } + request: GetLiveTalkSpeakersForNonMemberRequest; +} export interface SquareService_getSquareInfoByChatMid_args { - request: GetSquareInfoByChatMidRequest; - } + request: GetSquareInfoByChatMidRequest; +} export interface SquareService_inviteToChangeRole_args { - request: InviteToChangeRoleRequest; - } + request: InviteToChangeRoleRequest; +} export interface SquareService_inviteToListen_args { - request: InviteToListenRequest; - } + request: InviteToListenRequest; +} export interface SquareService_inviteToLiveTalk_args { - request: InviteToLiveTalkRequest; - } + request: InviteToLiveTalkRequest; +} export interface SquareService_inviteToSpeak_args { - request: InviteToSpeakRequest; - } + request: InviteToSpeakRequest; +} export interface SquareService_joinLiveTalk_args { - request: JoinLiveTalkRequest; - } + request: JoinLiveTalkRequest; +} export interface SquareService_kickOutLiveTalkParticipants_args { - request: KickOutLiveTalkParticipantsRequest; - } + request: KickOutLiveTalkParticipantsRequest; +} export interface SquareService_rejectSpeakers_args { - request: RejectSpeakersRequest; - } + request: RejectSpeakersRequest; +} export interface SquareService_rejectToSpeak_args { - request: RejectToSpeakRequest; - } + request: RejectToSpeakRequest; +} export interface SquareService_removeLiveTalkSubscription_args { - request: RemoveLiveTalkSubscriptionRequest; - } + request: RemoveLiveTalkSubscriptionRequest; +} export interface SquareService_reportLiveTalk_args { - request: ReportLiveTalkRequest; - } + request: ReportLiveTalkRequest; +} export interface SquareService_reportLiveTalkSpeaker_args { - request: ReportLiveTalkSpeakerRequest; - } + request: ReportLiveTalkSpeakerRequest; +} export interface SquareService_requestToListen_args { - request: RequestToListenRequest; - } + request: RequestToListenRequest; +} export interface SquareService_requestToSpeak_args { - request: RequestToSpeakRequest; - } + request: RequestToSpeakRequest; +} export interface SquareService_updateLiveTalkAttrs_args { - request: UpdateLiveTalkAttrsRequest; - } + request: UpdateLiveTalkAttrsRequest; +} export interface acquireCallRoute_args { - to: string; + to: string; callType: Pb1_D4; - fromEnvInfo: Record; - } + fromEnvInfo: Record; +} export interface acquireCallRoute_result { - success: CallRoute; + success: CallRoute; e: TalkException; - } +} export interface acquireEncryptedAccessToken_args { - featureType: Pb1_EnumC13222w4; - } + featureType: Pb1_EnumC13222w4; +} export interface acquireEncryptedAccessToken_result { - success: string; + success: string; e: TalkException; - } +} export interface acquireGroupCallRoute_args { - chatMid: string; + chatMid: string; mediaType: Pb1_EnumC13237x5; isInitialHost: boolean; capabilities: string[]; - } +} export interface acquireGroupCallRoute_result { - success: GroupCallRoute; + success: GroupCallRoute; e: TalkException; - } +} export interface acquireOACallRoute_args { - request: AcquireOACallRouteRequest; - } + request: AcquireOACallRouteRequest; +} export interface acquireOACallRoute_result { - success: AcquireOACallRouteResponse; + success: AcquireOACallRouteResponse; e: TalkException; - } +} export interface acquirePaidCallRoute_args { - paidCallType: PaidCallType; + paidCallType: PaidCallType; dialedNumber: string; language: string; networkCode: string; disableCallerId: boolean; referer: string; adSessionId: string; - } +} export interface acquirePaidCallRoute_result { - success: PaidCallResponse; + success: PaidCallResponse; e: TalkException; - } +} export interface activateSubscription_args { - request: ActivateSubscriptionRequest; - } + request: ActivateSubscriptionRequest; +} export interface activateSubscription_result { - e: MembershipException; - } + e: MembershipException; +} export interface adTypeOptOutClickEvent_args { - request: AdTypeOptOutClickEventRequest; - } + request: AdTypeOptOutClickEventRequest; +} export interface adTypeOptOutClickEvent_result { - success: NZ0_C12152b; + success: NZ0_C12152b; e: WalletException; - } +} export interface addFriendByMid_args { - request: AddFriendByMidRequest; - } + request: AddFriendByMidRequest; +} export interface addFriendByMid_result { - success: LN0_C11270b; + success: LN0_C11270b; be: RejectedException; ce: ServerFailureException; te: TalkException; - } +} export interface addItemToCollection_args { - request: AddItemToCollectionRequest; - } + request: AddItemToCollectionRequest; +} export interface addItemToCollection_result { - success: Ob1_C12608b; + success: Ob1_C12608b; e: CollectionException; - } +} export interface addOaFriend_args { - request: NZ0_C12155c; - } + request: NZ0_C12155c; +} export interface addOaFriend_result { - success: AddOaFriendResponse; + success: AddOaFriendResponse; e: WalletException; - } +} export interface addProductToSubscriptionSlot_args { - req: AddProductToSubscriptionSlotRequest; - } + req: AddProductToSubscriptionSlotRequest; +} export interface addProductToSubscriptionSlot_result { - success: AddProductToSubscriptionSlotResponse; + success: AddProductToSubscriptionSlotResponse; e: ShopException; - } +} export interface addThemeToSubscriptionSlot_args { - req: AddThemeToSubscriptionSlotRequest; - } + req: AddThemeToSubscriptionSlotRequest; +} export interface addThemeToSubscriptionSlot_result { - success: AddThemeToSubscriptionSlotResponse; + success: AddThemeToSubscriptionSlotResponse; e: ShopException; - } +} export interface addToFollowBlacklist_args { - addToFollowBlacklistRequest: AddToFollowBlacklistRequest; - } + addToFollowBlacklistRequest: AddToFollowBlacklistRequest; +} export interface addToFollowBlacklist_result { - e: TalkException; - } + e: TalkException; +} export interface SquareService_agreeToTerms_result { - success: AgreeToTermsResponse; + success: AgreeToTermsResponse; e: SquareException; - } +} export interface SquareService_approveSquareMembers_result { - success: ApproveSquareMembersResponse; + success: ApproveSquareMembersResponse; e: SquareException; - } +} export interface SquareService_checkJoinCode_result { - success: CheckJoinCodeResponse; + success: CheckJoinCodeResponse; e: SquareException; - } +} export interface SquareService_createSquareChatAnnouncement_result { - success: CreateSquareChatAnnouncementResponse; + success: CreateSquareChatAnnouncementResponse; e: SquareException; - } +} export interface SquareService_createSquareChat_result { - success: CreateSquareChatResponse; + success: CreateSquareChatResponse; e: SquareException; - } +} export interface SquareService_createSquare_result { - success: CreateSquareResponse; + success: CreateSquareResponse; e: SquareException; - } +} export interface SquareService_deleteSquareChatAnnouncement_result { - success: DeleteSquareChatAnnouncementResponse; + success: DeleteSquareChatAnnouncementResponse; e: SquareException; - } +} export interface SquareService_deleteSquareChat_result { - success: DeleteSquareChatResponse; + success: DeleteSquareChatResponse; e: SquareException; - } +} export interface SquareService_deleteSquare_result { - success: DeleteSquareResponse; + success: DeleteSquareResponse; e: SquareException; - } +} export interface SquareService_destroyMessage_result { - success: DestroyMessageResponse; + success: DestroyMessageResponse; e: SquareException; - } +} export interface SquareService_destroyMessages_result { - success: DestroyMessagesResponse; + success: DestroyMessagesResponse; e: SquareException; - } +} export interface SquareService_fetchMyEvents_result { - success: FetchMyEventsResponse; + success: FetchMyEventsResponse; e: SquareException; - } +} export interface SquareService_fetchSquareChatEvents_result { - success: FetchSquareChatEventsResponse; + success: FetchSquareChatEventsResponse; e: SquareException; - } +} export interface SquareService_findSquareByEmid_result { - success: FindSquareByEmidResponse; + success: FindSquareByEmidResponse; e: SquareException; - } +} export interface SquareService_findSquareByInvitationTicket_result { - success: FindSquareByInvitationTicketResponse; + success: FindSquareByInvitationTicketResponse; e: SquareException; - } +} export interface SquareService_findSquareByInvitationTicketV2_result { - success: FindSquareByInvitationTicketV2Response; + success: FindSquareByInvitationTicketV2Response; e: SquareException; - } +} export interface SquareService_getGoogleAdOptions_result { - success: GetGoogleAdOptionsResponse; + success: GetGoogleAdOptionsResponse; e: SquareException; - } +} export interface SquareService_getInvitationTicketUrl_result { - success: GetInvitationTicketUrlResponse; + success: GetInvitationTicketUrlResponse; e: SquareException; - } +} export interface SquareService_getJoinableSquareChats_result { - success: GetJoinableSquareChatsResponse; + success: GetJoinableSquareChatsResponse; e: SquareException; - } +} export interface SquareService_getJoinedSquareChats_result { - success: GetJoinedSquareChatsResponse; + success: GetJoinedSquareChatsResponse; e: SquareException; - } +} export interface SquareService_getJoinedSquares_result { - success: GetJoinedSquaresResponse; + success: GetJoinedSquaresResponse; e: SquareException; - } +} export interface SquareService_getMessageReactions_result { - success: GetMessageReactionsResponse; + success: GetMessageReactionsResponse; e: SquareException; - } +} export interface SquareService_getNoteStatus_result { - success: GetNoteStatusResponse; + success: GetNoteStatusResponse; e: SquareException; - } +} export interface SquareService_getPopularKeywords_result { - success: GetPopularKeywordsResponse; + success: GetPopularKeywordsResponse; e: SquareException; - } +} export interface SquareService_getSquareAuthorities_result { - success: GetSquareAuthoritiesResponse; + success: GetSquareAuthoritiesResponse; e: SquareException; - } +} export interface SquareService_getSquareAuthority_result { - success: GetSquareAuthorityResponse; + success: GetSquareAuthorityResponse; e: SquareException; - } +} export interface SquareService_getCategories_result { - success: GetSquareCategoriesResponse; + success: GetSquareCategoriesResponse; e: SquareException; - } +} export interface SquareService_getSquareChatAnnouncements_result { - success: GetSquareChatAnnouncementsResponse; + success: GetSquareChatAnnouncementsResponse; e: SquareException; - } +} export interface SquareService_getSquareChatEmid_result { - success: GetSquareChatEmidResponse; + success: GetSquareChatEmidResponse; e: SquareException; - } +} export interface SquareService_getSquareChatFeatureSet_result { - success: GetSquareChatFeatureSetResponse; + success: GetSquareChatFeatureSetResponse; e: SquareException; - } +} export interface SquareService_getSquareChatMember_result { - success: GetSquareChatMemberResponse; + success: GetSquareChatMemberResponse; e: SquareException; - } +} export interface SquareService_getSquareChatMembers_result { - success: GetSquareChatMembersResponse; + success: GetSquareChatMembersResponse; e: SquareException; - } +} export interface SquareService_getSquareChat_result { - success: GetSquareChatResponse; + success: GetSquareChatResponse; e: SquareException; - } +} export interface SquareService_getSquareChatStatus_result { - success: GetSquareChatStatusResponse; + success: GetSquareChatStatusResponse; e: SquareException; - } +} export interface SquareService_getSquareEmid_result { - success: GetSquareEmidResponse; + success: GetSquareEmidResponse; e: SquareException; - } +} export interface SquareService_getSquareFeatureSet_result { - success: GetSquareFeatureSetResponse; + success: GetSquareFeatureSetResponse; e: SquareException; - } +} export interface SquareService_getSquareMemberRelation_result { - success: GetSquareMemberRelationResponse; + success: GetSquareMemberRelationResponse; e: SquareException; - } +} export interface SquareService_getSquareMemberRelations_result { - success: GetSquareMemberRelationsResponse; + success: GetSquareMemberRelationsResponse; e: SquareException; - } +} export interface SquareService_getSquareMember_result { - success: GetSquareMemberResponse; + success: GetSquareMemberResponse; e: SquareException; - } +} export interface SquareService_getSquareMembersBySquare_result { - success: GetSquareMembersBySquareResponse; + success: GetSquareMembersBySquareResponse; e: SquareException; - } +} export interface SquareService_getSquareMembers_result { - success: GetSquareMembersResponse; + success: GetSquareMembersResponse; e: SquareException; - } +} export interface SquareService_getSquare_result { - success: GetSquareResponse; + success: GetSquareResponse; e: SquareException; - } +} export interface SquareService_getSquareStatus_result { - success: GetSquareStatusResponse; + success: GetSquareStatusResponse; e: SquareException; - } +} export interface SquareService_getSquareThreadMid_result { - success: GetSquareThreadMidResponse; + success: GetSquareThreadMidResponse; e: SquareException; - } +} export interface SquareService_getSquareThread_result { - success: GetSquareThreadResponse; + success: GetSquareThreadResponse; e: SquareException; - } +} export interface SquareService_getUserSettings_result { - success: GetUserSettingsResponse; + success: GetUserSettingsResponse; e: SquareException; - } +} export interface SquareService_hideSquareMemberContents_result { - success: HideSquareMemberContentsResponse; + success: HideSquareMemberContentsResponse; e: SquareException; - } +} export interface SquareService_inviteIntoSquareChat_result { - success: InviteIntoSquareChatResponse; + success: InviteIntoSquareChatResponse; e: SquareException; - } +} export interface SquareService_inviteToSquare_result { - success: InviteToSquareResponse; + success: InviteToSquareResponse; e: SquareException; - } +} export interface SquareService_joinSquareChat_result { - success: JoinSquareChatResponse; + success: JoinSquareChatResponse; e: SquareException; - } +} export interface SquareService_joinSquare_result { - success: JoinSquareResponse; + success: JoinSquareResponse; e: SquareException; - } +} export interface SquareService_joinSquareThread_result { - success: JoinSquareThreadResponse; + success: JoinSquareThreadResponse; e: SquareException; - } +} export interface SquareService_leaveSquareChat_result { - success: LeaveSquareChatResponse; + success: LeaveSquareChatResponse; e: SquareException; - } +} export interface SquareService_leaveSquare_result { - success: LeaveSquareResponse; + success: LeaveSquareResponse; e: SquareException; - } +} export interface SquareService_leaveSquareThread_result { - success: LeaveSquareThreadResponse; + success: LeaveSquareThreadResponse; e: SquareException; - } +} export interface SquareService_manualRepair_result { - success: ManualRepairResponse; + success: ManualRepairResponse; e: SquareException; - } +} export interface SquareService_markAsRead_result { - success: MarkAsReadResponse; + success: MarkAsReadResponse; e: SquareException; - } +} export interface SquareService_markChatsAsRead_result { - success: MarkChatsAsReadResponse; + success: MarkChatsAsReadResponse; e: SquareException; - } +} export interface SquareService_markThreadsAsRead_result { - success: MarkThreadsAsReadResponse; + success: MarkThreadsAsReadResponse; e: SquareException; - } +} export interface SquareService_reactToMessage_result { - success: ReactToMessageResponse; + success: ReactToMessageResponse; e: SquareException; - } +} export interface SquareService_refreshSubscriptions_result { - success: RefreshSubscriptionsResponse; + success: RefreshSubscriptionsResponse; e: SquareException; - } +} export interface SquareService_rejectSquareMembers_result { - success: RejectSquareMembersResponse; + success: RejectSquareMembersResponse; e: SquareException; - } +} export interface SquareService_removeSubscriptions_result { - success: RemoveSubscriptionsResponse; + success: RemoveSubscriptionsResponse; e: SquareException; - } +} export interface SquareService_reportMessageSummary_result { - success: ReportMessageSummaryResponse; + success: ReportMessageSummaryResponse; e: SquareException; - } +} export interface SquareService_reportSquareChat_result { - success: ReportSquareChatResponse; + success: ReportSquareChatResponse; e: SquareException; - } +} export interface SquareService_reportSquareMember_result { - success: ReportSquareMemberResponse; + success: ReportSquareMemberResponse; e: SquareException; - } +} export interface SquareService_reportSquareMessage_result { - success: ReportSquareMessageResponse; + success: ReportSquareMessageResponse; e: SquareException; - } +} export interface SquareService_reportSquare_result { - success: ReportSquareResponse; + success: ReportSquareResponse; e: SquareException; - } +} export interface SquareService_searchSquareChatMembers_result { - success: SearchSquareChatMembersResponse; + success: SearchSquareChatMembersResponse; e: SquareException; - } +} export interface SquareService_searchSquareChatMentionables_result { - success: SearchSquareChatMentionablesResponse; + success: SearchSquareChatMentionablesResponse; e: SquareException; - } +} export interface SquareService_searchSquareMembers_result { - success: SearchSquareMembersResponse; + success: SearchSquareMembersResponse; e: SquareException; - } +} export interface SquareService_searchSquares_result { - success: SearchSquaresResponse; + success: SearchSquaresResponse; e: SquareException; - } +} export interface SquareService_sendMessage_result { - success: SendMessageResponse; + success: SendMessageResponse; e: SquareException; - } +} export interface SquareService_sendSquareThreadMessage_result { - success: SendSquareThreadMessageResponse; + success: SendSquareThreadMessageResponse; e: SquareException; - } +} export interface SquareService_syncSquareMembers_result { - success: SyncSquareMembersResponse; + success: SyncSquareMembersResponse; e: SquareException; - } +} export interface SquareService_unhideSquareMemberContents_result { - success: UnhideSquareMemberContentsResponse; + success: UnhideSquareMemberContentsResponse; e: SquareException; - } +} export interface SquareService_unsendMessage_result { - success: UnsendMessageResponse; + success: UnsendMessageResponse; e: SquareException; - } +} export interface SquareService_updateSquareAuthority_result { - success: UpdateSquareAuthorityResponse; + success: UpdateSquareAuthorityResponse; e: SquareException; - } +} export interface SquareService_updateSquareChatMember_result { - success: UpdateSquareChatMemberResponse; + success: UpdateSquareChatMemberResponse; e: SquareException; - } +} export interface SquareService_updateSquareChat_result { - success: UpdateSquareChatResponse; + success: UpdateSquareChatResponse; e: SquareException; - } +} export interface SquareService_updateSquareFeatureSet_result { - success: UpdateSquareFeatureSetResponse; + success: UpdateSquareFeatureSetResponse; e: SquareException; - } +} export interface SquareService_updateSquareMemberRelation_result { - success: UpdateSquareMemberRelationResponse; + success: UpdateSquareMemberRelationResponse; e: SquareException; - } +} export interface SquareService_updateSquareMember_result { - success: UpdateSquareMemberResponse; + success: UpdateSquareMemberResponse; e: SquareException; - } +} export interface SquareService_updateSquareMembers_result { - success: UpdateSquareMembersResponse; + success: UpdateSquareMembersResponse; e: SquareException; - } +} export interface SquareService_updateSquare_result { - success: UpdateSquareResponse; + success: UpdateSquareResponse; e: SquareException; - } +} export interface SquareService_updateUserSettings_result { - success: UpdateUserSettingsResponse; + success: UpdateUserSettingsResponse; e: SquareException; - } +} export interface SquareService_agreeToTerms_args { - request: AgreeToTermsRequest; - } + request: AgreeToTermsRequest; +} export interface SquareService_approveSquareMembers_args { - request: ApproveSquareMembersRequest; - } + request: ApproveSquareMembersRequest; +} export interface SquareService_checkJoinCode_args { - request: CheckJoinCodeRequest; - } + request: CheckJoinCodeRequest; +} export interface SquareService_createSquareChatAnnouncement_args { - createSquareChatAnnouncementRequest: CreateSquareChatAnnouncementRequest; - } + createSquareChatAnnouncementRequest: CreateSquareChatAnnouncementRequest; +} export interface SquareService_createSquareChat_args { - request: CreateSquareChatRequest; - } + request: CreateSquareChatRequest; +} export interface SquareService_createSquare_args { - request: CreateSquareRequest; - } + request: CreateSquareRequest; +} export interface SquareService_deleteSquareChatAnnouncement_args { - deleteSquareChatAnnouncementRequest: DeleteSquareChatAnnouncementRequest; - } + deleteSquareChatAnnouncementRequest: DeleteSquareChatAnnouncementRequest; +} export interface SquareService_deleteSquareChat_args { - request: DeleteSquareChatRequest; - } + request: DeleteSquareChatRequest; +} export interface SquareService_deleteSquare_args { - request: DeleteSquareRequest; - } + request: DeleteSquareRequest; +} export interface SquareService_destroyMessage_args { - request: DestroyMessageRequest; - } + request: DestroyMessageRequest; +} export interface SquareService_destroyMessages_args { - request: DestroyMessagesRequest; - } + request: DestroyMessagesRequest; +} export interface SquareService_fetchMyEvents_args { - request: FetchMyEventsRequest; - } + request: FetchMyEventsRequest; +} export interface SquareService_fetchSquareChatEvents_args { - request: FetchSquareChatEventsRequest; - } + request: FetchSquareChatEventsRequest; +} export interface SquareService_findSquareByEmid_args { - findSquareByEmidRequest: FindSquareByEmidRequest; - } + findSquareByEmidRequest: FindSquareByEmidRequest; +} export interface SquareService_findSquareByInvitationTicket_args { - request: FindSquareByInvitationTicketRequest; - } + request: FindSquareByInvitationTicketRequest; +} export interface SquareService_findSquareByInvitationTicketV2_args { - request: FindSquareByInvitationTicketV2Request; - } + request: FindSquareByInvitationTicketV2Request; +} export interface SquareService_getGoogleAdOptions_args { - request: GetGoogleAdOptionsRequest; - } + request: GetGoogleAdOptionsRequest; +} export interface SquareService_getInvitationTicketUrl_args { - request: GetInvitationTicketUrlRequest; - } + request: GetInvitationTicketUrlRequest; +} export interface SquareService_getJoinableSquareChats_args { - request: GetJoinableSquareChatsRequest; - } + request: GetJoinableSquareChatsRequest; +} export interface SquareService_getJoinedSquareChats_args { - request: GetJoinedSquareChatsRequest; - } + request: GetJoinedSquareChatsRequest; +} export interface SquareService_getJoinedSquares_args { - request: GetJoinedSquaresRequest; - } + request: GetJoinedSquaresRequest; +} export interface SquareService_getMessageReactions_args { - request: GetMessageReactionsRequest; - } + request: GetMessageReactionsRequest; +} export interface SquareService_getNoteStatus_args { - request: GetNoteStatusRequest; - } + request: GetNoteStatusRequest; +} export interface SquareService_getPopularKeywords_args { - request: GetPopularKeywordsRequest; - } + request: GetPopularKeywordsRequest; +} export interface SquareService_getSquareAuthorities_args { - request: GetSquareAuthoritiesRequest; - } + request: GetSquareAuthoritiesRequest; +} export interface SquareService_getSquareAuthority_args { - request: GetSquareAuthorityRequest; - } + request: GetSquareAuthorityRequest; +} export interface SquareService_getCategories_args { - request: GetSquareCategoriesRequest; - } + request: GetSquareCategoriesRequest; +} export interface SquareService_getSquareChatAnnouncements_args { - getSquareChatAnnouncementsRequest: GetSquareChatAnnouncementsRequest; - } + getSquareChatAnnouncementsRequest: GetSquareChatAnnouncementsRequest; +} export interface SquareService_getSquareChatEmid_args { - request: GetSquareChatEmidRequest; - } + request: GetSquareChatEmidRequest; +} export interface SquareService_getSquareChatFeatureSet_args { - request: GetSquareChatFeatureSetRequest; - } + request: GetSquareChatFeatureSetRequest; +} export interface SquareService_getSquareChatMember_args { - request: GetSquareChatMemberRequest; - } + request: GetSquareChatMemberRequest; +} export interface SquareService_getSquareChatMembers_args { - request: GetSquareChatMembersRequest; - } + request: GetSquareChatMembersRequest; +} export interface SquareService_getSquareChat_args { - request: GetSquareChatRequest; - } + request: GetSquareChatRequest; +} export interface SquareService_getSquareChatStatus_args { - request: GetSquareChatStatusRequest; - } + request: GetSquareChatStatusRequest; +} export interface SquareService_getSquareEmid_args { - request: GetSquareEmidRequest; - } + request: GetSquareEmidRequest; +} export interface SquareService_getSquareFeatureSet_args { - request: GetSquareFeatureSetRequest; - } + request: GetSquareFeatureSetRequest; +} export interface SquareService_getSquareMemberRelation_args { - request: GetSquareMemberRelationRequest; - } + request: GetSquareMemberRelationRequest; +} export interface SquareService_getSquareMemberRelations_args { - request: GetSquareMemberRelationsRequest; - } + request: GetSquareMemberRelationsRequest; +} export interface SquareService_getSquareMember_args { - request: GetSquareMemberRequest; - } + request: GetSquareMemberRequest; +} export interface SquareService_getSquareMembersBySquare_args { - request: GetSquareMembersBySquareRequest; - } + request: GetSquareMembersBySquareRequest; +} export interface SquareService_getSquareMembers_args { - request: GetSquareMembersRequest; - } + request: GetSquareMembersRequest; +} export interface SquareService_getSquare_args { - request: GetSquareRequest; - } + request: GetSquareRequest; +} export interface SquareService_getSquareStatus_args { - request: GetSquareStatusRequest; - } + request: GetSquareStatusRequest; +} export interface SquareService_getSquareThreadMid_args { - request: GetSquareThreadMidRequest; - } + request: GetSquareThreadMidRequest; +} export interface SquareService_getSquareThread_args { - request: GetSquareThreadRequest; - } + request: GetSquareThreadRequest; +} export interface SquareService_getUserSettings_args { - request: GetUserSettingsRequest; - } + request: GetUserSettingsRequest; +} export interface SquareService_hideSquareMemberContents_args { - request: HideSquareMemberContentsRequest; - } + request: HideSquareMemberContentsRequest; +} export interface SquareService_inviteIntoSquareChat_args { - request: InviteIntoSquareChatRequest; - } + request: InviteIntoSquareChatRequest; +} export interface SquareService_inviteToSquare_args { - request: InviteToSquareRequest; - } + request: InviteToSquareRequest; +} export interface SquareService_joinSquareChat_args { - request: JoinSquareChatRequest; - } + request: JoinSquareChatRequest; +} export interface SquareService_joinSquare_args { - request: JoinSquareRequest; - } + request: JoinSquareRequest; +} export interface SquareService_joinSquareThread_args { - request: JoinSquareThreadRequest; - } + request: JoinSquareThreadRequest; +} export interface SquareService_leaveSquareChat_args { - request: LeaveSquareChatRequest; - } + request: LeaveSquareChatRequest; +} export interface SquareService_leaveSquare_args { - request: LeaveSquareRequest; - } + request: LeaveSquareRequest; +} export interface SquareService_leaveSquareThread_args { - request: LeaveSquareThreadRequest; - } + request: LeaveSquareThreadRequest; +} export interface SquareService_manualRepair_args { - request: ManualRepairRequest; - } + request: ManualRepairRequest; +} export interface SquareService_markAsRead_args { - request: MarkAsReadRequest; - } + request: MarkAsReadRequest; +} export interface SquareService_markChatsAsRead_args { - request: MarkChatsAsReadRequest; - } + request: MarkChatsAsReadRequest; +} export interface SquareService_markThreadsAsRead_args { - request: MarkThreadsAsReadRequest; - } + request: MarkThreadsAsReadRequest; +} export interface SquareService_reactToMessage_args { - request: ReactToMessageRequest; - } + request: ReactToMessageRequest; +} export interface SquareService_refreshSubscriptions_args { - request: RefreshSubscriptionsRequest; - } + request: RefreshSubscriptionsRequest; +} export interface SquareService_rejectSquareMembers_args { - request: RejectSquareMembersRequest; - } + request: RejectSquareMembersRequest; +} export interface SquareService_removeSubscriptions_args { - request: RemoveSubscriptionsRequest; - } + request: RemoveSubscriptionsRequest; +} export interface SquareService_reportMessageSummary_args { - request: ReportMessageSummaryRequest; - } + request: ReportMessageSummaryRequest; +} export interface SquareService_reportSquareChat_args { - request: ReportSquareChatRequest; - } + request: ReportSquareChatRequest; +} export interface SquareService_reportSquareMember_args { - request: ReportSquareMemberRequest; - } + request: ReportSquareMemberRequest; +} export interface SquareService_reportSquareMessage_args { - request: ReportSquareMessageRequest; - } + request: ReportSquareMessageRequest; +} export interface SquareService_reportSquare_args { - request: ReportSquareRequest; - } + request: ReportSquareRequest; +} export interface SquareService_searchSquareChatMembers_args { - request: SearchSquareChatMembersRequest; - } + request: SearchSquareChatMembersRequest; +} export interface SquareService_searchSquareChatMentionables_args { - request: SearchSquareChatMentionablesRequest; - } + request: SearchSquareChatMentionablesRequest; +} export interface SquareService_searchSquareMembers_args { - request: SearchSquareMembersRequest; - } + request: SearchSquareMembersRequest; +} export interface SquareService_searchSquares_args { - request: SearchSquaresRequest; - } + request: SearchSquaresRequest; +} export interface SquareService_sendMessage_args { - request: SendMessageRequest; - } + request: SendMessageRequest; +} export interface SquareService_sendSquareThreadMessage_args { - request: SendSquareThreadMessageRequest; - } + request: SendSquareThreadMessageRequest; +} export interface SquareService_syncSquareMembers_args { - request: SyncSquareMembersRequest; - } + request: SyncSquareMembersRequest; +} export interface SquareService_unhideSquareMemberContents_args { - request: UnhideSquareMemberContentsRequest; - } + request: UnhideSquareMemberContentsRequest; +} export interface SquareService_unsendMessage_args { - request: UnsendMessageRequest; - } + request: UnsendMessageRequest; +} export interface SquareService_updateSquareAuthority_args { - request: UpdateSquareAuthorityRequest; - } + request: UpdateSquareAuthorityRequest; +} export interface SquareService_updateSquareChatMember_args { - request: UpdateSquareChatMemberRequest; - } + request: UpdateSquareChatMemberRequest; +} export interface SquareService_updateSquareChat_args { - request: UpdateSquareChatRequest; - } + request: UpdateSquareChatRequest; +} export interface SquareService_updateSquareFeatureSet_args { - request: UpdateSquareFeatureSetRequest; - } + request: UpdateSquareFeatureSetRequest; +} export interface SquareService_updateSquareMemberRelation_args { - request: UpdateSquareMemberRelationRequest; - } + request: UpdateSquareMemberRelationRequest; +} export interface SquareService_updateSquareMember_args { - request: UpdateSquareMemberRequest; - } + request: UpdateSquareMemberRequest; +} export interface SquareService_updateSquareMembers_args { - request: UpdateSquareMembersRequest; - } + request: UpdateSquareMembersRequest; +} export interface SquareService_updateSquare_args { - request: UpdateSquareRequest; - } + request: UpdateSquareRequest; +} export interface SquareService_updateUserSettings_args { - request: UpdateUserSettingsRequest; - } + request: UpdateUserSettingsRequest; +} export interface approveChannelAndIssueChannelToken_args { - channelId: string; - } + channelId: string; +} export interface approveChannelAndIssueChannelToken_result { - success: ChannelToken; + success: ChannelToken; e: ChannelException; - } +} export interface authenticateUsingBankAccountEx_args { - type: r80_EnumC34362b; + type: r80_EnumC34362b; bankId: string; bankBranchId: string; realAccountNo: string; accountProductCode: r80_EnumC34361a; authToken: string; - } +} export interface authenticateUsingBankAccountEx_result { - success: PaymentAuthenticationInfo; + success: PaymentAuthenticationInfo; e: PaymentException; - } +} export interface authenticateWithPaak_args { - request: AuthenticateWithPaakRequest; - } + request: AuthenticateWithPaakRequest; +} export interface authenticateWithPaak_result { - success: o80_C32273b; + success: o80_C32273b; e: SecondaryPwlessLoginException; - } +} export interface blockContact_args { - reqSeq: number; + reqSeq: number; id: string; - } +} export interface blockContact_result { - e: TalkException; - } + e: TalkException; +} export interface blockRecommendation_args { - reqSeq: number; + reqSeq: number; targetMid: string; - } +} export interface blockRecommendation_result { - e: TalkException; - } + e: TalkException; +} export interface bulkFollow_args { - bulkFollowRequest: BulkFollowRequest; - } + bulkFollowRequest: BulkFollowRequest; +} export interface bulkFollow_result { - success: Pb1_C12996g1; + success: Pb1_C12996g1; e: TalkException; - } +} export interface bulkGetSetting_args { - request: BulkGetRequest; - } + request: BulkGetRequest; +} export interface bulkGetSetting_result { - success: any; + success: any; e: SettingsException; - } +} export interface bulkSetSetting_args { - request: any; - } + request: any; +} export interface bulkSetSetting_result { - success: any; + success: any; e: SettingsException; - } +} export interface buyMustbuyProduct_args { - request: BuyMustbuyRequest; - } + request: BuyMustbuyRequest; +} export interface buyMustbuyProduct_result { - e: ShopException; - } + e: ShopException; +} export interface canCreateCombinationSticker_args { - request: CanCreateCombinationStickerRequest; - } + request: CanCreateCombinationStickerRequest; +} export interface canCreateCombinationSticker_result { - success: CanCreateCombinationStickerResponse; + success: CanCreateCombinationStickerResponse; e: ShopException; - } +} export interface canReceivePresent_args { - shopId: string; + shopId: string; productId: string; locale: Locale; recipientMid: string; - } +} export interface canReceivePresent_result { - e: ShopException; - } + e: ShopException; +} export interface cancelChatInvitation_args { - request: CancelChatInvitationRequest; - } + request: CancelChatInvitationRequest; +} export interface cancelChatInvitation_result { - success: Pb1_U1; + success: Pb1_U1; e: TalkException; - } +} export interface cancelPaakAuth_args { - request: CancelPaakAuthRequest; - } + request: CancelPaakAuthRequest; +} export interface cancelPaakAuth_result { - success: o80_d; + success: o80_d; e: SecondaryPwlessLoginException; - } +} export interface cancelPaakAuthentication_args { - request: CancelPaakAuthenticationRequest; - } + request: CancelPaakAuthenticationRequest; +} export interface cancelPaakAuthentication_result { - success: n80_d; + success: n80_d; cpae: ChannelPaakAuthnException; tae: TokenAuthException; - } +} export interface cancelPinCode_args { - request: CancelPinCodeRequest; - } + request: CancelPinCodeRequest; +} export interface cancelPinCode_result { - success: q80_C33650b; + success: q80_C33650b; e: SecondaryQrCodeException; - } +} export interface cancelReaction_args { - cancelReactionRequest: CancelReactionRequest; - } + cancelReactionRequest: CancelReactionRequest; +} export interface cancelReaction_result { - e: TalkException; - } + e: TalkException; +} export interface changeSubscription_args { - req: any; - } + req: any; +} export interface changeSubscription_result { - success: ChangeSubscriptionResponse; + success: ChangeSubscriptionResponse; e: ShopException; - } +} export interface changeVerificationMethod_args { - sessionId: string; + sessionId: string; method: VerificationMethod; - } +} export interface changeVerificationMethod_result { - success: VerificationSessionData; + success: VerificationSessionData; e: TalkException; - } +} export interface checkCanUnregisterEx_args { - type: r80_n0; - } + type: r80_n0; +} export interface checkCanUnregisterEx_result { - success: UnregisterAvailabilityInfo; + success: UnregisterAvailabilityInfo; e: PaymentException; - } +} export interface I80_C26370F { - request: I80_C26396d; - } + request: I80_C26396d; +} export interface checkEmailAssigned_args { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; - } +} export interface checkEmailAssigned_result { - success: CheckEmailAssignedResponse; + success: CheckEmailAssignedResponse; e: AuthException; - } +} export interface I80_C26371G { - success: I80_C26398e; + success: I80_C26398e; e: I80_C26390a; - } +} export interface checkIfEncryptedE2EEKeyReceived_args { - request: CheckIfEncryptedE2EEKeyReceivedRequest; - } + request: CheckIfEncryptedE2EEKeyReceivedRequest; +} export interface checkIfEncryptedE2EEKeyReceived_result { - success: CheckIfEncryptedE2EEKeyReceivedResponse; + success: CheckIfEncryptedE2EEKeyReceivedResponse; e: PrimaryQrCodeMigrationException; - } +} export interface I80_C26372H { - request: I80_C26400f; - } + request: I80_C26400f; +} export interface checkIfPasswordSetVerificationEmailVerified_args { - authSessionId: string; - } + authSessionId: string; +} export interface checkIfPasswordSetVerificationEmailVerified_result { - success: T70_C14398f; + success: T70_C14398f; e: AuthException; - } +} export interface I80_C26373I { - success: I80_C26402g; + success: I80_C26402g; e: I80_C26390a; - } +} export interface checkIfPhonePinCodeMsgVerified_args { - request: CheckIfPhonePinCodeMsgVerifiedRequest; - } + request: CheckIfPhonePinCodeMsgVerifiedRequest; +} export interface checkIfPhonePinCodeMsgVerified_result { - success: CheckIfPhonePinCodeMsgVerifiedResponse; + success: CheckIfPhonePinCodeMsgVerifiedResponse; e: AuthException; - } +} export interface checkOperationTimeEx_args { - type: r80_EnumC34368h; + type: r80_EnumC34368h; lpAccountNo: string; channelType: r80_EnumC34371k; - } +} export interface checkOperationTimeEx_result { - success: CheckOperationResult; + success: CheckOperationResult; e: PaymentException; - } +} export interface checkUserAgeAfterApprovalWithDocomoV2_args { - request: CheckUserAgeAfterApprovalWithDocomoV2Request; - } + request: CheckUserAgeAfterApprovalWithDocomoV2Request; +} export interface checkUserAgeAfterApprovalWithDocomoV2_result { - success: CheckUserAgeAfterApprovalWithDocomoV2Response; + success: CheckUserAgeAfterApprovalWithDocomoV2Response; e: TalkException; - } +} export interface checkUserAgeWithDocomoV2_args { - request: CheckUserAgeWithDocomoV2Request; - } + request: CheckUserAgeWithDocomoV2Request; +} export interface checkUserAgeWithDocomoV2_result { - success: CheckUserAgeWithDocomoV2Response; + success: CheckUserAgeWithDocomoV2Response; e: TalkException; - } +} export interface checkUserAge_args { - carrier: CarrierCode; + carrier: CarrierCode; sessionId: string; verifier: string; standardAge: number; - } +} export interface checkUserAge_result { - success: Pb1_gd; + success: Pb1_gd; e: TalkException; - } +} export interface clearRingbackTone_result { - e: TalkException; - } + e: TalkException; +} export interface clearRingtone_args { - oid: string; - } + oid: string; +} export interface clearRingtone_result { - e: TalkException; - } + e: TalkException; +} export interface AcceptSpeakersResponse { - - } +} export interface AcceptToChangeRoleResponse { - - } +} export interface AcceptToListenResponse { - - } +} export interface AcceptToSpeakResponse { - - } +} export interface AgreeToTermsResponse { - - } +} export interface AllNonMemberLiveTalkParticipants { - - } +} export interface CancelToSpeakResponse { - - } +} export interface DeleteSquareChatAnnouncementResponse { - - } +} export interface DeleteSquareChatResponse { - - } +} export interface DeleteSquareResponse { - - } +} export interface DestroyMessageResponse { - - } +} export interface DestroyMessagesResponse { - - } +} export interface ForceEndLiveTalkResponse { - - } +} export interface GetPopularKeywordsRequest { - - } +} export interface GetSquareCategoriesRequest { - - } +} export interface HideSquareMemberContentsResponse { - - } +} export interface InviteToChangeRoleResponse { - - } +} export interface InviteToListenResponse { - - } +} export interface InviteToLiveTalkResponse { - - } +} export interface InviteToSquareResponse { - - } +} export interface KickOutLiveTalkParticipantsResponse { - - } +} export interface LeaveSquareChatResponse { - - } +} export interface LeaveSquareResponse { - - } +} export interface LiveTalkEventPayload { - notifiedUpdateLiveTalkTitle: LiveTalkEventNotifiedUpdateLiveTalkTitle; - notifiedUpdateLiveTalkAnnouncement: LiveTalkEventNotifiedUpdateLiveTalkAnnouncement; + notifiedUpdateLiveTalkTitle: LiveTalkEventNotifiedUpdateLiveTalkTitle; + notifiedUpdateLiveTalkAnnouncement: + LiveTalkEventNotifiedUpdateLiveTalkAnnouncement; notifiedUpdateSquareMemberRole: LiveTalkEventNotifiedUpdateSquareMemberRole; - notifiedUpdateLiveTalkAllowRequestToSpeak: LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak; + notifiedUpdateLiveTalkAllowRequestToSpeak: + LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak; notifiedUpdateSquareMember: LiveTalkEventNotifiedUpdateSquareMember; - } +} export interface LiveTalkKickOutTarget { - liveTalkParticipant: LiveTalkParticipant; + liveTalkParticipant: LiveTalkParticipant; allNonMemberLiveTalkParticipants: AllNonMemberLiveTalkParticipants; - } +} export interface MarkAsReadResponse { - - } +} export interface MarkChatsAsReadResponse { - - } +} export interface MarkThreadsAsReadResponse { - - } +} export interface RejectSpeakersResponse { - - } +} export interface RejectToSpeakResponse { - - } +} export interface RemoveLiveTalkSubscriptionResponse { - - } +} export interface RemoveSubscriptionsResponse { - - } +} export interface ReportLiveTalkResponse { - - } +} export interface ReportLiveTalkSpeakerResponse { - - } +} export interface ReportMessageSummaryResponse { - - } +} export interface ReportSquareChatResponse { - - } +} export interface ReportSquareMemberResponse { - - } +} export interface ReportSquareMessageResponse { - - } +} export interface ReportSquareResponse { - - } +} export interface RequestToListenResponse { - - } +} export interface RequestToSpeakResponse { - - } +} export interface SquareEventPayload { - receiveMessage: SquareEventReceiveMessage; + receiveMessage: SquareEventReceiveMessage; sendMessage: SquareEventSendMessage; notifiedJoinSquareChat: SquareEventNotifiedJoinSquareChat; notifiedInviteIntoSquareChat: SquareEventNotifiedInviteIntoSquareChat; notifiedLeaveSquareChat: SquareEventNotifiedLeaveSquareChat; notifiedDestroyMessage: SquareEventNotifiedDestroyMessage; notifiedMarkAsRead: SquareEventNotifiedMarkAsRead; - notifiedUpdateSquareMemberProfile: SquareEventNotifiedUpdateSquareMemberProfile; + notifiedUpdateSquareMemberProfile: + SquareEventNotifiedUpdateSquareMemberProfile; notifiedUpdateSquare: SquareEventNotifiedUpdateSquare; notifiedUpdateSquareMember: SquareEventNotifiedUpdateSquareMember; notifiedUpdateSquareChat: SquareEventNotifiedUpdateSquareChat; @@ -15374,7 +16924,8 @@ export interface SquareEventPayload { notifiedUpdateSquareChatStatus: SquareEventNotifiedUpdateSquareChatStatus; notifiedCreateSquareMember: SquareEventNotifiedCreateSquareMember; notifiedCreateSquareChatMember: SquareEventNotifiedCreateSquareChatMember; - notifiedUpdateSquareMemberRelation: SquareEventNotifiedUpdateSquareMemberRelation; + notifiedUpdateSquareMemberRelation: + SquareEventNotifiedUpdateSquareMemberRelation; notifiedShutdownSquare: SquareEventNotifiedShutdownSquare; notifiedKickoutFromSquare: SquareEventNotifiedKickoutFromSquare; notifiedDeleteSquareChat: SquareEventNotifiedDeleteSquareChat; @@ -15387,14 +16938,18 @@ export interface SquareEventPayload { notificationSquareDelete: SquareEventNotificationSquareDelete; notificationSquareChatDelete: SquareEventNotificationSquareChatDelete; notificationMessage: SquareEventNotificationMessage; - notifiedUpdateSquareChatProfileName: SquareEventNotifiedUpdateSquareChatProfileName; - notifiedUpdateSquareChatProfileImage: SquareEventNotifiedUpdateSquareChatProfileImage; + notifiedUpdateSquareChatProfileName: + SquareEventNotifiedUpdateSquareChatProfileName; + notifiedUpdateSquareChatProfileImage: + SquareEventNotifiedUpdateSquareChatProfileImage; notifiedUpdateSquareFeatureSet: SquareEventNotifiedUpdateSquareFeatureSet; notifiedAddBot: SquareEventNotifiedAddBot; notifiedRemoveBot: SquareEventNotifiedRemoveBot; notifiedUpdateSquareNoteStatus: SquareEventNotifiedUpdateSquareNoteStatus; - notifiedUpdateSquareChatAnnouncement: SquareEventNotifiedUpdateSquareChatAnnouncement; - notifiedUpdateSquareChatMaxMemberCount: SquareEventNotifiedUpdateSquareChatMaxMemberCount; + notifiedUpdateSquareChatAnnouncement: + SquareEventNotifiedUpdateSquareChatAnnouncement; + notifiedUpdateSquareChatMaxMemberCount: + SquareEventNotifiedUpdateSquareChatMaxMemberCount; notificationPostAnnouncement: SquareEventNotificationPostAnnouncement; notificationPost: SquareEventNotificationPost; mutateMessage: SquareEventMutateMessage; @@ -15404,352 +16959,346 @@ export interface SquareEventPayload { notificationMessageReaction: SquareEventNotificationMessageReaction; chatPopup: SquareEventChatPopup; notifiedSystemMessage: SquareEventNotifiedSystemMessage; - notifiedUpdateSquareChatFeatureSet: SquareEventNotifiedUpdateSquareChatFeatureSet; + notifiedUpdateSquareChatFeatureSet: + SquareEventNotifiedUpdateSquareChatFeatureSet; notifiedUpdateLiveTalkInfo: SquareEventNotifiedUpdateLiveTalkInfo; notifiedUpdateLiveTalk: SquareEventNotifiedUpdateLiveTalk; notificationLiveTalk: SquareEventNotificationLiveTalk; notificationThreadMessage: SquareEventNotificationThreadMessage; - notificationThreadMessageReaction: SquareEventNotificationThreadMessageReaction; + notificationThreadMessageReaction: + SquareEventNotificationThreadMessageReaction; notifiedUpdateThread: SquareEventNotifiedUpdateThread; notifiedUpdateThreadStatus: SquareEventNotifiedUpdateThreadStatus; notifiedUpdateThreadMember: SquareEventNotifiedUpdateThreadMember; notifiedUpdateThreadRootMessage: SquareEventNotifiedUpdateThreadRootMessage; - notifiedUpdateThreadRootMessageStatus: SquareEventNotifiedUpdateThreadRootMessageStatus; - } + notifiedUpdateThreadRootMessageStatus: + SquareEventNotifiedUpdateThreadRootMessageStatus; +} export interface UnhideSquareMemberContentsResponse { - - } +} export interface UpdateLiveTalkAttrsResponse { - - } +} export interface UpdateUserSettingsResponse { - - } +} export interface ButtonBGColor { - custom: CustomColor; + custom: CustomColor; defaultGradient: DefaultGradientColor; - } +} export interface ButtonContent { - urlButton: UrlButton; + urlButton: UrlButton; textButton: TextButton; okButton: OkButton; - } +} export interface DefaultGradientColor { - - } +} export interface ErrorExtraInfo { - preconditionFailedExtraInfo: number; + preconditionFailedExtraInfo: number; userRestrictionInfo: UserRestrictionExtraInfo; tryAgainLaterExtraInfo: TryAgainLaterExtraInfo; liveTalkExtraInfo: LiveTalkExtraInfo; termsAgreementExtraInfo: TermsAgreementExtraInfo; - } +} export interface Mentionable { - squareMember: MentionableSquareMember; + squareMember: MentionableSquareMember; bot: MentionableBot; - } +} export interface MessageStatusContents { - messageReactionStatus: any; - } + messageReactionStatus: any; +} export interface SquareActivityScore { - cleanScore: any; - } + cleanScore: any; +} export interface SquareChatAnnouncementContents { - textMessageAnnouncementContents: TextMessageAnnouncementContents; - } + textMessageAnnouncementContents: TextMessageAnnouncementContents; +} export interface TargetChats { - mids: string[]; + mids: string[]; categories: string[]; channelId: number; - } +} export interface TargetUsers { - mids: string[]; - } + mids: string[]; +} export interface TermsAgreement { - aiQnABot: any; - } + aiQnABot: any; +} export interface confirmIdentifier_args { - authSessionId: string; + authSessionId: string; request: IdentityCredentialRequest; - } +} export interface confirmIdentifier_result { - success: IdentityCredentialResponse; + success: IdentityCredentialResponse; e: TalkException; - } +} export interface connectEapAccount_args { - request: ConnectEapAccountRequest; - } + request: ConnectEapAccountRequest; +} export interface connectEapAccount_result { - success: Q70_l; + success: Q70_l; e: AccountEapConnectException; - } +} export interface createChatRoomAnnouncement_args { - reqSeq: number; + reqSeq: number; chatRoomMid: string; type: Pb1_X2; contents: ChatRoomAnnouncementContents; - } +} export interface createChatRoomAnnouncement_result { - success: ChatRoomAnnouncement; + success: ChatRoomAnnouncement; e: TalkException; - } +} export interface createChat_args { - request: CreateChatRequest; - } + request: CreateChatRequest; +} export interface createChat_result { - success: CreateChatResponse; + success: CreateChatResponse; e: TalkException; - } +} export interface createCollectionForUser_args { - request: any; - } + request: any; +} export interface createCollectionForUser_result { - success: any; + success: any; e: CollectionException; - } +} export interface createCombinationSticker_args { - request: any; - } + request: any; +} export interface createCombinationSticker_result { - success: any; + success: any; e: ShopException; - } +} export interface createE2EEKeyBackupEnforced_args { - request: Pb1_C13263z3; - } + request: Pb1_C13263z3; +} export interface createE2EEKeyBackupEnforced_result { - success: Pb1_B3; + success: Pb1_B3; e: E2EEKeyBackupException; - } +} export interface createGroupCallUrl_args { - request: CreateGroupCallUrlRequest; - } + request: CreateGroupCallUrlRequest; +} export interface createGroupCallUrl_result { - success: CreateGroupCallUrlResponse; + success: CreateGroupCallUrlResponse; e: TalkException; - } +} export interface createLifetimeKeyBackup_args { - request: Pb1_E3; - } + request: Pb1_E3; +} export interface createLifetimeKeyBackup_result { - success: Pb1_F3; + success: Pb1_F3; e: E2EEKeyBackupException; - } +} export interface createMultiProfile_args { - request: CreateMultiProfileRequest; - } + request: CreateMultiProfileRequest; +} export interface createMultiProfile_result { - success: CreateMultiProfileResponse; + success: CreateMultiProfileResponse; e: TalkException; - } +} export interface createRoomV2_args { - reqSeq: number; + reqSeq: number; contactIds: string[]; - } +} export interface createRoomV2_result { - success: Room; + success: Room; e: TalkException; - } +} export interface createSession_args { - request: h80_C25643c; - } + request: h80_C25643c; +} export interface I80_C26365A { - request: I80_C26404h; - } + request: I80_C26404h; +} export interface createSession_result { - success: CreateSessionResponse; + success: CreateSessionResponse; pqme: PrimaryQrCodeMigrationException; tae: TokenAuthException; - } +} export interface I80_C26366B { - success: I80_C26406i; + success: I80_C26406i; e: I80_C26390a; tae: TokenAuthException; - } +} export interface decryptFollowEMid_args { - eMid: string; - } + eMid: string; +} export interface decryptFollowEMid_result { - success: string; + success: string; e: TalkException; - } +} export interface deleteE2EEKeyBackup_args { - request: Pb1_H3; - } + request: Pb1_H3; +} export interface deleteE2EEKeyBackup_result { - success: Pb1_I3; + success: Pb1_I3; e: E2EEKeyBackupException; - } +} export interface deleteGroupCallUrl_args { - request: DeleteGroupCallUrlRequest; - } + request: DeleteGroupCallUrlRequest; +} export interface deleteGroupCallUrl_result { - success: Pb1_K3; + success: Pb1_K3; e: TalkException; - } +} export interface deleteMultiProfile_args { - request: DeleteMultiProfileRequest; - } + request: DeleteMultiProfileRequest; +} export interface deleteMultiProfile_result { - success: gN0_C25147d; + success: gN0_C25147d; e: TalkException; - } +} export interface deleteOtherFromChat_args { - request: DeleteOtherFromChatRequest; - } + request: DeleteOtherFromChatRequest; +} export interface deleteOtherFromChat_result { - success: Pb1_M3; + success: Pb1_M3; e: TalkException; - } +} export interface deletePrimaryCredential_args { - request: R70_c; - } + request: R70_c; +} export interface deletePrimaryCredential_result { - success: R70_d; + success: R70_d; e: PwlessCredentialException; - } +} export interface deleteSafetyStatus_args { - req: DeleteSafetyStatusRequest; - } + req: DeleteSafetyStatusRequest; +} export interface deleteSafetyStatus_result { - e: any; - } + e: any; +} export interface deleteSelfFromChat_args { - request: DeleteSelfFromChatRequest; - } + request: DeleteSelfFromChatRequest; +} export interface deleteSelfFromChat_result { - success: Pb1_O3; + success: Pb1_O3; e: TalkException; - } +} export interface determineMediaMessageFlow_args { - request: DetermineMediaMessageFlowRequest; - } + request: DetermineMediaMessageFlowRequest; +} export interface determineMediaMessageFlow_result { - success: DetermineMediaMessageFlowResponse; + success: DetermineMediaMessageFlowResponse; e: TalkException; - } +} export interface disableNearby_result { - e: TalkException; - } + e: TalkException; +} export interface disconnectEapAccount_args { - request: DisconnectEapAccountRequest; - } + request: DisconnectEapAccountRequest; +} export interface disconnectEapAccount_result { - success: Q70_o; + success: Q70_o; e: AccountEapConnectException; - } +} export interface do0_C23138A { - connectDevice: ConnectDeviceOperation; + connectDevice: ConnectDeviceOperation; executeOnetimeScenario: ExecuteOnetimeScenarioOperation; - } +} export interface do0_C23141D { - gattRead: GattReadAction; + gattRead: GattReadAction; gattWrite: do0_C23158p; sleep: SleepAction; disconnect: do0_C23153k; stopNotification: StopNotificationAction; - } +} export interface do0_C23142E { - voidResult: do0_m0; + voidResult: do0_m0; binaryResult: do0_C23143a; - } +} export interface do0_C23143a { - bytes: string; - } + bytes: string; +} export interface do0_C23152j { - - } +} export interface do0_C23153k { - - } +} export interface do0_C23158p { - serviceUuid: string; + serviceUuid: string; characteristicUuid: string; data: string; - } +} export interface do0_C23161t { - - } +} export interface do0_C23165x { - - } +} export interface do0_C23167z { - - } +} export interface do0_F { - scenarioId: string; + scenarioId: string; deviceId: string; revision: Int64; startTime: Int64; @@ -15759,2440 +17308,2407 @@ export interface do0_F { bleNotificationPayload: string; actionResults: do0_C23142E[]; connectionId: string; - } +} export interface do0_I { - immediate: do0_C23161t; + immediate: do0_C23161t; bleNotificationReceived: BleNotificationReceivedTrigger; - } +} export interface do0_V { - - } +} export interface do0_X { - - } +} export interface do0_m0 { - - } +} export interface editItemsInCollection_args { - request: any; - } + request: any; +} export interface editItemsInCollection_result { - success: any; + success: any; e: CollectionException; - } +} export interface enablePointForOneTimeKey_args { - usePoint: boolean; - } + usePoint: boolean; +} export interface enablePointForOneTimeKey_result { - e: PaymentException; - } + e: PaymentException; +} export interface establishE2EESession_args { - request: any; - } + request: any; +} export interface establishE2EESession_result { - success: any; + success: any; e: ShopException; - } +} export interface existPinCode_args { - request: S70_b; - } + request: S70_b; +} export interface existPinCode_result { - success: ExistPinCodeResponse; + success: ExistPinCodeResponse; e: SecondAuthFactorPinCodeException; - } +} export interface fN0_C24471c { - - } +} export interface fN0_C24473e { - - } +} export interface fN0_C24475g { - - } +} export interface fN0_C24476h { - - } +} export interface fetchOperations_args { - request: FetchOperationsRequest; - } + request: FetchOperationsRequest; +} export interface fetchOperations_result { - success: FetchOperationsResponse; + success: FetchOperationsResponse; e: ThingsException; - } +} export interface fetchPhonePinCodeMsg_args { - request: FetchPhonePinCodeMsgRequest; - } + request: FetchPhonePinCodeMsgRequest; +} export interface fetchPhonePinCodeMsg_result { - success: FetchPhonePinCodeMsgResponse; + success: FetchPhonePinCodeMsgResponse; e: AuthException; - } +} export interface findAndAddContactByMetaTag_result { - success: Contact; + success: Contact; e: TalkException; - } +} export interface findAndAddContactsByMid_result { - success: Record; + success: Record; e: TalkException; - } +} export interface findAndAddContactsByPhone_result { - success: Record; + success: Record; e: TalkException; - } +} export interface findAndAddContactsByUserid_result { - success: Record; + success: Record; e: TalkException; - } +} export interface findBuddyContactsByQuery_args { - language: string; + language: string; country: string; query: string; fromIndex: number; count: number; requestSource: Pb1_F0; - } +} export interface findBuddyContactsByQuery_result { - success: BuddySearchResult[]; + success: BuddySearchResult[]; e: TalkException; - } +} export interface findChatByTicket_args { - request: FindChatByTicketRequest; - } + request: FindChatByTicketRequest; +} export interface findChatByTicket_result { - success: FindChatByTicketResponse; + success: FindChatByTicketResponse; e: TalkException; - } +} export interface findContactByUserTicket_args { - ticketIdWithTag: string; - } + ticketIdWithTag: string; +} export interface findContactByUserTicket_result { - success: Contact; + success: Contact; e: TalkException; - } +} export interface findContactByUserid_args { - searchId: string; - } + searchId: string; +} export interface findContactByUserid_result { - success: Contact; + success: Contact; e: TalkException; - } +} export interface findContactsByPhone_args { - phones: string[]; - } + phones: string[]; +} export interface findContactsByPhone_result { - success: Record; + success: Record; e: TalkException; - } +} export interface finishUpdateVerification_args { - sessionId: string; - } + sessionId: string; +} export interface finishUpdateVerification_result { - e: TalkException; - } + e: TalkException; +} export interface follow_args { - followRequest: FollowRequest; - } + followRequest: FollowRequest; +} export interface follow_result { - e: TalkException; - } + e: TalkException; +} export interface gN0_C25143G { - - } +} export interface gN0_C25147d { - - } +} export interface generateUserTicket_args { - expirationTime: Int64; + expirationTime: Int64; maxUseCount: number; - } +} export interface generateUserTicket_result { - success: Ticket; + success: Ticket; e: TalkException; - } +} export interface getAccessToken_args { - request: GetAccessTokenRequest; - } + request: GetAccessTokenRequest; +} export interface getAccessToken_result { - success: GetAccessTokenResponse; + success: GetAccessTokenResponse; e: TalkException; - } +} export interface getAccountBalanceAsync_args { - requestToken: string; + requestToken: string; accountId: string; - } +} export interface getAccountBalanceAsync_result { - e: PaymentException; - } + e: PaymentException; +} export interface I80_C26374J { - request: I80_C26410k; - } + request: I80_C26410k; +} export interface getAcctVerifMethod_args { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; - } +} export interface getAcctVerifMethod_result { - success: GetAcctVerifMethodResponse; + success: GetAcctVerifMethodResponse; e: AuthException; - } +} export interface I80_C26375K { - success: I80_C26412l; + success: I80_C26412l; e: I80_C26390a; - } +} export interface getAllChatMids_args { - request: GetAllChatMidsRequest; + request: GetAllChatMidsRequest; syncReason: Pb1_V7; - } +} export interface getAllChatMids_result { - success: GetAllChatMidsResponse; + success: GetAllChatMidsResponse; e: TalkException; - } +} export interface getAllContactIds_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getAllContactIds_result { - success: string[]; + success: string[]; e: TalkException; - } +} export interface getAllowedRegistrationMethod_args { - authSessionId: string; + authSessionId: string; countryCode: string; - } +} export interface getAllowedRegistrationMethod_result { - success: GetAllowedRegistrationMethodResponse; + success: GetAllowedRegistrationMethodResponse; e: AuthException; - } +} export interface getAnalyticsInfo_result { - success: AnalyticsInfo; + success: AnalyticsInfo; e: TalkException; - } +} export interface getApprovedChannels_args { - lastSynced: Int64; + lastSynced: Int64; locale: string; - } +} export interface getApprovedChannels_result { - success: ApprovedChannelInfos; + success: ApprovedChannelInfos; e: ChannelException; - } +} export interface getAssertionChallenge_args { - request: m80_l; - } + request: m80_l; +} export interface getAssertionChallenge_result { - success: GetAssertionChallengeResponse; + success: GetAssertionChallengeResponse; deviceAttestationException: m80_b; attestationRequiredException: m80_C30146a; - } +} export interface getAttestationChallenge_args { - request: m80_n; - } + request: m80_n; +} export interface getAttestationChallenge_result { - success: GetAttestationChallengeResponse; + success: GetAttestationChallengeResponse; deviceAttestationException: m80_b; - } +} export interface getAuthRSAKey_args { - authSessionId: string; + authSessionId: string; identityProvider: IdentityProvider; - } +} export interface getAuthRSAKey_result { - success: RSAKey; + success: RSAKey; e: TalkException; - } +} export interface getAuthorsLatestProducts_args { - latestProductsByAuthorRequest: LatestProductsByAuthorRequest; - } + latestProductsByAuthorRequest: LatestProductsByAuthorRequest; +} export interface getAuthorsLatestProducts_result { - success: LatestProductsByAuthorResponse; + success: LatestProductsByAuthorResponse; e: ShopException; - } +} export interface getAutoSuggestionShowcase_args { - autoSuggestionShowcaseRequest: AutoSuggestionShowcaseRequest; - } + autoSuggestionShowcaseRequest: AutoSuggestionShowcaseRequest; +} export interface getAutoSuggestionShowcase_result { - success: AutoSuggestionShowcaseResponse; + success: AutoSuggestionShowcaseResponse; e: ShopException; - } +} export interface getBalanceSummaryV2_args { - request: NZ0_C12208u; - } + request: NZ0_C12208u; +} export interface getBalanceSummaryV2_result { - success: GetBalanceSummaryResponseV2; + success: GetBalanceSummaryResponseV2; e: WalletException; - } +} export interface getBalanceSummaryV4WithPayV3_args { - request: NZ0_C12214w; - } + request: NZ0_C12214w; +} export interface getBalanceSummaryV4WithPayV3_result { - success: GetBalanceSummaryV4WithPayV3Response; + success: GetBalanceSummaryV4WithPayV3Response; e: WalletException; - } +} export interface getBalance_args { - request: ZQ0_b; - } + request: ZQ0_b; +} export interface getBalance_result { - success: GetBalanceResponse; + success: GetBalanceResponse; e: PointException; - } +} export interface getBankBranches_args { - financialCorpId: string; + financialCorpId: string; query: string; startNum: number; count: number; - } +} export interface getBankBranches_result { - success: BankBranchInfo[]; + success: BankBranchInfo[]; e: PaymentException; - } +} export interface getBanners_args { - request: BannerRequest; - } + request: BannerRequest; +} export interface getBanners_result { - success: BannerResponse; - } + success: BannerResponse; +} export interface getBirthdayEffect_args { - req: Eh_C8933a; - } + req: Eh_C8933a; +} export interface getBirthdayEffect_result { - success: GetBirthdayEffectResponse; + success: GetBirthdayEffectResponse; e: any; - } +} export interface getBleDevice_args { - request: GetBleDeviceRequest; - } + request: GetBleDeviceRequest; +} export interface getBleDevice_result { - success: ThingsDevice; + success: ThingsDevice; e: ThingsException; - } +} export interface getBleProducts_result { - success: BleProduct[]; + success: BleProduct[]; e: ThingsException; - } +} export interface getBlockedContactIds_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getBlockedContactIds_result { - success: string[]; + success: string[]; e: TalkException; - } +} export interface getBlockedRecommendationIds_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getBlockedRecommendationIds_result { - success: string[]; + success: string[]; e: TalkException; - } +} export interface getBrowsingHistory_args { - getBrowsingHistoryRequest: any; - } + getBrowsingHistoryRequest: any; +} export interface getBrowsingHistory_result { - success: any; + success: any; e: ShopException; - } +} export interface getBuddyChatBarV2_args { - request: GetBuddyChatBarRequest; - } + request: GetBuddyChatBarRequest; +} export interface getBuddyChatBarV2_result { - success: BuddyChatBar; + success: BuddyChatBar; e: TalkException; - } +} export interface getBuddyDetailWithPersonal_args { - buddyMid: string; + buddyMid: string; attributeSet: Pb1_D0[]; - } +} export interface getBuddyDetailWithPersonal_result { - success: BuddyDetailWithPersonal; + success: BuddyDetailWithPersonal; e: TalkException; - } +} export interface getBuddyDetail_args { - buddyMid: string; - } + buddyMid: string; +} export interface getBuddyDetail_result { - success: BuddyDetail; + success: BuddyDetail; e: TalkException; - } +} export interface getBuddyLive_args { - request: GetBuddyLiveRequest; - } + request: GetBuddyLiveRequest; +} export interface getBuddyLive_result { - success: GetBuddyLiveResponse; + success: GetBuddyLiveResponse; e: TalkException; - } +} export interface getBuddyOnAir_args { - buddyMid: string; - } + buddyMid: string; +} export interface getBuddyOnAir_result { - success: BuddyOnAir; + success: BuddyOnAir; e: TalkException; - } +} export interface getBuddyStatusBarV2_args { - request: GetBuddyStatusBarV2Request; - } + request: GetBuddyStatusBarV2Request; +} export interface getBuddyStatusBarV2_result { - success: BuddyStatusBar; + success: BuddyStatusBar; e: TalkException; - } +} export interface getCallStatus_args { - request: GetCallStatusRequest; - } + request: GetCallStatusRequest; +} export interface getCallStatus_result { - success: GetCallStatusResponse; + success: GetCallStatusResponse; e: OaChatException; - } +} export interface getCampaign_args { - request: GetCampaignRequest; - } + request: GetCampaignRequest; +} export interface getCampaign_result { - success: GetCampaignResponse; + success: GetCampaignResponse; e: WalletException; - } +} export interface getChallengeForPaakAuth_args { - request: GetChallengeForPaakAuthRequest; - } + request: GetChallengeForPaakAuthRequest; +} export interface getChallengeForPaakAuth_result { - success: GetChallengeForPaakAuthResponse; + success: GetChallengeForPaakAuthResponse; e: SecondaryPwlessLoginException; - } +} export interface getChallengeForPrimaryReg_args { - request: GetChallengeForPrimaryRegRequest; - } + request: GetChallengeForPrimaryRegRequest; +} export interface getChallengeForPrimaryReg_result { - success: GetChallengeForPrimaryRegResponse; + success: GetChallengeForPrimaryRegResponse; e: PwlessCredentialException; - } +} export interface getChannelContext_args { - request: GetChannelContextRequest; - } + request: GetChannelContextRequest; +} export interface getChannelContext_result { - success: GetChannelContextResponse; + success: GetChannelContextResponse; cpae: ChannelPaakAuthnException; tae: TokenAuthException; - } +} export interface getChannelInfo_args { - channelId: string; + channelId: string; locale: string; - } +} export interface getChannelInfo_result { - success: ChannelInfo; + success: ChannelInfo; e: ChannelException; - } +} export interface getChannelNotificationSettings_args { - locale: string; - } + locale: string; +} export interface getChannelNotificationSettings_result { - success: ChannelNotificationSetting[]; + success: ChannelNotificationSetting[]; e: ChannelException; - } +} export interface getChannelSettings_result { - success: ChannelSettings; + success: ChannelSettings; e: ChannelException; - } +} export interface getChatEffectMetaList_args { - categories: Pb1_Q2[]; - } + categories: Pb1_Q2[]; +} export interface getChatEffectMetaList_result { - success: ChatEffectMeta[]; + success: ChatEffectMeta[]; e: TalkException; - } +} export interface getChatRoomAnnouncementsBulk_args { - chatRoomMids: string[]; + chatRoomMids: string[]; syncReason: Pb1_V7; - } +} export interface getChatRoomAnnouncementsBulk_result { - e: TalkException; - } + e: TalkException; +} export interface getChatRoomAnnouncements_args { - chatRoomMid: string; - } + chatRoomMid: string; +} export interface getChatRoomAnnouncements_result { - success: ChatRoomAnnouncement[]; + success: ChatRoomAnnouncement[]; e: TalkException; - } +} export interface getChatRoomBGMs_args { - chatRoomMids: string[]; + chatRoomMids: string[]; syncReason: Pb1_V7; - } +} export interface getChatRoomBGMs_result { - success: Record; + success: Record; e: TalkException; - } +} export interface getChatapp_args { - request: GetChatappRequest; - } + request: GetChatappRequest; +} export interface getChatapp_result { - success: GetChatappResponse; + success: GetChatappResponse; e: ChatappException; - } +} export interface getChats_args { - request: GetChatsRequest; + request: GetChatsRequest; syncReason: Pb1_V7; - } +} export interface getChats_result { - success: GetChatsResponse; + success: GetChatsResponse; e: TalkException; - } +} export interface getCoinProducts_args { - request: GetCoinProductsRequest; - } + request: GetCoinProductsRequest; +} export interface getCoinProducts_result { - success: GetCoinProductsResponse; + success: GetCoinProductsResponse; e: CoinException; - } +} export interface getCoinPurchaseHistory_args { - request: GetCoinHistoryRequest; - } + request: GetCoinHistoryRequest; +} export interface getCoinPurchaseHistory_result { - success: GetCoinHistoryResponse; + success: GetCoinHistoryResponse; e: CoinException; - } +} export interface getCoinUseAndRefundHistory_args { - request: GetCoinHistoryRequest; - } + request: GetCoinHistoryRequest; +} export interface getCoinUseAndRefundHistory_result { - success: GetCoinHistoryResponse; + success: GetCoinHistoryResponse; e: CoinException; - } +} export interface getCommonDomains_args { - lastSynced: Int64; - } + lastSynced: Int64; +} export interface getCommonDomains_result { - success: ChannelDomains; + success: ChannelDomains; e: ChannelException; - } +} export interface getConfigurations_args { - revision: Int64; + revision: Int64; regionOfUsim: string; regionOfTelephone: string; regionOfLocale: string; carrier: string; syncReason: Pb1_V7; - } +} export interface getConfigurations_result { - success: Configurations; + success: Configurations; e: TalkException; - } +} export interface getContactCalendarEvents_args { - request: GetContactCalendarEventsRequest; - } + request: GetContactCalendarEventsRequest; +} export interface getContactCalendarEvents_result { - success: GetContactCalendarEventsResponse; + success: GetContactCalendarEventsResponse; re: RejectedException; sfe: ServerFailureException; te: TalkException; ere: ExcessiveRequestItemException; - } +} export interface getContact_result { - success: Contact; + success: Contact; e: TalkException; - } +} export interface getContactsV3_args { - request: GetContactsV3Request; - } + request: GetContactsV3Request; +} export interface getContactsV3_result { - success: GetContactsV3Response; + success: GetContactsV3Response; be: RejectedException; ce: ServerFailureException; te: TalkException; ere: ExcessiveRequestItemException; - } +} export interface getContacts_result { - success: Contact[]; + success: Contact[]; e: TalkException; - } +} export interface getCountries_args { - countryGroup: Pb1_EnumC13221w3; - } + countryGroup: Pb1_EnumC13221w3; +} export interface getCountries_result { - success: string[]; + success: string[]; e: TalkException; - } +} export interface I80_C26376L { - request: I80_C26413m; - } + request: I80_C26413m; +} export interface getCountryInfo_args { - authSessionId: string; + authSessionId: string; simCard: SimCard; - } +} export interface getCountryInfo_result { - success: GetCountryInfoResponse; + success: GetCountryInfoResponse; e: AuthException; - } +} export interface I80_C26377M { - success: I80_C26414n; + success: I80_C26414n; e: I80_C26390a; - } +} export interface getCountryWithRequestIp_result { - success: string; + success: string; e: TalkException; - } +} export interface getDataRetention_args { - req: fN0_C24473e; - } + req: fN0_C24473e; +} export interface getDataRetention_result { - success: GetPremiumDataRetentionResponse; + success: GetPremiumDataRetentionResponse; e: PremiumException; - } +} export interface getDestinationUrl_args { - request: DestinationLIFFRequest; - } + request: DestinationLIFFRequest; +} export interface getDestinationUrl_result { - success: DestinationLIFFResponse; + success: DestinationLIFFResponse; liffException: LiffException; - } +} export interface getDisasterCases_args { - req: vh_C37633d; - } + req: vh_C37633d; +} export interface getDisasterCases_result { - success: GetDisasterCasesResponse; + success: GetDisasterCasesResponse; e: any; - } +} export interface getE2EEGroupSharedKey_args { - keyVersion: number; + keyVersion: number; chatMid: string; groupKeyId: number; - } +} export interface getE2EEGroupSharedKey_result { - success: Pb1_U3; + success: Pb1_U3; e: TalkException; - } +} export interface getE2EEKeyBackupCertificates_args { - request: Pb1_W4; - } + request: Pb1_W4; +} export interface getE2EEKeyBackupCertificates_result { - success: GetE2EEKeyBackupCertificatesResponse; + success: GetE2EEKeyBackupCertificatesResponse; e: E2EEKeyBackupException; - } +} export interface getE2EEKeyBackupInfo_args { - request: Pb1_Y4; - } + request: Pb1_Y4; +} export interface getE2EEKeyBackupInfo_result { - success: GetE2EEKeyBackupInfoResponse; + success: GetE2EEKeyBackupInfoResponse; e: E2EEKeyBackupException; - } +} export interface getE2EEPublicKey_args { - mid: string; + mid: string; keyVersion: number; keyId: number; - } +} export interface getE2EEPublicKey_result { - success: Pb1_C13097n4; + success: Pb1_C13097n4; e: TalkException; - } +} export interface getE2EEPublicKeys_result { - success: Pb1_C13097n4[]; + success: Pb1_C13097n4[]; e: TalkException; - } +} export interface getEncryptedIdentityV3_result { - success: Pb1_C12916a5; + success: Pb1_C12916a5; e: TalkException; - } +} export interface getExchangeKey_args { - request: GetExchangeKeyRequest; - } + request: GetExchangeKeyRequest; +} export interface getExchangeKey_result { - success: GetExchangeKeyResponse; + success: GetExchangeKeyResponse; e: SecondaryPwlessLoginException; - } +} export interface getExtendedProfile_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getExtendedProfile_result { - success: ExtendedProfile; + success: ExtendedProfile; e: TalkException; - } +} export interface getFollowBlacklist_args { - getFollowBlacklistRequest: GetFollowBlacklistRequest; - } + getFollowBlacklistRequest: GetFollowBlacklistRequest; +} export interface getFollowBlacklist_result { - success: GetFollowBlacklistResponse; + success: GetFollowBlacklistResponse; e: TalkException; - } +} export interface getFollowers_args { - getFollowersRequest: GetFollowersRequest; - } + getFollowersRequest: GetFollowersRequest; +} export interface getFollowers_result { - success: GetFollowersResponse; + success: GetFollowersResponse; e: TalkException; - } +} export interface getFollowings_args { - getFollowingsRequest: GetFollowingsRequest; - } + getFollowingsRequest: GetFollowingsRequest; +} export interface getFollowings_result { - success: GetFollowingsResponse; + success: GetFollowingsResponse; e: TalkException; - } +} export interface getFontMetas_args { - request: GetFontMetasRequest; - } + request: GetFontMetasRequest; +} export interface getFontMetas_result { - success: GetFontMetasResponse; + success: GetFontMetasResponse; e: TalkException; - } +} export interface getFriendDetails_args { - request: GetFriendDetailsRequest; - } + request: GetFriendDetailsRequest; +} export interface getFriendDetails_result { - success: GetFriendDetailsResponse; + success: GetFriendDetailsResponse; re: RejectedException; sfe: ServerFailureException; te: TalkException; ere: ExcessiveRequestItemException; - } +} export interface getFriendRequests_args { - direction: Pb1_F4; + direction: Pb1_F4; lastSeenSeqId: Int64; - } +} export interface getFriendRequests_result { - success: FriendRequest[]; + success: FriendRequest[]; e: TalkException; - } +} export interface getGnbBadgeStatus_args { - request: GetGnbBadgeStatusRequest; - } + request: GetGnbBadgeStatusRequest; +} export interface getGnbBadgeStatus_result { - success: GetGnbBadgeStatusResponse; + success: GetGnbBadgeStatusResponse; e: WalletException; - } +} export interface getGroupCallUrlInfo_args { - request: GetGroupCallUrlInfoRequest; - } + request: GetGroupCallUrlInfoRequest; +} export interface getGroupCallUrlInfo_result { - success: GetGroupCallUrlInfoResponse; + success: GetGroupCallUrlInfoResponse; e: TalkException; - } +} export interface getGroupCallUrls_args { - request: Pb1_C13042j5; - } + request: Pb1_C13042j5; +} export interface getGroupCallUrls_result { - success: GetGroupCallUrlsResponse; + success: GetGroupCallUrlsResponse; e: TalkException; - } +} export interface getGroupCall_args { - chatMid: string; - } + chatMid: string; +} export interface getGroupCall_result { - success: GroupCall; + success: GroupCall; e: TalkException; - } +} export interface getHomeFlexContent_args { - request: GetHomeFlexContentRequest; - } + request: GetHomeFlexContentRequest; +} export interface getHomeFlexContent_result { - success: GetHomeFlexContentResponse; + success: GetHomeFlexContentResponse; e: any; - } +} export interface getHomeServiceList_args { - request: Eg_C8928b; - } + request: Eg_C8928b; +} export interface getHomeServiceList_result { - success: GetHomeServiceListResponse; + success: GetHomeServiceListResponse; e: any; - } +} export interface getHomeServices_args { - request: GetHomeServicesRequest; - } + request: GetHomeServicesRequest; +} export interface getHomeServices_result { - success: GetHomeServicesResponse; + success: GetHomeServicesResponse; e: any; - } +} export interface getIncentiveStatus_args { - req: fN0_C24471c; - } + req: fN0_C24471c; +} export interface getIncentiveStatus_result { - success: GetIncentiveStatusResponse; + success: GetIncentiveStatusResponse; e: PremiumException; - } +} export interface getInstantNews_args { - region: string; + region: string; location: Location; - } +} export interface getInstantNews_result { - success: InstantNews[]; + success: InstantNews[]; e: TalkException; - } +} export interface getJoinedMembershipByBotMid_args { - request: GetJoinedMembershipByBotMidRequest; - } + request: GetJoinedMembershipByBotMidRequest; +} export interface getJoinedMembershipByBotMid_result { - success: MemberInfo; + success: MemberInfo; e: MembershipException; - } +} export interface getJoinedMembership_args { - request: GetJoinedMembershipRequest; - } + request: GetJoinedMembershipRequest; +} export interface getJoinedMembership_result { - success: MemberInfo; + success: MemberInfo; e: MembershipException; - } +} export interface getJoinedMemberships_result { - success: JoinedMemberships; + success: JoinedMemberships; e: MembershipException; - } +} export interface getKeyBackupCertificatesV2_args { - request: Pb1_C13070l5; - } + request: Pb1_C13070l5; +} export interface getKeyBackupCertificatesV2_result { - success: GetKeyBackupCertificatesV2Response; + success: GetKeyBackupCertificatesV2Response; e: E2EEKeyBackupException; - } +} export interface getLFLSuggestion_args { - request: any; - } + request: any; +} export interface getLFLSuggestion_result { - success: GetLFLSuggestionResponse; + success: GetLFLSuggestionResponse; e: LFLPremiumException; - } +} export interface getLastE2EEGroupSharedKey_args { - keyVersion: number; + keyVersion: number; chatMid: string; - } +} export interface getLastE2EEGroupSharedKey_result { - success: Pb1_U3; + success: Pb1_U3; e: TalkException; - } +} export interface getLastE2EEPublicKeys_args { - chatMid: string; - } + chatMid: string; +} export interface getLastE2EEPublicKeys_result { - success: Record; + success: Record; e: TalkException; - } +} export interface getLastOpRevision_result { - success: Int64; + success: Int64; e: TalkException; - } +} export interface getLiffViewWithoutUserContext_args { - request: LiffViewWithoutUserContextRequest; - } + request: LiffViewWithoutUserContextRequest; +} export interface getLiffViewWithoutUserContext_result { - success: LiffViewResponse; + success: LiffViewResponse; liffException: LiffException; talkException: TalkException; - } +} export interface getLineCardIssueForm_args { - resolutionType: r80_EnumC34372l; - } + resolutionType: r80_EnumC34372l; +} export interface getLineCardIssueForm_result { - success: PaymentLineCardIssueForm; + success: PaymentLineCardIssueForm; e: PaymentException; - } +} export interface getLinkedDevices_result { - success: UserDevice[]; + success: UserDevice[]; e: ThingsException; - } +} export interface getLoginActorContext_args { - request: GetLoginActorContextRequest; - } + request: GetLoginActorContextRequest; +} export interface getLoginActorContext_result { - success: GetLoginActorContextResponse; + success: GetLoginActorContextResponse; e: SecondaryQrCodeException; - } +} export interface getMappedProfileIds_args { - request: GetMappedProfileIdsRequest; - } + request: GetMappedProfileIdsRequest; +} export interface getMappedProfileIds_result { - success: GetMappedProfileIdsResponse; + success: GetMappedProfileIdsResponse; e: TalkException; - } +} export interface I80_C26378N { - request: I80_C26415o; - } + request: I80_C26415o; +} export interface getMaskedEmail_args { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; - } +} export interface getMaskedEmail_result { - success: GetMaskedEmailResponse; + success: GetMaskedEmailResponse; e: AuthException; - } +} export interface I80_C26379O { - success: I80_C26416p; + success: I80_C26416p; e: I80_C26390a; - } +} export interface getMessageBoxes_args { - messageBoxListRequest: MessageBoxListRequest; + messageBoxListRequest: MessageBoxListRequest; syncReason: Pb1_V7; - } +} export interface getMessageBoxes_result { - success: MessageBoxList; + success: MessageBoxList; e: TalkException; - } +} export interface getMessageReadRange_args { - chatIds: string[]; + chatIds: string[]; syncReason: Pb1_V7; - } +} export interface getMessageReadRange_result { - success: TMessageReadRange[]; + success: TMessageReadRange[]; e: TalkException; - } +} export interface getModuleLayoutV4_args { - request: GetModuleLayoutV4Request; - } + request: GetModuleLayoutV4Request; +} export interface getModuleLayoutV4_result { - success: NZ0_D; + success: NZ0_D; e: WalletException; - } +} export interface getModuleWithStatus_args { - request: NZ0_G; - } + request: NZ0_G; +} export interface getModuleWithStatus_result { - success: NZ0_H; + success: NZ0_H; e: WalletException; - } +} export interface getModule_args { - request: NZ0_E; - } + request: NZ0_E; +} export interface getModule_result { - success: NZ0_F; + success: NZ0_F; e: WalletException; - } +} export interface getModulesV2_args { - request: GetModulesRequestV2; - } + request: GetModulesRequestV2; +} export interface getModulesV2_result { - success: NZ0_K; + success: NZ0_K; e: WalletException; - } +} export interface getModulesV3_args { - request: GetModulesRequestV3; - } + request: GetModulesRequestV3; +} export interface getModulesV3_result { - success: NZ0_K; + success: NZ0_K; e: WalletException; - } +} export interface getModulesV4WithStatus_args { - request: GetModulesV4WithStatusRequest; - } + request: GetModulesV4WithStatusRequest; +} export interface getModulesV4WithStatus_result { - success: NZ0_M; + success: NZ0_M; e: WalletException; - } +} export interface getMusicSubscriptionStatus_args { - request: any; - } + request: any; +} export interface getMusicSubscriptionStatus_result { - success: any; + success: any; e: ShopException; - } +} export interface getMyAssetInformationV2_args { - request: GetMyAssetInformationV2Request; - } + request: GetMyAssetInformationV2Request; +} export interface getMyAssetInformationV2_result { - success: GetMyAssetInformationV2Response; + success: GetMyAssetInformationV2Response; e: WalletException; - } +} export interface getMyChatapps_args { - request: GetMyChatappsRequest; - } + request: GetMyChatappsRequest; +} export interface getMyChatapps_result { - success: GetMyChatappsResponse; + success: GetMyChatappsResponse; e: ChatappException; - } +} export interface getMyDashboard_args { - request: GetMyDashboardRequest; - } + request: GetMyDashboardRequest; +} export interface getMyDashboard_result { - success: GetMyDashboardResponse; + success: GetMyDashboardResponse; e: WalletException; - } +} export interface getNewlyReleasedBuddyIds_args { - country: string; - } + country: string; +} export interface getNewlyReleasedBuddyIds_result { - success: Record; + success: Record; e: TalkException; - } +} export interface getNotificationSettings_args { - request: GetNotificationSettingsRequest; - } + request: GetNotificationSettingsRequest; +} export interface getNotificationSettings_result { - success: GetNotificationSettingsResponse; + success: GetNotificationSettingsResponse; e: TalkException; - } +} export interface getOwnedProductSummaries_args { - shopId: string; + shopId: string; offset: number; limit: number; locale: Locale; - } +} export interface getOwnedProductSummaries_result { - success: any; + success: any; e: ShopException; - } +} export interface getPasswordHashingParameter_args { - request: GetPasswordHashingParametersRequest; - } + request: GetPasswordHashingParametersRequest; +} export interface getPasswordHashingParameter_result { - success: GetPasswordHashingParametersResponse; + success: GetPasswordHashingParametersResponse; pue: PasswordUpdateException; tae: TokenAuthException; - } +} export interface getPasswordHashingParametersForPwdReg_args { - request: GetPasswordHashingParametersForPwdRegRequest; - } + request: GetPasswordHashingParametersForPwdRegRequest; +} export interface I80_C26380P { - request: I80_C26417q; - } + request: I80_C26417q; +} export interface getPasswordHashingParametersForPwdReg_result { - success: GetPasswordHashingParametersForPwdRegResponse; + success: GetPasswordHashingParametersForPwdRegResponse; e: AuthException; - } +} export interface I80_C26381Q { - success: I80_C26418r; + success: I80_C26418r; e: I80_C26390a; - } +} export interface getPasswordHashingParametersForPwdVerif_args { - request: GetPasswordHashingParametersForPwdVerifRequest; - } + request: GetPasswordHashingParametersForPwdVerifRequest; +} export interface I80_C26382S { - request: I80_C26419s; - } + request: I80_C26419s; +} export interface getPasswordHashingParametersForPwdVerif_result { - success: GetPasswordHashingParametersForPwdVerifResponse; + success: GetPasswordHashingParametersForPwdVerifResponse; e: AuthException; - } +} export interface I80_C26383T { - success: I80_C26420t; + success: I80_C26420t; e: I80_C26390a; - } +} export interface getPaymentUrlByKey_args { - key: string; - } + key: string; +} export interface getPaymentUrlByKey_result { - success: string; + success: string; e: PaymentException; - } +} export interface getPendingAgreements_result { - success: PendingAgreementsResponse; + success: PendingAgreementsResponse; e: TalkException; - } +} export interface getPhoneVerifMethodForRegistration_args { - request: GetPhoneVerifMethodForRegistrationRequest; - } + request: GetPhoneVerifMethodForRegistrationRequest; +} export interface getPhoneVerifMethodForRegistration_result { - success: GetPhoneVerifMethodForRegistrationResponse; + success: GetPhoneVerifMethodForRegistrationResponse; e: AuthException; - } +} export interface getPhoneVerifMethodV2_args { - request: GetPhoneVerifMethodV2Request; - } + request: GetPhoneVerifMethodV2Request; +} export interface I80_C26384U { - request: I80_C26421u; - } + request: I80_C26421u; +} export interface getPhoneVerifMethodV2_result { - success: GetPhoneVerifMethodV2Response; + success: GetPhoneVerifMethodV2Response; e: AuthException; - } +} export interface I80_C26385V { - success: I80_C26422v; + success: I80_C26422v; e: I80_C26390a; - } +} export interface getPhotoboothBalance_args { - request: Pb1_C13126p5; - } + request: Pb1_C13126p5; +} export interface getPhotoboothBalance_result { - success: GetPhotoboothBalanceResponse; + success: GetPhotoboothBalanceResponse; e: TalkException; - } +} export interface getPredefinedScenarioSets_args { - request: GetPredefinedScenarioSetsRequest; - } + request: GetPredefinedScenarioSetsRequest; +} export interface getPredefinedScenarioSets_result { - success: GetPredefinedScenarioSetsResponse; + success: GetPredefinedScenarioSetsResponse; e: ThingsException; - } +} export interface getPrefetchableBanners_args { - request: BannerRequest; - } + request: BannerRequest; +} export interface getPrefetchableBanners_result { - success: BannerResponse; - } + success: BannerResponse; +} export interface getPremiumStatusForUpgrade_args { - req: fN0_C24475g; - } + req: fN0_C24475g; +} export interface getPremiumStatusForUpgrade_result { - success: GetPremiumStatusResponse; + success: GetPremiumStatusResponse; e: PremiumException; - } +} export interface getPremiumStatus_args { - req: fN0_C24476h; - } + req: fN0_C24476h; +} export interface getPremiumStatus_result { - success: GetPremiumStatusResponse; + success: GetPremiumStatusResponse; e: PremiumException; - } +} export interface getPreviousMessagesV2WithRequest_args { - request: GetPreviousMessagesV2Request; + request: GetPreviousMessagesV2Request; syncReason: Pb1_V7; - } +} export interface getPreviousMessagesV2WithRequest_result { - success: Message[]; + success: Message[]; e: TalkException; - } +} export interface getProductByVersion_args { - shopId: string; + shopId: string; productId: string; productVersion: Int64; locale: Locale; - } +} export interface getProductByVersion_result { - success: any; + success: any; e: ShopException; - } +} export interface getProductLatestVersionForUser_args { - request: any; - } + request: any; +} export interface getProductLatestVersionForUser_result { - success: any; + success: any; e: ShopException; - } +} export interface getProductSummariesInSubscriptionSlots_args { - req: any; - } + req: any; +} export interface getProductSummariesInSubscriptionSlots_result { - success: any; + success: any; e: ShopException; - } +} export interface getProductV2_args { - request: any; - } + request: any; +} export interface getProductV2_result { - success: any; + success: any; e: ShopException; - } +} export interface getProductValidationScheme_args { - shopId: string; + shopId: string; productId: string; productVersion: Int64; - } +} export interface getProductValidationScheme_result { - success: any; + success: any; e: ShopException; - } +} export interface getProductsByAuthor_args { - productListByAuthorRequest: any; - } + productListByAuthorRequest: any; +} export interface getProductsByAuthor_result { - success: any; + success: any; e: ShopException; - } +} export interface getProfile_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getProfile_result { - success: Profile; + success: Profile; e: TalkException; - } +} export interface getPromotedBuddyContacts_args { - language: string; + language: string; country: string; - } +} export interface getPromotedBuddyContacts_result { - success: Contact[]; + success: Contact[]; e: TalkException; - } +} export interface getPublishedMemberships_args { - request: GetPublishedMembershipsRequest; - } + request: GetPublishedMembershipsRequest; +} export interface getPublishedMemberships_result { - success: Membership[]; + success: Membership[]; e: MembershipException; - } +} export interface getPurchaseEnabledStatus_args { - request: PurchaseEnabledRequest; - } + request: PurchaseEnabledRequest; +} export interface getPurchaseEnabledStatus_result { - success: og_I; + success: og_I; e: MembershipException; - } +} export interface getPurchasedProducts_args { - shopId: string; + shopId: string; offset: number; limit: number; locale: Locale; - } +} export interface getPurchasedProducts_result { - success: PurchaseRecordList; + success: PurchaseRecordList; e: ShopException; - } +} export interface getQuickMenu_args { - request: NZ0_S; - } + request: NZ0_S; +} export interface getQuickMenu_result { - success: GetQuickMenuResponse; + success: GetQuickMenuResponse; e: WalletException; - } +} export interface getRSAKeyInfo_result { - success: RSAKey; + success: RSAKey; e: TalkException; - } +} export interface getReceivedPresents_args { - shopId: string; + shopId: string; offset: number; limit: number; locale: Locale; - } +} export interface getReceivedPresents_result { - success: PurchaseRecordList; + success: PurchaseRecordList; e: ShopException; - } +} export interface getRecentFriendRequests_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getRecentFriendRequests_result { - success: FriendRequestsInfo; + success: FriendRequestsInfo; e: TalkException; - } +} export interface getRecommendationDetails_args { - request: GetRecommendationDetailsRequest; - } + request: GetRecommendationDetailsRequest; +} export interface getRecommendationDetails_result { - success: GetRecommendationDetailsResponse; + success: GetRecommendationDetailsResponse; re: RejectedException; sfe: ServerFailureException; te: TalkException; ere: ExcessiveRequestItemException; - } +} export interface getRecommendationIds_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getRecommendationIds_result { - success: string[]; + success: string[]; e: TalkException; - } +} export interface getRecommendationList_args { - getRecommendationRequest: any; - } + getRecommendationRequest: any; +} export interface getRecommendationList_result { - success: GetSuggestTrialRecommendationResponse; + success: GetSuggestTrialRecommendationResponse; e: SuggestTrialException; - } +} export interface getRepairElements_args { - request: GetRepairElementsRequest; - } + request: GetRepairElementsRequest; +} export interface getRepairElements_result { - success: GetRepairElementsResponse; + success: GetRepairElementsResponse; e: TalkException; - } +} export interface getRequiredAgreements_result { - success: PaymentRequiredAgreementsInfo; + success: PaymentRequiredAgreementsInfo; e: PaymentException; - } +} export interface getResourceFile_args { - req: any; - } + req: any; +} export interface getResourceFile_result { - success: any; + success: any; e: ShopException; - } +} export interface getResponseStatus_args { - request: GetResponseStatusRequest; - } + request: GetResponseStatusRequest; +} export interface getResponseStatus_result { - success: GetResponseStatusResponse; + success: GetResponseStatusResponse; e: OaChatException; - } +} export interface getReturnUrlWithRequestTokenForAutoLogin_args { - webLoginRequest: WebLoginRequest; - } + webLoginRequest: WebLoginRequest; +} export interface getReturnUrlWithRequestTokenForAutoLogin_result { - success: WebLoginResponse; + success: WebLoginResponse; e: ChannelException; - } +} export interface getReturnUrlWithRequestTokenForMultiLiffLogin_args { - request: LiffWebLoginRequest; - } + request: LiffWebLoginRequest; +} export interface getReturnUrlWithRequestTokenForMultiLiffLogin_result { - success: LiffWebLoginResponse; + success: LiffWebLoginResponse; liffException: LiffException; channelException: LiffChannelException; talkException: TalkException; - } +} export interface getRingbackTone_result { - success: RingbackTone; + success: RingbackTone; e: TalkException; - } +} export interface getRingtone_result { - success: Ringtone; + success: Ringtone; e: TalkException; - } +} export interface getRoomsV2_args { - roomIds: string[]; - } + roomIds: string[]; +} export interface getRoomsV2_result { - success: Room[]; + success: Room[]; e: TalkException; - } +} export interface getSCC_args { - request: GetSCCRequest; - } + request: GetSCCRequest; +} export interface getSCC_result { - success: SCC; + success: SCC; e: MembershipException; - } +} export interface I80_C26386W { - request: I80_C26423w; - } + request: I80_C26423w; +} export interface I80_C26387X { - success: I80_C26424x; + success: I80_C26424x; e: I80_C26390a; - } +} export interface getSeasonalEffects_args { - req: Eh_C8935c; - } + req: Eh_C8935c; +} export interface getSeasonalEffects_result { - success: GetSeasonalEffectsResponse; + success: GetSeasonalEffectsResponse; e: any; - } +} export interface getSecondAuthMethod_args { - authSessionId: string; - } + authSessionId: string; +} export interface getSecondAuthMethod_result { - success: GetSecondAuthMethodResponse; + success: GetSecondAuthMethodResponse; e: AuthException; - } +} export interface getSentPresents_args { - shopId: string; + shopId: string; offset: number; limit: number; locale: Locale; - } +} export interface getSentPresents_result { - success: PurchaseRecordList; + success: PurchaseRecordList; e: ShopException; - } +} export interface getServerTime_result { - success: Int64; + success: Int64; e: TalkException; - } +} export interface getServiceShortcutMenu_args { - request: NZ0_U; - } + request: NZ0_U; +} export interface getServiceShortcutMenu_result { - success: GetServiceShortcutMenuResponse; + success: GetServiceShortcutMenuResponse; e: WalletException; - } +} export interface getSessionContentBeforeMigCompletion_args { - authSessionId: string; - } + authSessionId: string; +} export interface getSessionContentBeforeMigCompletion_result { - success: GetSessionContentBeforeMigCompletionResponse; + success: GetSessionContentBeforeMigCompletionResponse; e: AuthException; - } +} export interface getSettingsAttributes2_args { - attributesToRetrieve: SettingsAttributeEx[]; - } + attributesToRetrieve: SettingsAttributeEx[]; +} export interface getSettingsAttributes2_result { - success: Settings; + success: Settings; e: TalkException; - } +} export interface getSettingsAttributes_result { - success: Settings; + success: Settings; e: TalkException; - } +} export interface getSettings_args { - syncReason: Pb1_V7; - } + syncReason: Pb1_V7; +} export interface getSettings_result { - success: Settings; + success: Settings; e: TalkException; - } +} export interface getSmartChannelRecommendations_args { - request: GetSmartChannelRecommendationsRequest; - } + request: GetSmartChannelRecommendationsRequest; +} export interface getSmartChannelRecommendations_result { - success: GetSmartChannelRecommendationsResponse; + success: GetSmartChannelRecommendationsResponse; e: WalletException; - } +} export interface getSquareBot_args { - req: GetSquareBotRequest; - } + req: GetSquareBotRequest; +} export interface getSquareBot_result { - success: GetSquareBotResponse; + success: GetSquareBotResponse; e: BotException; - } +} export interface getStudentInformation_args { - req: Ob1_C12606a0; - } + req: Ob1_C12606a0; +} export interface getStudentInformation_result { - success: GetStudentInformationResponse; + success: GetStudentInformationResponse; e: ShopException; - } +} export interface getSubscriptionPlans_args { - req: GetSubscriptionPlansRequest; - } + req: GetSubscriptionPlansRequest; +} export interface getSubscriptionPlans_result { - success: GetSubscriptionPlansResponse; + success: GetSubscriptionPlansResponse; e: ShopException; - } +} export interface getSubscriptionSlotHistory_args { - req: Ob1_C12618e0; - } + req: Ob1_C12618e0; +} export interface getSubscriptionSlotHistory_result { - success: Ob1_C12621f0; + success: Ob1_C12621f0; e: ShopException; - } +} export interface getSubscriptionStatus_args { - req: GetSubscriptionStatusRequest; - } + req: GetSubscriptionStatusRequest; +} export interface getSubscriptionStatus_result { - success: GetSubscriptionStatusResponse; + success: GetSubscriptionStatusResponse; e: ShopException; - } +} export interface getSuggestDictionarySetting_args { - req: Ob1_C12630i0; - } + req: Ob1_C12630i0; +} export interface getSuggestDictionarySetting_result { - success: GetSuggestDictionarySettingResponse; + success: GetSuggestDictionarySettingResponse; e: ShopException; - } +} export interface getSuggestResourcesV2_args { - req: GetSuggestResourcesV2Request; - } + req: GetSuggestResourcesV2Request; +} export interface getSuggestResourcesV2_result { - success: GetSuggestResourcesV2Response; + success: GetSuggestResourcesV2Response; e: ShopException; - } +} export interface getTaiwanBankBalance_args { - request: GetTaiwanBankBalanceRequest; - } + request: GetTaiwanBankBalanceRequest; +} export interface getTaiwanBankBalance_result { - success: GetTaiwanBankBalanceResponse; + success: GetTaiwanBankBalanceResponse; e: WalletException; - } +} export interface getTargetProfiles_args { - request: GetTargetProfilesRequest; - } + request: GetTargetProfilesRequest; +} export interface getTargetProfiles_result { - success: GetTargetProfilesResponse; + success: GetTargetProfilesResponse; re: RejectedException; sfe: ServerFailureException; te: TalkException; ere: ExcessiveRequestItemException; - } +} export interface getTargetingPopup_args { - request: NZ0_C12150a0; - } + request: NZ0_C12150a0; +} export interface getTargetingPopup_result { - success: GetTargetingPopupResponse; + success: GetTargetingPopupResponse; e: WalletException; - } +} export interface getThaiBankBalance_args { - request: GetThaiBankBalanceRequest; - } + request: GetThaiBankBalanceRequest; +} export interface getThaiBankBalance_result { - success: GetThaiBankBalanceResponse; + success: GetThaiBankBalanceResponse; e: WalletException; - } +} export interface getTotalCoinBalance_args { - request: GetTotalCoinBalanceRequest; - } + request: GetTotalCoinBalanceRequest; +} export interface getTotalCoinBalance_result { - success: GetTotalCoinBalanceResponse; + success: GetTotalCoinBalanceResponse; e: CoinException; - } +} export interface getUpdatedChannelIds_args { - channelIds: ChannelIdWithLastUpdated[]; - } + channelIds: ChannelIdWithLastUpdated[]; +} export interface getUpdatedChannelIds_result { - success: string[]; + success: string[]; e: ChannelException; - } +} export interface getUserCollections_args { - request: GetUserCollectionsRequest; - } + request: GetUserCollectionsRequest; +} export interface getUserCollections_result { - success: GetUserCollectionsResponse; + success: GetUserCollectionsResponse; e: CollectionException; - } +} export interface getUserProfile_args { - authSessionId: string; + authSessionId: string; accountIdentifier: AccountIdentifier; - } +} export interface getUserProfile_result { - success: GetUserProfileResponse; + success: GetUserProfileResponse; e: AuthException; - } +} export interface getUserVector_args { - request: GetUserVectorRequest; - } + request: GetUserVectorRequest; +} export interface getUserVector_result { - success: GetUserVectorResponse; + success: GetUserVectorResponse; e: LFLPremiumException; - } +} export interface getUsersMappedByProfile_args { - request: GetUsersMappedByProfileRequest; - } + request: GetUsersMappedByProfileRequest; +} export interface getUsersMappedByProfile_result { - success: GetUsersMappedByProfileResponse; + success: GetUsersMappedByProfileResponse; e: TalkException; - } +} export interface getWebLoginDisallowedUrlForMultiLiffLogin_args { - request: LiffWebLoginRequest; - } + request: LiffWebLoginRequest; +} export interface getWebLoginDisallowedUrlForMultiLiffLogin_result { - success: LiffWebLoginResponse; + success: LiffWebLoginResponse; liffException: LiffException; channelException: LiffChannelException; talkException: TalkException; - } +} export interface getWebLoginDisallowedUrl_args { - webLoginRequest: WebLoginRequest; - } + webLoginRequest: WebLoginRequest; +} export interface getWebLoginDisallowedUrl_result { - success: WebLoginResponse; + success: WebLoginResponse; e: ChannelException; - } +} export interface h80_C25643c { - - } +} export interface h80_t { - newDevicePublicKey: string; + newDevicePublicKey: string; encryptedQrIdentifier: string; - } +} export interface h80_v { - - } +} export interface I80_A0 { - - } +} export interface I80_C26398e { - - } +} export interface I80_C26404h { - - } +} export interface I80_F0 { - - } +} export interface I80_r0 { - - } +} export interface I80_v0 { - - } +} export interface inviteFriends_args { - request: InviteFriendsRequest; - } + request: InviteFriendsRequest; +} export interface inviteFriends_result { - success: InviteFriendsResponse; + success: InviteFriendsResponse; e: PremiumException; - } +} export interface inviteIntoChat_args { - request: InviteIntoChatRequest; - } + request: InviteIntoChatRequest; +} export interface inviteIntoChat_result { - success: Pb1_J5; + success: Pb1_J5; e: TalkException; - } +} export interface inviteIntoGroupCall_args { - chatMid: string; + chatMid: string; memberMids: string[]; mediaType: Pb1_EnumC13237x5; - } +} export interface inviteIntoGroupCall_result { - e: TalkException; - } + e: TalkException; +} export interface inviteIntoRoom_args { - reqSeq: number; + reqSeq: number; roomId: string; contactIds: string[]; - } +} export interface inviteIntoRoom_result { - e: TalkException; - } + e: TalkException; +} export interface isProductForCollections_args { - request: IsProductForCollectionsRequest; - } + request: IsProductForCollectionsRequest; +} export interface isProductForCollections_result { - success: IsProductForCollectionsResponse; + success: IsProductForCollectionsResponse; e: CollectionException; - } +} export interface isStickerAvailableForCombinationSticker_args { - request: IsStickerAvailableForCombinationStickerRequest; - } + request: IsStickerAvailableForCombinationStickerRequest; +} export interface isStickerAvailableForCombinationSticker_result { - success: IsStickerAvailableForCombinationStickerResponse; + success: IsStickerAvailableForCombinationStickerResponse; e: ShopException; - } +} export interface isUseridAvailable_args { - searchId: string; - } + searchId: string; +} export interface isUseridAvailable_result { - success: boolean; + success: boolean; e: TalkException; - } +} export interface issueChannelToken_args { - channelId: string; - } + channelId: string; +} export interface issueChannelToken_result { - success: ChannelToken; + success: ChannelToken; e: ChannelException; - } +} export interface issueLiffView_args { - request: LiffViewRequest; - } + request: LiffViewRequest; +} export interface issueLiffView_result { - success: LiffViewResponse; + success: LiffViewResponse; liffException: LiffException; talkException: TalkException; - } +} export interface issueNonce_result { - success: string; + success: string; e: PaymentException; - } +} export interface issueRequestTokenWithAuthScheme_args { - channelId: string; + channelId: string; otpId: string; authScheme: string[]; returnUrl: string; - } +} export interface issueRequestTokenWithAuthScheme_result { - success: RequestTokenResponse; + success: RequestTokenResponse; e: ChannelException; - } +} export interface issueSubLiffView_args { - request: LiffViewRequest; - } + request: LiffViewRequest; +} export interface issueSubLiffView_result { - success: LiffViewResponse; + success: LiffViewResponse; liffException: LiffException; talkException: TalkException; - } +} export interface issueTokenForAccountMigrationSettings_args { - enforce: boolean; - } + enforce: boolean; +} export interface issueTokenForAccountMigrationSettings_result { - success: SecurityCenterResult; + success: SecurityCenterResult; e: TalkException; - } +} export interface issueToken_args { - request: IssueBirthdayGiftTokenRequest; - } + request: IssueBirthdayGiftTokenRequest; +} export interface issueToken_result { - success: IssueBirthdayGiftTokenResponse; + success: IssueBirthdayGiftTokenResponse; e: any; - } +} export interface issueV3TokenForPrimary_args { - request: IssueV3TokenForPrimaryRequest; - } + request: IssueV3TokenForPrimaryRequest; +} export interface issueV3TokenForPrimary_result { - success: IssueV3TokenForPrimaryResponse; + success: IssueV3TokenForPrimaryResponse; e: TalkException; - } +} export interface issueWebAuthDetailsForSecondAuth_args { - authSessionId: string; - } + authSessionId: string; +} export interface issueWebAuthDetailsForSecondAuth_result { - success: IssueWebAuthDetailsForSecondAuthResponse; + success: IssueWebAuthDetailsForSecondAuthResponse; e: AuthException; - } +} export interface joinChatByCallUrl_args { - request: JoinChatByCallUrlRequest; - } + request: JoinChatByCallUrlRequest; +} export interface joinChatByCallUrl_result { - success: JoinChatByCallUrlResponse; + success: JoinChatByCallUrlResponse; e: TalkException; - } +} export interface jp_naver_line_shop_protocol_thrift_ProductProperty { - - } +} export interface kf_i { - - } +} export interface kf_k { - - } +} export interface kf_m { - richmenu: RichmenuEvent; + richmenu: RichmenuEvent; talkroom: TalkroomEvent; - } +} export interface kf_w { - profileRefererContent: any; - } + profileRefererContent: any; +} export interface kickoutFromGroupCall_args { - kickoutFromGroupCallRequest: KickoutFromGroupCallRequest; - } + kickoutFromGroupCallRequest: KickoutFromGroupCallRequest; +} export interface kickoutFromGroupCall_result { - success: Pb1_S5; + success: Pb1_S5; e: TalkException; - } +} export interface leaveRoom_args { - reqSeq: number; + reqSeq: number; roomId: string; - } +} export interface leaveRoom_result { - e: TalkException; - } + e: TalkException; +} export interface linkDevice_args { - request: DeviceLinkRequest; - } + request: DeviceLinkRequest; +} export interface linkDevice_result { - success: DeviceLinkResponse; + success: DeviceLinkResponse; e: ThingsException; - } +} export interface logoutV2_result { - e: TalkException; - } + e: TalkException; +} export interface lookupAvailableEap_args { - request: LookupAvailableEapRequest; - } + request: LookupAvailableEapRequest; +} export interface lookupAvailableEap_result { - success: LookupAvailableEapResponse; + success: LookupAvailableEapResponse; e: AuthException; - } +} export interface lookupPaidCall_args { - dialedNumber: string; + dialedNumber: string; language: string; referer: string; - } +} export interface lookupPaidCall_result { - success: PaidCallResponse; + success: PaidCallResponse; e: TalkException; - } +} export interface m80_l { - - } +} export interface m80_n { - - } +} export interface m80_q { - - } +} export interface m80_s { - - } +} export interface mapProfileToUsers_args { - request: MapProfileToUsersRequest; - } + request: MapProfileToUsersRequest; +} export interface mapProfileToUsers_result { - success: MapProfileToUsersResponse; + success: MapProfileToUsersResponse; e: TalkException; - } +} export interface migratePrimaryUsingEapAccountWithTokenV3_args { - authSessionId: string; - } + authSessionId: string; +} export interface migratePrimaryUsingEapAccountWithTokenV3_result { - success: MigratePrimaryWithTokenV3Response; + success: MigratePrimaryWithTokenV3Response; e: AuthException; - } +} export interface migratePrimaryUsingPhoneWithTokenV3_args { - authSessionId: string; - } + authSessionId: string; +} export interface migratePrimaryUsingPhoneWithTokenV3_result { - success: MigratePrimaryWithTokenV3Response; + success: MigratePrimaryWithTokenV3Response; e: AuthException; - } +} export interface migratePrimaryUsingQrCode_args { - request: MigratePrimaryUsingQrCodeRequest; - } + request: MigratePrimaryUsingQrCodeRequest; +} export interface migratePrimaryUsingQrCode_result { - success: MigratePrimaryUsingQrCodeResponse; + success: MigratePrimaryUsingQrCodeResponse; e: PrimaryQrCodeMigrationException; - } +} export interface n80_C31222b { - - } +} export interface n80_d { - - } +} export interface negotiateE2EEPublicKey_args { - mid: string; - } + mid: string; +} export interface negotiateE2EEPublicKey_result { - success: E2EENegotiationResult; + success: E2EENegotiationResult; e: TalkException; - } +} export interface noop_result { - e: TalkException; - } + e: TalkException; +} export interface notifyBannerShowing_result { - e: TalkException; - } + e: TalkException; +} export interface notifyBannerTapped_result { - e: TalkException; - } + e: TalkException; +} export interface notifyBeaconDetected_result { - e: TalkException; - } + e: TalkException; +} export interface notifyChatAdEntry_args { - request: NotifyChatAdEntryRequest; - } + request: NotifyChatAdEntryRequest; +} export interface notifyChatAdEntry_result { - success: kf_i; + success: kf_i; e: BotExternalException; - } +} export interface notifyDeviceConnection_args { - request: NotifyDeviceConnectionRequest; - } + request: NotifyDeviceConnectionRequest; +} export interface notifyDeviceConnection_result { - success: NotifyDeviceConnectionResponse; + success: NotifyDeviceConnectionResponse; e: ThingsException; - } +} export interface notifyDeviceDisconnection_args { - request: NotifyDeviceDisconnectionRequest; - } + request: NotifyDeviceDisconnectionRequest; +} export interface notifyDeviceDisconnection_result { - success: do0_C23165x; + success: do0_C23165x; e: ThingsException; - } +} export interface notifyInstalled_args { - udidHash: string; + udidHash: string; applicationTypeWithExtensions: string; - } +} export interface notifyInstalled_result { - e: TalkException; - } + e: TalkException; +} export interface notifyOATalkroomEvents_args { - request: NotifyOATalkroomEventsRequest; - } + request: NotifyOATalkroomEventsRequest; +} export interface notifyOATalkroomEvents_result { - success: kf_k; + success: kf_k; e: BotExternalException; - } +} export interface notifyProductEvent_args { - shopId: string; + shopId: string; productId: string; productVersion: Int64; productEvent: Int64; - } +} export interface notifyProductEvent_result { - e: ShopException; - } + e: ShopException; +} export interface notifyRegistrationComplete_args { - udidHash: string; + udidHash: string; applicationTypeWithExtensions: string; - } +} export interface notifyRegistrationComplete_result { - e: TalkException; - } + e: TalkException; +} export interface notifyScenarioExecuted_args { - request: NotifyScenarioExecutedRequest; - } + request: NotifyScenarioExecutedRequest; +} export interface notifyScenarioExecuted_result { - success: do0_C23167z; + success: do0_C23167z; e: ThingsException; - } +} export interface notifySleep_result { - e: TalkException; - } + e: TalkException; +} export interface notifyUpdated_args { - lastRev: Int64; + lastRev: Int64; deviceInfo: DeviceInfo; udidHash: string; oldUdidHash: string; - } +} export interface notifyUpdated_result { - e: TalkException; - } + e: TalkException; +} export interface o80_C32273b { - - } +} export interface o80_d { - - } +} export interface o80_m { - - } +} export interface og_u { - - } +} export interface openAuthSession_args { - request: AuthSessionRequest; - } + request: AuthSessionRequest; +} export interface openAuthSession_result { - success: string; + success: string; e: TalkException; - } +} export interface openProximityMatch_result { - success: string; + success: string; e: TalkException; - } +} export interface openSession_args { - request: OpenSessionRequest; - } + request: OpenSessionRequest; +} export interface openSession_result { - success: string; + success: string; e: AuthException; - } +} export interface permitLogin_args { - request: PermitLoginRequest; - } + request: PermitLoginRequest; +} export interface permitLogin_result { - success: PermitLoginResponse; + success: PermitLoginResponse; sle: SeamlessLoginException; tae: TokenAuthException; - } +} export interface placePurchaseOrderForFreeProduct_args { - purchaseOrder: PurchaseOrder; - } + purchaseOrder: PurchaseOrder; +} export interface placePurchaseOrderForFreeProduct_result { - success: PurchaseOrderResponse; + success: PurchaseOrderResponse; e: ShopException; - } +} export interface placePurchaseOrderWithLineCoin_args { - purchaseOrder: PurchaseOrder; - } + purchaseOrder: PurchaseOrder; +} export interface placePurchaseOrderWithLineCoin_result { - success: PurchaseOrderResponse; + success: PurchaseOrderResponse; e: ShopException; - } +} export interface postPopupButtonEvents_args { - buttonId: string; - checkboxes: Record; - } + buttonId: string; + checkboxes: Record; +} export interface postPopupButtonEvents_result { - e: PaymentException; - } + e: PaymentException; +} export interface purchaseSubscription_args { - req: PurchaseSubscriptionRequest; - } + req: PurchaseSubscriptionRequest; +} export interface purchaseSubscription_result { - success: PurchaseSubscriptionResponse; + success: PurchaseSubscriptionResponse; e: ShopException; - } +} export interface putE2eeKey_args { - request: PutE2eeKeyRequest; - } + request: PutE2eeKeyRequest; +} export interface putE2eeKey_result { - success: o80_m; + success: o80_m; e: SecondaryPwlessLoginException; - } +} export interface q80_C33650b { - - } +} export interface q80_q { - - } +} export interface q80_s { - - } +} export interface qm_C34110c { - inFriends: string; + inFriends: string; notInFriends: string; termsAgreed: boolean; - } +} export interface qm_C34115h { - hwid: string; + hwid: string; secureMessage: string; applicationType: ApplicationType; applicationVersion: string; @@ -18201,10 +19717,10 @@ export interface qm_C34115h { screen: string; bannerStartedAt: Int64; bannerShownFor: Int64; - } +} export interface qm_j { - hwid: string; + hwid: string; secureMessage: string; applicationType: ApplicationType; applicationVersion: string; @@ -18213,635 +19729,633 @@ export interface qm_j { screen: string; bannerTappedAt: Int64; beaconTermAgreed: boolean; - } +} export interface qm_l { - hwid: string; + hwid: string; secureMessage: string; applicationType: ApplicationType; applicationVersion: string; lang: string; region: string; modelName: string; - } +} export interface qm_o { - hwid: string; + hwid: string; secureMessage: string; notificationType: qm_EnumC34112e; rssi: Rssi; - } +} export interface queryBeaconActions_result { - success: BeaconQueryResponse; + success: BeaconQueryResponse; e: TalkException; - } +} export interface r80_C34358N { - - } +} export interface r80_C34360P { - - } +} export interface react_args { - reactRequest: ReactRequest; - } + reactRequest: ReactRequest; +} export interface react_result { - e: TalkException; - } + e: TalkException; +} export interface refresh_args { - request: RefreshAccessTokenRequest; - } + request: RefreshAccessTokenRequest; +} export interface refresh_result { - success: RefreshAccessTokenResponse; + success: RefreshAccessTokenResponse; accessTokenRefreshException: AccessTokenRefreshException; - } +} export interface registerBarcodeAsync_args { - requestToken: string; + requestToken: string; barcodeRequestId: string; barcode: string; password: RSAEncryptedPassword; - } +} export interface registerBarcodeAsync_result { - e: PaymentException; - } + e: PaymentException; +} export interface registerCampaignReward_args { - request: RegisterCampaignRewardRequest; - } + request: RegisterCampaignRewardRequest; +} export interface registerCampaignReward_result { - success: RegisterCampaignRewardResponse; + success: RegisterCampaignRewardResponse; e: WalletException; - } +} export interface registerE2EEGroupKey_args { - keyVersion: number; + keyVersion: number; chatMid: string; members: string[]; keyIds: number[]; - encryptedSharedKeys: (string|Buffer)[]; - } + encryptedSharedKeys: (string | Buffer)[]; +} export interface registerE2EEGroupKey_result { - success: Pb1_U3; + success: Pb1_U3; e: TalkException; - } +} export interface registerE2EEPublicKeyV2_args { - request: Pb1_W6; - } + request: Pb1_W6; +} export interface registerE2EEPublicKeyV2_result { - success: RegisterE2EEPublicKeyV2Response; + success: RegisterE2EEPublicKeyV2Response; e: TalkException; - } +} export interface registerE2EEPublicKey_args { - reqSeq: number; + reqSeq: number; publicKey: Pb1_C13097n4; - } +} export interface registerE2EEPublicKey_result { - success: Pb1_C13097n4; + success: Pb1_C13097n4; e: TalkException; - } +} export interface registerPrimaryCredential_args { - request: RegisterPrimaryCredentialRequest; - } + request: RegisterPrimaryCredentialRequest; +} export interface registerPrimaryCredential_result { - success: R70_t; + success: R70_t; e: PwlessCredentialException; - } +} export interface registerPrimaryUsingEapAccount_args { - authSessionId: string; - } + authSessionId: string; +} export interface registerPrimaryUsingEapAccount_result { - success: RegisterPrimaryWithTokenV3Response; + success: RegisterPrimaryWithTokenV3Response; e: AuthException; - } +} export interface registerPrimaryUsingPhoneWithTokenV3_args { - authSessionId: string; - } + authSessionId: string; +} export interface registerPrimaryUsingPhoneWithTokenV3_result { - success: RegisterPrimaryWithTokenV3Response; + success: RegisterPrimaryWithTokenV3Response; e: AuthException; - } +} export interface I80_C26367C { - request: I80_q0; - } + request: I80_q0; +} export interface I80_C26368D { - success: I80_r0; + success: I80_r0; e: I80_C26390a; tae: TokenAuthException; - } +} export interface registerUserid_args { - reqSeq: number; + reqSeq: number; searchId: string; - } +} export interface registerUserid_result { - success: boolean; + success: boolean; e: TalkException; - } +} export interface reissueChatTicket_args { - request: ReissueChatTicketRequest; - } + request: ReissueChatTicketRequest; +} export interface reissueChatTicket_result { - success: ReissueChatTicketResponse; + success: ReissueChatTicketResponse; e: TalkException; - } +} export interface rejectChatInvitation_args { - request: RejectChatInvitationRequest; - } + request: RejectChatInvitationRequest; +} export interface rejectChatInvitation_result { - success: Pb1_C12946c7; + success: Pb1_C12946c7; e: TalkException; - } +} export interface removeAllMessages_result { - e: TalkException; - } + e: TalkException; +} export interface removeChatRoomAnnouncement_args { - reqSeq: number; + reqSeq: number; chatRoomMid: string; announcementSeq: Int64; - } +} export interface removeChatRoomAnnouncement_result { - e: TalkException; - } + e: TalkException; +} export interface removeFollower_args { - removeFollowerRequest: RemoveFollowerRequest; - } + removeFollowerRequest: RemoveFollowerRequest; +} export interface removeFollower_result { - e: TalkException; - } + e: TalkException; +} export interface removeFriendRequest_args { - direction: Pb1_F4; + direction: Pb1_F4; midOrEMid: string; - } +} export interface removeFriendRequest_result { - e: TalkException; - } + e: TalkException; +} export interface removeFromFollowBlacklist_args { - removeFromFollowBlacklistRequest: RemoveFromFollowBlacklistRequest; - } + removeFromFollowBlacklistRequest: RemoveFromFollowBlacklistRequest; +} export interface removeFromFollowBlacklist_result { - e: TalkException; - } + e: TalkException; +} export interface removeIdentifier_args { - authSessionId: string; + authSessionId: string; request: IdentityCredentialRequest; - } +} export interface removeIdentifier_result { - success: IdentityCredentialResponse; + success: IdentityCredentialResponse; e: TalkException; - } +} export interface removeItemFromCollection_args { - request: RemoveItemFromCollectionRequest; - } + request: RemoveItemFromCollectionRequest; +} export interface removeItemFromCollection_result { - success: Ob1_C12637k1; + success: Ob1_C12637k1; e: CollectionException; - } +} export interface removeLinePayAccount_args { - accountId: string; - } + accountId: string; +} export interface removeLinePayAccount_result { - e: PaymentException; - } + e: PaymentException; +} export interface removeProductFromSubscriptionSlot_args { - req: RemoveProductFromSubscriptionSlotRequest; - } + req: RemoveProductFromSubscriptionSlotRequest; +} export interface removeProductFromSubscriptionSlot_result { - success: RemoveProductFromSubscriptionSlotResponse; + success: RemoveProductFromSubscriptionSlotResponse; e: ShopException; - } +} export interface reportAbuseEx_args { - request: ReportAbuseExRequest; - } + request: ReportAbuseExRequest; +} export interface reportAbuseEx_result { - success: Pb1_C13114o7; + success: Pb1_C13114o7; e: TalkException; - } +} export interface reportDeviceState_args { - booleanState: Record; - stringState: Record; - } + booleanState: Record; + stringState: Record; +} export interface reportDeviceState_result { - e: TalkException; - } + e: TalkException; +} export interface reportLocation_args { - location: Geolocation; + location: Geolocation; trigger: Pb1_EnumC12917a6; networkStatus: ClientNetworkStatus; measuredAt: Int64; clientCurrentTimestamp: Int64; debugInfo: LocationDebugInfo; - } +} export interface reportLocation_result { - e: TalkException; - } + e: TalkException; +} export interface reportNetworkStatus_args { - trigger: Pb1_EnumC12917a6; + trigger: Pb1_EnumC12917a6; networkStatus: ClientNetworkStatus; measuredAt: Int64; scanCompletionTimestamp: Int64; - } +} export interface reportNetworkStatus_result { - e: TalkException; - } + e: TalkException; +} export interface reportProfile_args { - syncOpRevision: Int64; + syncOpRevision: Int64; profile: Profile; - } +} export interface reportProfile_result { - e: TalkException; - } + e: TalkException; +} export interface reportPushRecvReports_args { - reqSeq: number; + reqSeq: number; pushRecvReports: PushRecvReport[]; - } +} export interface reportPushRecvReports_result { - e: TalkException; - } + e: TalkException; +} export interface reportRefreshedAccessToken_args { - request: ReportRefreshedAccessTokenRequest; - } + request: ReportRefreshedAccessTokenRequest; +} export interface reportRefreshedAccessToken_result { - success: P70_k; + success: P70_k; accessTokenRefreshException: AccessTokenRefreshException; - } +} export interface reportSettings_args { - syncOpRevision: Int64; + syncOpRevision: Int64; settings: Settings; - } +} export interface reportSettings_result { - e: TalkException; - } + e: TalkException; +} export interface requestCleanupUserProvidedData_args { - dataTypes: Pb1_od[]; - } + dataTypes: Pb1_od[]; +} export interface requestCleanupUserProvidedData_result { - e: TalkException; - } + e: TalkException; +} export interface I80_C26388Y { - request: I80_u0; - } + request: I80_u0; +} export interface requestToSendPasswordSetVerificationEmail_args { - authSessionId: string; + authSessionId: string; email: string; accountIdentifier: AccountIdentifier; - } +} export interface requestToSendPasswordSetVerificationEmail_result { - success: RequestToSendPasswordSetVerificationEmailResponse; + success: RequestToSendPasswordSetVerificationEmailResponse; e: AuthException; - } +} export interface I80_C26389Z { - success: I80_v0; + success: I80_v0; e: I80_C26390a; - } +} export interface requestToSendPhonePinCode_args { - request: ReqToSendPhonePinCodeRequest; - } + request: ReqToSendPhonePinCodeRequest; +} export interface I80_C26391a0 { - request: I80_s0; - } + request: I80_s0; +} export interface requestToSendPhonePinCode_result { - success: ReqToSendPhonePinCodeResponse; + success: ReqToSendPhonePinCodeResponse; e: AuthException; - } +} export interface I80_C26393b0 { - success: I80_t0; + success: I80_t0; e: I80_C26390a; - } +} export interface requestTradeNumber_args { - requestToken: string; + requestToken: string; requestType: r80_g0; amount: string; name: string; - } +} export interface requestTradeNumber_result { - success: PaymentTradeInfo; + success: PaymentTradeInfo; e: PaymentException; - } +} export interface resendIdentifierConfirmation_args { - authSessionId: string; + authSessionId: string; request: IdentityCredentialRequest; - } +} export interface resendIdentifierConfirmation_result { - success: IdentityCredentialResponse; + success: IdentityCredentialResponse; e: TalkException; - } +} export interface resendPinCode_args { - sessionId: string; - } + sessionId: string; +} export interface resendPinCode_result { - e: TalkException; - } + e: TalkException; +} export interface reserveCoinPurchase_args { - request: CoinPurchaseReservation; - } + request: CoinPurchaseReservation; +} export interface reserveCoinPurchase_result { - success: PaymentReservationResult; + success: PaymentReservationResult; e: CoinException; - } +} export interface reserveSubscriptionPurchase_args { - request: ReserveSubscriptionPurchaseRequest; - } + request: ReserveSubscriptionPurchaseRequest; +} export interface reserveSubscriptionPurchase_result { - success: ReserveSubscriptionPurchaseResponse; + success: ReserveSubscriptionPurchaseResponse; e: PremiumException; - } +} export interface reserve_args { - request: ReserveRequest; - } + request: ReserveRequest; +} export interface reserve_result { - success: ReserveInfo; + success: ReserveInfo; e: MembershipException; - } +} export interface respondE2EEKeyExchange_result { - e: TalkException; - } + e: TalkException; +} export interface respondE2EELoginRequest_result { - e: TalkException; - } + e: TalkException; +} export interface restoreE2EEKeyBackup_args { - request: Pb1_C13155r7; - } + request: Pb1_C13155r7; +} export interface restoreE2EEKeyBackup_result { - success: Pb1_C13169s7; + success: Pb1_C13169s7; e: E2EEKeyBackupException; - } +} export interface I80_C26395c0 { - request: I80_w0; - } + request: I80_w0; +} export interface I80_C26397d0 { - success: I80_x0; + success: I80_x0; e: I80_C26390a; - } +} export interface I80_C26399e0 { - request: I80_w0; - } + request: I80_w0; +} export interface I80_C26401f0 { - success: I80_x0; + success: I80_x0; e: I80_C26390a; - } +} export interface retrieveRequestTokenWithDocomoV2_args { - request: Pb1_C13183t7; - } + request: Pb1_C13183t7; +} export interface retrieveRequestTokenWithDocomoV2_result { - success: RetrieveRequestTokenWithDocomoV2Response; + success: RetrieveRequestTokenWithDocomoV2Response; e: TalkException; - } +} export interface retrieveRequestToken_args { - carrier: CarrierCode; - } + carrier: CarrierCode; +} export interface retrieveRequestToken_result { - success: AgeCheckRequestResult; + success: AgeCheckRequestResult; e: TalkException; - } +} export interface revokeTokens_args { - request: RevokeTokensRequest; - } + request: RevokeTokensRequest; +} export interface revokeTokens_result { - liffException: LiffException; + liffException: LiffException; talkException: TalkException; - } +} export interface saveStudentInformation_args { - req: SaveStudentInformationRequest; - } + req: SaveStudentInformationRequest; +} export interface saveStudentInformation_result { - success: Ob1_C12649o1; + success: Ob1_C12649o1; e: ShopException; - } +} export interface sendChatChecked_args { - seq: number; + seq: number; chatMid: string; lastMessageId: string; sessionId: number; - } +} export interface sendChatChecked_result { - e: TalkException; - } + e: TalkException; +} export interface sendChatRemoved_args { - seq: number; + seq: number; chatMid: string; lastMessageId: string; sessionId: number; - } +} export interface sendChatRemoved_result { - e: TalkException; - } + e: TalkException; +} export interface sendEncryptedE2EEKey_args { - request: SendEncryptedE2EEKeyRequest; - } + request: SendEncryptedE2EEKeyRequest; +} export interface sendEncryptedE2EEKey_result { - success: h80_v; + success: h80_v; pqme: PrimaryQrCodeMigrationException; tae: TokenAuthException; - } +} export interface sendMessage_args { - seq: number; + seq: number; message: Message; - } +} export interface sendMessage_result { - success: Message; + success: Message; e: TalkException; - } +} export interface sendPostback_args { - request: SendPostbackRequest; - } + request: SendPostbackRequest; +} export interface sendPostback_result { - e: TalkException; - } + e: TalkException; +} export interface setChatHiddenStatus_args { - setChatHiddenStatusRequest: SetChatHiddenStatusRequest; - } + setChatHiddenStatusRequest: SetChatHiddenStatusRequest; +} export interface setChatHiddenStatus_result { - e: TalkException; - } + e: TalkException; +} export interface setHashedPassword_args { - request: SetHashedPasswordRequest; - } + request: SetHashedPasswordRequest; +} export interface I80_C26403g0 { - request: I80_z0; - } + request: I80_z0; +} export interface setHashedPassword_result { - success: T70_g1; + success: T70_g1; e: AuthException; - } +} export interface I80_C26405h0 { - success: I80_A0; + success: I80_A0; e: I80_C26390a; - } +} export interface setIdentifier_args { - authSessionId: string; + authSessionId: string; request: IdentityCredentialRequest; - } +} export interface setIdentifier_result { - success: IdentityCredentialResponse; + success: IdentityCredentialResponse; e: TalkException; - } +} export interface setNotificationsEnabled_args { - reqSeq: number; + reqSeq: number; type: MIDType; target: string; enablement: boolean; - } +} export interface setNotificationsEnabled_result { - e: TalkException; - } + e: TalkException; +} export interface setPassword_args { - request: SetPasswordRequest; - } + request: SetPasswordRequest; +} export interface setPassword_result { - success: U70_t; + success: U70_t; pue: PasswordUpdateException; tae: TokenAuthException; - } +} export interface shouldShowWelcomeStickerBanner_args { - request: Ob1_C12660s1; - } + request: Ob1_C12660s1; +} export interface shouldShowWelcomeStickerBanner_result { - success: ShouldShowWelcomeStickerBannerResponse; + success: ShouldShowWelcomeStickerBannerResponse; e: ShopException; - } +} export interface startPhotobooth_args { - request: StartPhotoboothRequest; - } + request: StartPhotoboothRequest; +} export interface startPhotobooth_result { - success: StartPhotoboothResponse; + success: StartPhotoboothResponse; e: TalkException; - } +} export interface I80_C26407i0 { - request: I80_C0; - } + request: I80_C0; +} export interface I80_C26409j0 { - success: I80_D0; + success: I80_D0; e: I80_C26390a; - } +} export interface startUpdateVerification_args { - region: string; + region: string; carrier: CarrierCode; phone: string; udidHash: string; @@ -18849,71 +20363,71 @@ export interface startUpdateVerification_args { networkCode: string; locale: string; simInfo: SIMInfo; - } +} export interface startUpdateVerification_result { - success: VerificationSessionData; + success: VerificationSessionData; e: TalkException; - } +} export interface stopBundleSubscription_args { - request: StopBundleSubscriptionRequest; - } + request: StopBundleSubscriptionRequest; +} export interface stopBundleSubscription_result { - success: StopBundleSubscriptionResponse; + success: StopBundleSubscriptionResponse; e: ShopException; - } +} export interface storeShareTargetPickerResult_args { - request: ShareTargetPickerResultRequest; - } + request: ShareTargetPickerResultRequest; +} export interface storeShareTargetPickerResult_result { - liffException: LiffException; + liffException: LiffException; talkException: TalkException; - } +} export interface storeSubWindowResult_args { - request: SubWindowResultRequest; - } + request: SubWindowResultRequest; +} export interface storeSubWindowResult_result { - liffException: LiffException; + liffException: LiffException; talkException: TalkException; - } +} export interface syncContacts_args { - reqSeq: number; + reqSeq: number; localContacts: ContactModification[]; - } +} export interface syncContacts_result { - success: Record; + success: Record; e: TalkException; - } +} export interface sync_args { - request: SyncRequest; - } + request: SyncRequest; +} export interface sync_result { - success: Pb1_X7; + success: Pb1_X7; e: TalkException; - } +} export interface t80_g { - response: GetResponse; + response: GetResponse; error: SettingsException; - } +} export interface t80_l { - response: SetResponse; + response: SetResponse; error: SettingsException; - } +} export interface t80_p { - booleanValue: boolean; + booleanValue: boolean; i64Value: Int64; stringValue: string; stringListValue: any[]; @@ -18926,70 +20440,70 @@ export interface t80_p { i8ListValue: any[]; i16ListValue: any[]; i32ListValue: any[]; - } +} export interface tryFriendRequest_args { - midOrEMid: string; + midOrEMid: string; method: Pb1_G4; friendRequestParams: string; - } +} export interface tryFriendRequest_result { - e: TalkException; - } + e: TalkException; +} export interface unblockContact_args { - reqSeq: number; + reqSeq: number; id: string; reference: string; - } +} export interface unblockContact_result { - e: TalkException; - } + e: TalkException; +} export interface unblockRecommendation_args { - reqSeq: number; + reqSeq: number; targetMid: string; - } +} export interface unblockRecommendation_result { - e: TalkException; - } + e: TalkException; +} export interface unfollow_args { - unfollowRequest: UnfollowRequest; - } + unfollowRequest: UnfollowRequest; +} export interface unfollow_result { - e: TalkException; - } + e: TalkException; +} export interface unlinkDevice_args { - request: DeviceUnlinkRequest; - } + request: DeviceUnlinkRequest; +} export interface unlinkDevice_result { - success: do0_C23152j; + success: do0_C23152j; e: ThingsException; - } +} export interface unregisterUserAndDevice_result { - success: string; + success: string; e: TalkException; - } +} export interface unsendMessage_args { - seq: number; + seq: number; messageId: string; - } +} export interface unsendMessage_result { - e: TalkException; - } + e: TalkException; +} export interface updateAndGetNearby_args { - latitude: number; + latitude: number; longitude: number; accuracy: GeolocationAccuracy; networkStatus: ClientNetworkStatus; @@ -18998,383 +20512,385 @@ export interface updateAndGetNearby_args { bearingDegrees: number; measuredAtTimestamp: Int64; clientCurrentTimestamp: Int64; - } +} export interface updateAndGetNearby_result { - success: NearbyEntry[]; + success: NearbyEntry[]; e: TalkException; - } +} export interface updateChannelNotificationSetting_args { - setting: ChannelNotificationSetting[]; - } + setting: ChannelNotificationSetting[]; +} export interface updateChannelNotificationSetting_result { - e: ChannelException; - } + e: ChannelException; +} export interface updateChannelSettings_args { - channelSettings: ChannelSettings; - } + channelSettings: ChannelSettings; +} export interface updateChannelSettings_result { - success: boolean; + success: boolean; e: ChannelException; - } +} export interface updateChatRoomBGM_args { - reqSeq: number; + reqSeq: number; chatRoomMid: string; chatRoomBGMInfo: string; - } +} export interface updateChatRoomBGM_result { - success: ChatRoomBGM; + success: ChatRoomBGM; e: TalkException; - } +} export interface updateChat_args { - request: UpdateChatRequest; - } + request: UpdateChatRequest; +} export interface updateChat_result { - success: Pb1_Zc; + success: Pb1_Zc; e: TalkException; - } +} export interface updateContactSetting_args { - reqSeq: number; + reqSeq: number; mid: string; flag: ContactSetting; value: string; - } +} export interface updateContactSetting_result { - e: TalkException; - } + e: TalkException; +} export interface updateExtendedProfileAttribute_args { - reqSeq: number; + reqSeq: number; attr: any; extendedProfile: ExtendedProfile; - } +} export interface updateExtendedProfileAttribute_result { - e: TalkException; - } + e: TalkException; +} export interface updateGroupCallUrl_args { - request: UpdateGroupCallUrlRequest; - } + request: UpdateGroupCallUrlRequest; +} export interface updateGroupCallUrl_result { - success: Pb1_cd; + success: Pb1_cd; e: TalkException; - } +} export interface updateIdentifier_args { - authSessionId: string; + authSessionId: string; request: IdentityCredentialRequest; - } +} export interface updateIdentifier_result { - success: IdentityCredentialResponse; + success: IdentityCredentialResponse; e: TalkException; - } +} export interface updateNotificationToken_args { - token: string; + token: string; type: NotificationType; - } +} export interface updateNotificationToken_result { - e: TalkException; - } + e: TalkException; +} export interface updatePassword_args { - request: UpdatePasswordRequest; - } + request: UpdatePasswordRequest; +} export interface updatePassword_result { - success: U70_v; + success: U70_v; pue: PasswordUpdateException; tae: TokenAuthException; - } +} export interface updateProfileAttribute_result { - e: TalkException; - } + e: TalkException; +} export interface updateProfileAttributes_args { - reqSeq: number; + reqSeq: number; request: UpdateProfileAttributesRequest; - } +} export interface updateProfileAttributes_result { - e: TalkException; - } + e: TalkException; +} export interface updateSafetyStatus_args { - req: UpdateSafetyStatusRequest; - } + req: UpdateSafetyStatusRequest; +} export interface updateSafetyStatus_result { - e: any; - } + e: any; +} export interface updateSettingsAttribute_result { - e: TalkException; - } + e: TalkException; +} export interface updateSettingsAttributes2_args { - reqSeq: number; + reqSeq: number; settings: Settings; attributesToUpdate: SettingsAttributeEx[]; - } +} export interface updateSettingsAttributes2_result { - success: number[]; + success: number[]; e: TalkException; - } +} export interface updateUserGeneralSettings_args { - settings: Record; - } + settings: Record; +} export interface updateUserGeneralSettings_result { - e: PaymentException; - } + e: PaymentException; +} export interface usePhotoboothTicket_args { - request: UsePhotoboothTicketRequest; - } + request: UsePhotoboothTicketRequest; +} export interface usePhotoboothTicket_result { - success: UsePhotoboothTicketResponse; + success: UsePhotoboothTicketResponse; e: TalkException; - } +} export interface validateEligibleFriends_args { - friends: string[]; + friends: string[]; type: r80_EnumC34376p; - } +} export interface validateEligibleFriends_result { - success: PaymentEligibleFriendStatus[]; + success: PaymentEligibleFriendStatus[]; e: PaymentException; - } +} export interface validateProduct_args { - shopId: string; + shopId: string; productId: string; productVersion: Int64; validationReq: any; - } +} export interface validateProduct_result { - success: any; + success: any; e: ShopException; - } +} export interface validateProfile_args { - authSessionId: string; + authSessionId: string; displayName: string; - } +} export interface validateProfile_result { - success: T70_o1; + success: T70_o1; e: AuthException; - } +} export interface verifyAccountUsingHashedPwd_args { - request: VerifyAccountUsingHashedPwdRequest; - } + request: VerifyAccountUsingHashedPwdRequest; +} export interface I80_C26411k0 { - request: I80_E0; - } + request: I80_E0; +} export interface verifyAccountUsingHashedPwd_result { - success: VerifyAccountUsingHashedPwdResponse; + success: VerifyAccountUsingHashedPwdResponse; e: AuthException; - } +} export interface I80_l0 { - success: I80_F0; + success: I80_F0; e: I80_C26390a; - } +} export interface verifyAssertion_args { - request: VerifyAssertionRequest; - } + request: VerifyAssertionRequest; +} export interface verifyAssertion_result { - success: m80_q; + success: m80_q; deviceAttestationException: m80_b; - } +} export interface verifyAttestation_args { - request: VerifyAttestationRequest; - } + request: VerifyAttestationRequest; +} export interface verifyAttestation_result { - success: m80_s; + success: m80_s; deviceAttestationException: m80_b; - } +} export interface verifyBirthdayGiftAssociationToken_args { - req: BirthdayGiftAssociationVerifyRequest; - } + req: BirthdayGiftAssociationVerifyRequest; +} export interface verifyBirthdayGiftAssociationToken_result { - success: BirthdayGiftAssociationVerifyResponse; + success: BirthdayGiftAssociationVerifyResponse; e: ShopException; - } +} export interface verifyEapAccountForRegistration_args { - authSessionId: string; + authSessionId: string; device: Device; socialLogin: SocialLogin; - } +} export interface verifyEapAccountForRegistration_result { - success: T70_s1; + success: T70_s1; e: AuthException; - } +} export interface verifyEapLogin_args { - request: VerifyEapLoginRequest; - } + request: VerifyEapLoginRequest; +} export interface I80_m0 { - request: I80_G0; - } + request: I80_G0; +} export interface verifyEapLogin_result { - success: VerifyEapLoginResponse; + success: VerifyEapLoginResponse; e: AccountEapConnectException; - } +} export interface I80_n0 { - success: I80_H0; + success: I80_H0; e: I80_C26390a; - } +} export interface verifyPhoneNumber_args { - sessionId: string; + sessionId: string; pinCode: string; udidHash: string; migrationPincodeSessionId: string; oldUdidHash: string; - } +} export interface verifyPhoneNumber_result { - success: PhoneVerificationResult; + success: PhoneVerificationResult; e: TalkException; - } +} export interface verifyPhonePinCode_args { - request: VerifyPhonePinCodeRequest; - } + request: VerifyPhonePinCodeRequest; +} export interface I80_o0 { - request: I80_I0; - } + request: I80_I0; +} export interface verifyPhonePinCode_result { - success: VerifyPhonePinCodeResponse; + success: VerifyPhonePinCodeResponse; e: AuthException; - } +} export interface I80_p0 { - success: I80_J0; + success: I80_J0; e: I80_C26390a; - } +} export interface verifyPinCode_args { - request: VerifyPinCodeRequest; - } + request: VerifyPinCodeRequest; +} export interface verifyPinCode_result { - success: q80_q; + success: q80_q; e: SecondaryQrCodeException; - } +} export interface verifyQrCode_args { - request: VerifyQrCodeRequest; - } + request: VerifyQrCodeRequest; +} export interface verifyQrCode_result { - success: q80_s; + success: q80_s; e: SecondaryQrCodeException; - } +} export interface verifyQrcodeWithE2EE_result { - success: string; + success: string; e: TalkException; - } +} export interface verifyQrcode_args { - verifier: string; + verifier: string; pinCode: string; - } +} export interface verifyQrcode_result { - success: string; + success: string; e: TalkException; - } +} export interface verifySocialLogin_args { - authSessionId: string; + authSessionId: string; device: Device; socialLogin: SocialLogin; - } +} export interface verifySocialLogin_result { - success: VerifySocialLoginResponse; + success: VerifySocialLoginResponse; e: AuthException; - } +} export interface vh_C37633d { - - } +} export interface wakeUpLongPolling_args { - clientRevision: Int64; - } + clientRevision: Int64; +} export interface wakeUpLongPolling_result { - success: boolean; + success: boolean; e: TalkException; - } +} export interface zR0_C40576a { - - } +} export interface zR0_C40580e { - sticker: any; - } + sticker: any; +} export interface GetContactsV2Response { - contacts: Record; - } + contacts: Record; +} export interface ContactEntry { - userStatus: any; + userStatus: any; snapshotTimeMillis: Int64; contact: Contact; calendarEvents: ContactCalendarEvents; - } - -export type LoginResultType = 1 | "SUCCESS" - | 2 | "REQUIRE_QRCODE" - | 3 | "REQUIRE_DEVICE_CONFIRM" - | 4 | "REQUIRE_SMS_CONFIRM" -; +} + +export type LoginResultType = + | 1 + | "SUCCESS" + | 2 + | "REQUIRE_QRCODE" + | 3 + | "REQUIRE_DEVICE_CONFIRM" + | 4 + | "REQUIRE_SMS_CONFIRM"; export interface LoginResult { - authToken: string; + authToken: string; certificate: string; verifier: string; pinCode: string; @@ -19382,4 +20898,4 @@ export interface LoginResult { lastPrimaryBindTime: Int64; displayMessage: string; sessionForSMSConfirm: VerificationSessionData; - } \ No newline at end of file +} 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 +}