diff --git a/migrate_to_v2.md b/migrate_to_v2.md index 14918e0..4a4d3c8 100644 --- a/migrate_to_v2.md +++ b/migrate_to_v2.md @@ -90,4 +90,7 @@ await client.login({ qr: true }); // login with authToken await client.login({ authToken: ... }); + +// start polling +client.polling(["talk", "square"]); ``` diff --git a/packages/linejs/src/core/mod.ts b/packages/linejs/src/core/mod.ts index 11bd655..5008120 100644 --- a/packages/linejs/src/core/mod.ts +++ b/packages/linejs/src/core/mod.ts @@ -35,16 +35,19 @@ import { TalkService, } from "../service/mod.ts"; -import { Login, LoginOption } from "../login/mod.ts"; +import { Login, type LoginOption } from "../login/mod.ts"; import { Thrift } from "../thrift/mod.ts"; import { RequestClient } from "../request/mod.ts"; import { E2EE } from "../e2ee/mod.ts"; import { LineObs } from "../obs/mod.ts"; import { Timeline } from "../timeline/mod.ts"; +import { Polling } from "../polling/mod.ts"; import { Thrift as def } from "@evex/linejs-types/thrift"; import type * as LINETypes from "@evex/linejs-types"; +type PollingOption = "talk" | "square"; + export interface ClientInit { /** * version which LINE App to emurating @@ -99,6 +102,7 @@ export class Client extends TypedEventEmitter { readonly e2ee: E2EE; readonly obs: LineObs; readonly timeline: Timeline; + readonly pollingProcess: Polling; readonly auth: AuthService; readonly call: CallService; @@ -117,6 +121,7 @@ export class Client extends TypedEventEmitter { if (!deviceDetails) { throw new Error(`Unsupported device: ${init.device}.`); } + this.storage = init.storage ?? new MemoryStorage(); this.request = new RequestClient({ endpoint: init.endpoint ?? "legy.line-apps.com", @@ -128,6 +133,8 @@ export class Client extends TypedEventEmitter { this.e2ee = new E2EE({ client: this }); this.obs = new LineObs({ client: this }); this.timeline = new Timeline({ client: this }); + this.pollingProcess = new Polling({ client: this }); + this.thrift.def = def; this.device = init.device; this.fetch = init.fetch ?? fetch; @@ -146,7 +153,7 @@ export class Client extends TypedEventEmitter { } log(type: string, data: Record) { - console.log(type, data); + this.emit("log", { type, data }); } getToType(mid: string): number | null { const typeMapping: { [key: string]: number } = { @@ -179,4 +186,14 @@ export class Client extends TypedEventEmitter { async login(options?: LoginOption): Promise { return await this.loginProcess.login(options); } + polling(options: PollingOption[]): Promise { + const promise: Promise[] = []; + if (options.includes("talk")) { + promise.push(this.pollingProcess.talk()); + } + if (options.includes("square")) { + promise.push(this.pollingProcess.square()); + } + return Promise.all(promise); + } } diff --git a/packages/linejs/src/core/utils/events.ts b/packages/linejs/src/core/utils/events.ts index c02b975..179fd0b 100644 --- a/packages/linejs/src/core/utils/events.ts +++ b/packages/linejs/src/core/utils/events.ts @@ -1,4 +1,9 @@ import type * as LINETypes from "@evex/linejs-types"; +import type { + Operation, + SquareMessage, + TalkMessage, +} from "../../polling/events/class.ts"; type LogType = "login" | "request" | "response" | (string & {}); export interface Log { @@ -16,10 +21,9 @@ export type ClientEvents = { "update:cert": (cert: string) => void; "update:qrcert": (qrCert: string) => void; log: (data: Log) => void; - //"square:message": (squareMessage: SquareMessage) => void; - //"square:status": (squareStatus: SquaerStatus) => void; - "square:event": (squareEvent: LINETypes.SquareEvent) => void; - //message: (message: Message) => void; + "square:message": (message: SquareMessage) => void; + "square:event": (event: LINETypes.SquareEvent) => void; + message: (message: TalkMessage) => void; + event: (event: Operation) => void; // TODO: Add more as square - //event: (talkEvent: LINETypes.Operation) => void; }; diff --git a/packages/linejs/src/e2ee/mod.ts b/packages/linejs/src/e2ee/mod.ts index df7b185..80931cc 100644 --- a/packages/linejs/src/e2ee/mod.ts +++ b/packages/linejs/src/e2ee/mod.ts @@ -604,7 +604,12 @@ export class E2EE { messageObj.contentType === LINETypes.enums.ContentType.NONE) && messageObj.chunks ) { - messageObj.text = await this.decryptE2EETextMessage(messageObj); + const [text, meta] = await this.decryptE2EETextMessage(messageObj); + messageObj.text = text; + messageObj.contentMetadata = { + ...messageObj.contentMetadata, + ...meta, + }; } else if ( (messageObj.contentType === "LOCATION" || messageObj.contentType === @@ -623,7 +628,7 @@ export class E2EE { public async decryptE2EETextMessage( messageObj: Message, isSelf = false, - ): Promise { + ): Promise<[string, Record]> { const _from = messageObj.from; const to = messageObj.to; if (_from === this.client.profile?.mid) { @@ -676,8 +681,22 @@ export class E2EE { } else { decrypted = this.decryptE2EEMessageV1(chunks, privK, pubK); } - - return decrypted.text || ""; + const text = decrypted.text || ""; + const meta: Record = {}; + for (const key in decrypted) { + if (key === "text") { + continue; + } + if (Object.prototype.hasOwnProperty.call(decrypted, key)) { + const val = decrypted[key]; + if (typeof val === "string") { + meta[key] = val; + } else { + meta[key] = JSON.stringify(val); + } + } + } + return [text, meta]; } public async decryptE2EELocationMessage( diff --git a/packages/linejs/src/login/mod.ts b/packages/linejs/src/login/mod.ts index a412f25..7951d90 100644 --- a/packages/linejs/src/login/mod.ts +++ b/packages/linejs/src/login/mod.ts @@ -232,7 +232,7 @@ export class Login { if (!EMAIL_REGEX.test(options.email)) { throw new InternalError("RegExpUnmatch", "invalid email"); } - if (PASSWORD_REGEX.test(options.password)) { + if (!PASSWORD_REGEX.test(options.password)) { throw new InternalError("RegExpUnmatch", "invalid password"); } @@ -289,7 +289,7 @@ export class Login { email: string, password: string, constantPincode: string = "114514", - enableE2EE: boolean = false, + enableE2EE: boolean = true, ): Promise { if (constantPincode.length !== 6) { throw new InternalError( diff --git a/packages/linejs/src/polling/events/message-class.ts b/packages/linejs/src/polling/events/message-class.ts index 73fd02d..b756e5e 100644 --- a/packages/linejs/src/polling/events/message-class.ts +++ b/packages/linejs/src/polling/events/message-class.ts @@ -182,7 +182,8 @@ export class Message { constructor(options: { operation?: LINETypes.Operation; - squareEventNotificationMessage?: LINETypes.SquareEventNotificationMessage; + squareEventNotificationMessage?: + LINETypes.SquareEventNotificationMessage; squareEventReceiveMessage?: LINETypes.SquareEventReceiveMessage; squareEventSendMessage?: LINETypes.SquareEventSendMessage; message?: LINETypes.Message; @@ -211,14 +212,16 @@ export class Message { this.sourceType = 0; } else if (squareEventNotificationMessage) { this.rawSource = squareEventNotificationMessage; - this.rawMessage = squareEventNotificationMessage.squareMessage.message; + this.rawMessage = + squareEventNotificationMessage.squareMessage.message; this._senderDisplayName = squareEventNotificationMessage.senderDisplayName; this.sourceType = 1; } else if (squareEventReceiveMessage) { this.rawSource = squareEventReceiveMessage; this.rawMessage = squareEventReceiveMessage.squareMessage.message; - this._senderDisplayName = squareEventReceiveMessage.senderDisplayName; + this._senderDisplayName = + squareEventReceiveMessage.senderDisplayName; this.sourceType = 2; } else if (squareEventSendMessage) { this.rawSource = squareEventSendMessage; @@ -356,9 +359,14 @@ export class Message { splits .sort((a, b) => a.start - b.start) .forEach((e) => { - texts.push({ - text: this.content?.substring(lastSplit, e.start) as string, - }); + if (lastSplit - e.start) { + texts.push({ + text: this.content?.substring( + lastSplit, + e.start, + ) as string, + }); + } const content: decorationText = { text: this.content?.substring(e.start, e.end) as string, }; @@ -542,7 +550,8 @@ export class ClientMessage extends Message { constructor( options: { operation?: LINETypes.Operation; - squareEventNotificationMessage?: LINETypes.SquareEventNotificationMessage; + squareEventNotificationMessage?: + LINETypes.SquareEventNotificationMessage; squareEventReceiveMessage?: LINETypes.SquareEventReceiveMessage; squareEventSendMessage?: LINETypes.SquareEventSendMessage; message?: LINETypes.Message; @@ -735,7 +744,8 @@ export class TalkMessage extends ClientMessage { type: "MESSAGE", contents: { text: this.text, - link: `line://nv/chatMsg?chatId=${this.to}&messageId=${this.id}`, + link: + `line://nv/chatMsg?chatId=${this.to}&messageId=${this.id}`, }, }); } @@ -759,7 +769,8 @@ export class TalkMessage extends ClientMessage { export class SquareMessage extends ClientMessage { constructor( options: { - squareEventNotificationMessage?: LINETypes.SquareEventNotificationMessage; + squareEventNotificationMessage?: + LINETypes.SquareEventNotificationMessage; squareEventReceiveMessage?: LINETypes.SquareEventReceiveMessage; squareEventSendMessage?: LINETypes.SquareEventSendMessage; message?: LINETypes.Message; diff --git a/packages/linejs/src/polling/events/square-class.ts b/packages/linejs/src/polling/events/square-class.ts index 534c126..adc334a 100644 --- a/packages/linejs/src/polling/events/square-class.ts +++ b/packages/linejs/src/polling/events/square-class.ts @@ -130,7 +130,8 @@ export class Square extends TypedEventEmitter { event.payload.notifiedUpdateSquareStatus.squareMid === this.mid ) { - this.status = event.payload.notifiedUpdateSquareStatus.squareStatus; + this.status = + event.payload.notifiedUpdateSquareStatus.squareStatus; this.emit("update", this); this.emit("update:status", this.status); } else if ( @@ -230,6 +231,7 @@ export class SquareChat extends TypedEventEmitter { public status: LINETypes.SquareChatStatusWithoutMessage; public syncToken?: string; public note: Note; + public polling_delay = 1000; constructor( public rawSouce: LINETypes.GetSquareChatResponse, private client: Client, @@ -260,7 +262,7 @@ export class SquareChat extends TypedEventEmitter { this.status = squareChatStatus.otherStatus; this.note = new Note(this.squareMid, this.client); if (polling) { - this.startPolling(); + this.polling(); } if (autoUpdate) { client.on("square:event", (event) => { @@ -280,7 +282,8 @@ export class SquareChat extends TypedEventEmitter { event.payload.notifiedUpdateSquareChat.squareChatMid === this.mid ) { - const { squareChat } = event.payload.notifiedUpdateSquareChat; + const { squareChat } = + event.payload.notifiedUpdateSquareChat; this.mid = squareChat.squareChatMid; this.squareMid = squareChat.squareMid; this.type = squareChat.type; @@ -365,7 +368,7 @@ export class SquareChat extends TypedEventEmitter { /** * @description start listen (fetchSquareChatEvents) */ - public async startPolling(): Promise { + public async polling(): Promise { if (!this.syncToken) { while (true) { const noneEvent = await this.client.square @@ -401,7 +404,8 @@ export class SquareChat extends TypedEventEmitter { ) { const message = new SquareMessage( { - squareEventSendMessage: event.payload.sendMessage, + squareEventSendMessage: + event.payload.sendMessage, }, this.client, ); @@ -412,14 +416,17 @@ export class SquareChat extends TypedEventEmitter { ) { const message = new SquareMessage( { - squareEventReceiveMessage: event.payload.receiveMessage, + squareEventReceiveMessage: + event.payload.receiveMessage, }, this.client, ); this.emit("message", message); } } - await new Promise((resolve) => setTimeout(resolve, 1000)); + await new Promise((resolve) => + setTimeout(resolve, this.polling_delay) + ); } catch (error) { this.client.log("SquareChatPollingError", { error }); await new Promise((resolve) => setTimeout(resolve, 2000)); diff --git a/packages/linejs/src/polling/events/talk-class.ts b/packages/linejs/src/polling/events/talk-class.ts index d45c0a5..90a0af7 100644 --- a/packages/linejs/src/polling/events/talk-class.ts +++ b/packages/linejs/src/polling/events/talk-class.ts @@ -475,7 +475,7 @@ export class Group extends TypedEventEmitter { export class Operation { public rawSource: LINETypes.Operation; protected client?: Client; - public message?: Message | TalkMessage; + public message?: TalkMessage; public revision: number; public createdTime: Date; public type: LINETypes.OpType; @@ -502,8 +502,7 @@ export class Operation { constructor( source: LINETypes.Operation, - client?: Client, - emit: boolean = false, + client: Client, ) { this.rawSource = source; this.client = client; @@ -514,7 +513,7 @@ export class Operation { source.type; this.reqSeq = source.reqSeq; this.status = (parseEnum( - "OpStatus", + "Pb1_EnumC13127p6", source.status, ) as LINETypes.Pb1_EnumC13127p6) || source.status; @@ -528,14 +527,10 @@ export class Operation { source.type === "SEND_MESSAGE" || source.type === "SEND_CONTENT" ) { - if (client) { - this.message = new TalkMessage( - { message: source.message }, - client, - ); - } else { - this.message = new Message({ message: source.message }); - } + this.message = new TalkMessage( + { message: source.message }, + client, + ); } if (source.type == "SEND_CHAT_REMOVED") { this.event = new SendChatRemoved(this); @@ -570,9 +565,6 @@ export class Operation { } else if (source.type == "NOTIFIED_DELETE_OTHER_FROM_CHAT") { this.event = new DeleteOtherFromChat(this); } - if (emit && client) { - // TODO: client.emit("event", source); - } } } diff --git a/packages/linejs/src/polling/mod.ts b/packages/linejs/src/polling/mod.ts index e69de29..aa525b6 100644 --- a/packages/linejs/src/polling/mod.ts +++ b/packages/linejs/src/polling/mod.ts @@ -0,0 +1,131 @@ +import type { Client } from "../core/mod.ts"; +import { Operation, SquareMessage } from "./events/class.ts"; + +export interface SyncData { + square?: string; + talk: { + revision?: number | bigint; + globalRev?: number | bigint; + individualRev?: number | bigint; + }; +} + +function sleep(time: number) { + return new Promise((resolve) => { + setTimeout(resolve, time); + }); +} + +export class Polling { + sync: SyncData = { talk: {} }; + polling_talk = false; + polling_square = false; + polling_delay = 5000; + + client: Client; + constructor(init: { client: Client }) { + this.client = init.client; + } + async square(): Promise { + if (this.polling_square) { + return; + } + this.polling_square = true; + let continuationToken: string | undefined; + while (this.polling_square) { + try { + const response = await this.client.square.fetchMyEvents({ + syncToken: this.sync.square, + continuationToken, + limit: 100, + }); + this.sync.square = response.syncToken; + continuationToken = response.continuationToken; + for (const event of response.events) { + this.client.emit("square:event", event); + if ( + event.type === "NOTIFICATION_MESSAGE" && + event.payload.notificationMessage + ) { + this.client.emit( + "square:message", + new SquareMessage( + { + squareEventNotificationMessage: + event.payload.notificationMessage, + }, + this.client, + ), + ); + } + } + } catch (_e) { + this.client.log("squarePollingError", { error: _e }); + } + await sleep(this.polling_delay); + } + } + + async talk(): Promise { + if (this.polling_talk) { + return; + } + this.polling_talk = true; + while (this.polling_talk) { + try { + const response = await this.client.talk.sync({ + ...this.sync.talk, + limit: 100, + }); + if ( + response.fullSyncResponse && + response.fullSyncResponse.nextRevision + ) { + this.sync.talk.revision = + response.fullSyncResponse.nextRevision; + continue; + } + if ( + response.operationResponse.globalEvents && + response.operationResponse.globalEvents.lastRevision + ) { + this.sync.talk.globalRev = + response.operationResponse.globalEvents.lastRevision; + } + if ( + response.operationResponse.individualEvents && + response.operationResponse.individualEvents.lastRevision + ) { + this.sync.talk.individualRev = + response.operationResponse.individualEvents + .lastRevision; + } + if (!response.operationResponse.operations) { + continue; + } + for (const event of response.operationResponse.operations) { + this.sync.talk.revision = event.revision; + if (event.message) { + event.message = await this.client.e2ee + .decryptE2EEMessage(event.message); + } + const operation = new Operation(event, this.client); + this.client.emit("event", operation); + if ( + (operation.type === "SEND_MESSAGE" || + operation.type === "RECEIVE_MESSAGE") && + operation.message + ) { + this.client.emit( + "message", + operation.message, + ); + } + } + } catch (_e) { + this.client.log("talkPollingError", { error: _e }); + } + await sleep(this.polling_delay); + } + } +} diff --git a/packages/linejs/src/request/mod.ts b/packages/linejs/src/request/mod.ts index 86f3a8b..a9e5dbf 100644 --- a/packages/linejs/src/request/mod.ts +++ b/packages/linejs/src/request/mod.ts @@ -15,6 +15,9 @@ interface RequestClientInit extends ClientInitBase { */ endpoint?: string; } + +const square = ["/SQ1", "/SQLV1"]; + /** * Request Client */ @@ -165,7 +168,7 @@ export class RequestClient { ); } if (parse === true) { - this.client.thrift.rename_data(res); + this.client.thrift.rename_data(res, square.includes(path)); } else if (typeof parse === "string") { res.data.success = this.client.thrift.rename_thrift( parse, diff --git a/packages/linejs/src/service/square/mod.ts b/packages/linejs/src/service/square/mod.ts index 8334f06..431a210 100644 --- a/packages/linejs/src/service/square/mod.ts +++ b/packages/linejs/src/service/square/mod.ts @@ -105,6 +105,7 @@ export class SquareService implements BaseService { async fetchMyEvents( options: { syncToken?: string; + continuationToken?: string; limit?: number; }, ): Promise { @@ -127,6 +128,7 @@ export class SquareService implements BaseService { threadMid?: string; syncToken?: string; limit?: number; + direction?: LINETypes.FetchDirection; }): Promise< LINETypes.SquareService_fetchSquareChatEvents_result["success"] > { @@ -843,7 +845,7 @@ export class SquareService implements BaseService { announcementSeq: 0, contents: { textMessageAnnouncementContents: { - senderMid: options.senderMid, + senderSquareMemberMid: options.senderMid, messageId: options.messageId, text: options.text, }, diff --git a/packages/linejs/src/service/talk/mod.ts b/packages/linejs/src/service/talk/mod.ts index a5b9e1b..23ec5a0 100644 --- a/packages/linejs/src/service/talk/mod.ts +++ b/packages/linejs/src/service/talk/mod.ts @@ -41,7 +41,6 @@ export class TalkService implements BaseService { lastGlobalRevision: globalRev, lastIndividualRevision: individualRev, count: limit, - fullSyncRequestReason: "OTHER", }, }), "sync", diff --git a/packages/linejs/src/storage/denokv.ts b/packages/linejs/src/storage/denokv.ts index 3d3746f..6c8a050 100644 --- a/packages/linejs/src/storage/denokv.ts +++ b/packages/linejs/src/storage/denokv.ts @@ -14,6 +14,11 @@ export class DenoKvStorage extends BaseStorage { super(); if (typeof globalThis.Deno === "undefined") { this.useDeno = false; + } else if (typeof Deno.openKv === "undefined") { + console.warn( + "info: Deno.openKv() is an unstable API.\nhint: Run again with `--unstable-kv` flag to enable this API.", + ); + this.useDeno = false; } this.path = path; } diff --git a/packages/linejs/src/thrift/readwrite/struct.ts b/packages/linejs/src/thrift/readwrite/struct.ts index 000febd..8d66ef2 100644 --- a/packages/linejs/src/thrift/readwrite/struct.ts +++ b/packages/linejs/src/thrift/readwrite/struct.ts @@ -1,8435 +1,6365 @@ -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 ?? []).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 LN0_C11274d( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - , - ]; -} -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 AiQnABotTermsAgreement( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - [8, 1, param.termsVersion], - ]; -} -export function TermsAgreement( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - [12, 1, AiQnABotTermsAgreement(param.aiQnABot)], - ]; -} -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], - [11, 5, param.senderMid], - ]; -} -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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).map((e) => SquareMemberAttribute(e)), - ]], - [14, 3, [ - 8, - (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 ?? []).map((e) => SquareMemberAttribute(e)), - ]], - [15, 3, [12, (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 ?? []).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 ?? []).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 Pb1_W5( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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 Uf_C14856C( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 Qj_C13595l( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - , - ]; -} -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 ?? []).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_m( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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_C23142E( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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 ?? []).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_C12938c( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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 ?? []).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 Pb1_C13208v4( - param?: PartialDeep | undefined, -): NestedArray { - return typeof param === "undefined" ? [] : [ - , - ]; -} -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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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 ?? []).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], - ]; -} + 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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).map(e=>SquareMemberAttribute(e))]], + [14, 3, [8, (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??[]).map(e=>SquareMemberAttribute(e))]], + [15, 3, [12, (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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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??[]).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 diff --git a/packages/linejs/src/thrift/readwrite/write.ts b/packages/linejs/src/thrift/readwrite/write.ts index e22bd48..b154c17 100644 --- a/packages/linejs/src/thrift/readwrite/write.ts +++ b/packages/linejs/src/thrift/readwrite/write.ts @@ -128,11 +128,11 @@ function writeValue( break; case Thrift.Type.BOOL: - if (typeof val !== "boolean") { + if (typeof val !== "boolean" && typeof val !== "number") { throw new TypeError(`ftype=${ftype}: value is not boolean`); } output.writeFieldBegin("", Thrift.Type.BOOL, fid); - output.writeBool(val); + output.writeBool(Boolean(val)); output.writeFieldEnd(); break; diff --git a/packages/linejs/src/timeline/mod.ts b/packages/linejs/src/timeline/mod.ts index 63e4cc3..1ab5e98 100644 --- a/packages/linejs/src/timeline/mod.ts +++ b/packages/linejs/src/timeline/mod.ts @@ -1,5 +1,4 @@ -// deno-lint-ignore no-explicit-any - +// deno-lint-ignore-file no-explicit-any import type { Client } from "../core/mod.ts"; export type TimelineResponse = { code: number; diff --git a/packages/types/line_types.ts b/packages/types/line_types.ts index fec2198..2736e6b 100644 --- a/packages/types/line_types.ts +++ b/packages/types/line_types.ts @@ -1,7902 +1,6204 @@ // deno-lint-ignore-file -/* - * @module - * LINEJS Types - * Autogenerated by gen_typedef.ts - * Time 12/30/2024, 1:05:24 PM - */ - + /* + * @module + * LINEJS Types + * Autogenerated by gen_typedef.ts + * Time 12/30/2024, 3:50:14 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< - 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 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 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: qm_s; + code: qm_s; 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; @@ -7908,79 +6210,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; @@ -7990,70 +6292,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; @@ -8074,89 +6376,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; @@ -8194,23 +6496,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; @@ -8229,27 +6531,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; @@ -8257,79 +6559,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; @@ -8349,119 +6651,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; @@ -8476,35 +6778,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; @@ -8512,66 +6814,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[]; @@ -8582,102 +6884,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; @@ -8689,17 +6991,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; @@ -8707,10 +7009,10 @@ export interface CoinProductItem { displayPrice: string; name: string; desc: string; -} + } export interface CoinPurchaseReservation { - productId: string; + productId: string; country: string; currency: string; price: string; @@ -8718,67 +7020,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; @@ -8801,45 +7103,46 @@ 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; @@ -8852,104 +7155,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; @@ -8959,115 +7262,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; @@ -9075,120 +7378,123 @@ 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; @@ -9197,70 +7503,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; @@ -9269,60 +7575,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; @@ -9330,14 +7636,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; @@ -9345,53 +7651,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; @@ -9401,626 +7707,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; @@ -10028,160 +8334,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; @@ -10199,89 +8505,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; @@ -10290,13 +8596,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; @@ -10307,453 +8613,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[]; @@ -10761,10 +9067,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; @@ -10781,59 +9087,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; @@ -10843,62 +9149,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; @@ -10907,135 +9213,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; @@ -11050,28 +9356,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; @@ -11080,42 +9386,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; @@ -11125,271 +9431,306 @@ 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: any; - byPhone: any; - bySearchId: any; - byUserTicket: any; - groupMemberList: any; - timelineCPF: any; - smartChannelCPF: any; - openchatCPF: any; - beaconBanner: any; - friendRecommendation: any; - homeRecommendation: any; - shareContact: any; - strangerMessage: any; - strangerCall: any; - mentionInChat: any; - timeline: any; - unifiedSearch: any; - lineLab: any; - lineToCall: any; - groupVideo: any; - friendRequest: any; - liveViewer: any; - lineThings: any; - mediaCapture: any; - avatarOASetting: any; - urlScheme: any; - addressBook: any; - unifiedSearchOATab: any; - profileUndefined: any; - DEPRECATED_oaChatHeader: any; - chatMenu: any; - chatHeader: any; - homeTabCPF: any; - chatList: any; - chatNote: any; - chatNoteMenu: any; - walletTabCPF: any; - oaCall: any; - searchIdInUnifiedSearch: any; - newsDigestADCPF: any; - albumCPF: any; - premiumAgreement: any; -} + invalid: AddMetaInvalid; + byPhone: AddMetaByPhone; + bySearchId: AddMetaBySearchId; + byUserTicket: AddMetaByUserTicket; + groupMemberList: AddMetaGroupMemberList; + timelineCPF: LN0_P; + smartChannelCPF: LN0_L; + openchatCPF: LN0_G; + beaconBanner: LN0_C11282h; + friendRecommendation: LN0_C11300q; + homeRecommendation: LN0_C11307u; + shareContact: AddMetaShareContact; + strangerMessage: AddMetaStrangerMessage; + strangerCall: AddMetaStrangerCall; + mentionInChat: AddMetaMentionInChat; + timeline: LN0_O; + unifiedSearch: LN0_Q; + lineLab: LN0_C11313x; + lineToCall: LN0_A; + groupVideo: AddMetaGroupVideoCall; + friendRequest: LN0_r; + liveViewer: LN0_C11315y; + lineThings: LN0_C11316z; + mediaCapture: LN0_B; + avatarOASetting: LN0_C11280g; + urlScheme: LN0_T; + addressBook: LN0_C11276e; + unifiedSearchOATab: LN0_S; + profileUndefined: AddMetaProfileUndefined; + DEPRECATED_oaChatHeader: LN0_F; + chatMenu: LN0_C11294n; + chatHeader: LN0_C11290l; + homeTabCPF: LN0_C11309v; + chatList: LN0_C11292m; + chatNote: AddMetaChatNote; + chatNoteMenu: AddMetaChatNoteMenu; + walletTabCPF: LN0_U; + oaCall: LN0_E; + searchIdInUnifiedSearch: AddMetaSearchIdInUnifiedSearch; + 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: any; - bot: any; - notBlocked: any; -} + user: UserBlockDetail; + bot: BotBlockDetail; + notBlocked: LN0_C11308u0; + } export interface LN0_Z { - user: any; - bot: any; - notFriend: any; -} + user: UserFriendDetail; + bot: BotFriendDetail; + notFriend: LN0_C11310v0; + } export interface LN0_r { -} + + } export interface LN0_y0 { - recommendationDetail: any; - notRecommended: any; -} + recommendationDetail: RecommendationDetail; + notRecommended: LN0_C11312w0; + } export interface LN0_z0 { - sharedChat: any; - reverseFriendByUserId: any; - reverseFriendByQrCode: any; - reverseFriendByPhone: any; -} + 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; @@ -11420,20 +9761,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; @@ -11444,7 +9785,7 @@ export interface LiffViewResponse { launchOptions: number[]; permanentLinkPattern: Qj_a0; subLiffView: SubLiffView; - revisions: Record; + revisions: Record; accessTokenExpiresIn: Int64; accessTokenExpiresInWithRoom: Int64; liffId: string; @@ -11455,27 +9796,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; @@ -11483,21 +9824,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; @@ -11511,10 +9852,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; @@ -11525,33 +9866,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; @@ -11562,64 +9903,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; @@ -11628,77 +9969,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; @@ -11714,25 +10055,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; @@ -11743,100 +10084,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; @@ -11847,27 +10188,30 @@ 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; @@ -11877,31 +10221,33 @@ 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; @@ -11909,249 +10255,262 @@ 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: any; - notModified: any; - notFound: any; -} + 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: any; - notModified: any; - notFound: any; -} + 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: any; - notModified: any; - notFound: any; -} + moduleResponse: ModuleWithStatusResponse; + notModified: NZ0_G0; + notFound: NZ0_F0; + } export interface NZ0_K { - moduleAggregationResponse: any; - notModified: any; -} + moduleAggregationResponse: NZ0_C12209u0; + notModified: NZ0_G0; + } export interface NZ0_M { - moduleAggregationResponse: any; - notModified: any; -} + 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: any; - themeSummary: any; - sticonSummary: any; -} + 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; @@ -12160,45 +10519,46 @@ export interface Ob1_W { shouldShuffle: boolean; includeStickerIds: boolean; shopFilter: ShopFilter; -} + } export interface Ob1_W0 { - promotionBuddyInfo: any; - promotionInstallInfo: any; - promotionMissionInfo: any; -} + 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; @@ -12216,66 +10576,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; @@ -12288,86 +10648,99 @@ 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: any; - lineMeeting: any; -} + 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: any; - paidCallResponse: any; -} + 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; @@ -12377,101 +10750,119 @@ 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: any; - widgetList: any; - web: any; -} + rich: BuddyRichMenuChatBarItem; + widgetList: BuddyWidgetListCharBarItem; + web: BuddyWebChatBarItem; + } export interface Pb1_C13202uc { -} + + } export interface Pb1_C13208v4 { - groupExtra: any; - peerExtra: any; -} + 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; @@ -12480,108 +10871,113 @@ 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: any; - singleValue: any; -} + 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: any; - fullSyncResponse: any; - partialFullSyncResponse: any; -} + 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; @@ -12591,15 +10987,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; @@ -12607,26 +11003,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; @@ -12654,7 +11050,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; @@ -12668,17 +11064,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; @@ -12686,23 +11082,24 @@ 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; @@ -12711,10 +11108,10 @@ export interface ProductSummary { authorId: string; canAutoDownload: boolean; promotionInfo: PromotionInfo; -} + } export interface ProductSummaryForAutoSuggest { - id: string; + id: string; version: Int64; name: string; stickerResourceType: StickerResourceType; @@ -12723,35 +11120,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; @@ -12766,66 +11163,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[]; @@ -12834,131 +11231,134 @@ 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; - chat: any; - squareChat: any; -} + none: any; + chat: LiffChatContext; + squareChat: LiffSquareChatContext; + } export interface Qj_C13599p { - consentRequired: any; - permanentLinkInvalidRequest: any; -} + 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; @@ -12966,680 +11366,686 @@ 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; @@ -13649,53 +12055,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; @@ -13718,7 +12124,7 @@ export interface Settings { contactMyTicket: string; identityProvider: IdentityProvider; identityIdentifier: string; - snsAccounts: Record; + snsAccounts: Record; phoneRegistration: boolean; emailConfirmationStatus: EmailConfirmationStatus; accountMigrationPincodeType: AccountMigrationPincodeType; @@ -13727,7 +12133,7 @@ export interface Settings { allowUnregistrationSecondaryDevice: boolean; pwlessPrimaryCredentialRegistration: boolean; preferenceLocale: string; - customModes: Record; + customModes: Record; e2eeEnable: boolean; hitokotoBackupRequested: boolean; privacyProfileMusicPostToMyhome: boolean; @@ -13766,7 +12172,7 @@ export interface Settings { homeNotificationFavoriteFriendUpdate: boolean; homeNotificationGroupMemberUpdate: boolean; homeNotificationBirthday: boolean; - eapAllowedToConnect: Record; + eapAllowedToConnect: Record; agreementLineOutUse: Int64; agreementLineOutProvideInfo: Int64; notificationShowProfileImage: boolean; @@ -13785,53 +12191,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; @@ -13844,30 +12250,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; @@ -13884,10 +12290,10 @@ export interface Square { adultOnly: BooleanState; svcTags: string[]; createdAt: Int64; -} + } export interface SquareAuthority { - squareMid: string; + squareMid: string; updateSquareProfile: SquareMemberRole; inviteNewMember: SquareMemberRole; approveJoinRequest: SquareMemberRole; @@ -13902,20 +12308,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; @@ -13926,110 +12332,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; @@ -14037,295 +12443,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; @@ -14335,10 +12741,10 @@ export interface SquareEventReceiveMessage { threadTotalMessageCount: Int64; threadLastMessageAt: Int64; contentsAttribute: ContentsAttribute; -} + } export interface SquareEventSendMessage { - squareChatMid: string; + squareChatMid: string; squareMessage: SquareMessage; reqSeq: number; senderDisplayName: string; @@ -14346,19 +12752,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; @@ -14375,26 +12781,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; @@ -14405,15 +12811,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; @@ -14422,72 +12828,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; @@ -14495,52 +12901,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; @@ -14550,36 +12956,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; @@ -14589,15 +12995,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; @@ -14607,69 +13013,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; @@ -14681,21 +13087,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; @@ -14709,104 +13115,108 @@ 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; @@ -14814,31 +13224,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; @@ -14848,46 +13258,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; - senderMid: string; -} + } 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; @@ -14897,2026 +13306,2065 @@ 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: any; - beacon: any; -} + uen: UEN; + beacon: Beacon; + } export interface Uf_C14864f { - regularBadge: any; - urgentBadge: any; -} + regularBadge: RegularBadge; + urgentBadge: UrgentBadge; + } export interface Uf_p { - ad: any; - content: any; - richContent: any; -} + ad: AD; + content: Content; + richContent: RichContent; + } export interface Uf_t { - typeA: any; - typeB: any; -} + 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[]; - callerIdMask: string; -} + } 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; @@ -16926,8 +15374,7 @@ export interface SquareEventPayload { notifiedUpdateSquareChatStatus: SquareEventNotifiedUpdateSquareChatStatus; notifiedCreateSquareMember: SquareEventNotifiedCreateSquareMember; notifiedCreateSquareChatMember: SquareEventNotifiedCreateSquareChatMember; - notifiedUpdateSquareMemberRelation: - SquareEventNotifiedUpdateSquareMemberRelation; + notifiedUpdateSquareMemberRelation: SquareEventNotifiedUpdateSquareMemberRelation; notifiedShutdownSquare: SquareEventNotifiedShutdownSquare; notifiedKickoutFromSquare: SquareEventNotifiedKickoutFromSquare; notifiedDeleteSquareChat: SquareEventNotifiedDeleteSquareChat; @@ -16940,18 +15387,14 @@ 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; @@ -16961,346 +15404,352 @@ 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: SquareMessageReactionStatus; -} + messageReactionStatus: any; + } export interface SquareActivityScore { - cleanScore: SquareCleanScore; -} + cleanScore: any; + } export interface SquareChatAnnouncementContents { - textMessageAnnouncementContents: TextMessageAnnouncementContents; -} + textMessageAnnouncementContents: TextMessageAnnouncementContents; + } export interface TargetChats { - mids: any[]; - categories: any[]; + mids: string[]; + categories: string[]; channelId: number; -} + } export interface TargetUsers { - mids: any[]; -} + mids: string[]; + } export interface TermsAgreement { - aiQnABot: AiQnABotTermsAgreement; -} + 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: any; - executeOnetimeScenario: any; -} + connectDevice: ConnectDeviceOperation; + executeOnetimeScenario: ExecuteOnetimeScenarioOperation; + } export interface do0_C23141D { - gattRead: any; - gattWrite: any; - sleep: any; - disconnect: any; - stopNotification: any; -} + gattRead: GattReadAction; + gattWrite: do0_C23158p; + sleep: SleepAction; + disconnect: do0_C23153k; + stopNotification: StopNotificationAction; + } export interface do0_C23142E { - voidResult: any; - binaryResult: any; -} + 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; @@ -17310,2407 +15759,2440 @@ export interface do0_F { bleNotificationPayload: string; actionResults: do0_C23142E[]; connectionId: string; -} + } export interface do0_I { - immediate: any; - bleNotificationReceived: any; -} + 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: any; - talkroom: any; -} + 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; @@ -19719,10 +18201,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; @@ -19731,633 +18213,635 @@ 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; @@ -20365,71 +18849,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: any; - error: any; -} + response: GetResponse; + error: SettingsException; + } export interface t80_l { - response: any; - error: any; -} + response: SetResponse; + error: SettingsException; + } export interface t80_p { - booleanValue: boolean; + booleanValue: boolean; i64Value: Int64; stringValue: string; stringListValue: any[]; @@ -20442,70 +18926,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; @@ -20514,375 +18998,383 @@ 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 interface LoginResult { - authToken: string; + authToken: string; certificate: string; verifier: string; pinCode: string; @@ -20890,14 +19382,4 @@ export interface LoginResult { lastPrimaryBindTime: Int64; displayMessage: string; sessionForSMSConfirm: VerificationSessionData; -} - -export type LoginResultType = - | 1 - | "SUCCESS" - | 2 - | "REQUIRE_QRCODE" - | 3 - | "REQUIRE_DEVICE_CONFIRM" - | 4 - | "REQUIRE_SMS_CONFIRM"; + } \ No newline at end of file diff --git a/packages/types/thrift.ts b/packages/types/thrift.ts index 6a40236..301fc2f 100644 --- a/packages/types/thrift.ts +++ b/packages/types/thrift.ts @@ -1,37635 +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": "qm_s", - }, - { - "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": "AR0_Sticker", - }, - ], - "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": "LN0_AddMetaInvalid", - }, - { - "fid": 2, - "name": "byPhone", - "struct": "LN0_AddMetaByPhone", - }, - { - "fid": 3, - "name": "bySearchId", - "struct": "LN0_AddMetaBySearchId", - }, - { - "fid": 4, - "name": "byUserTicket", - "struct": "LN0_AddMetaByUserTicket", - }, - { - "fid": 5, - "name": "groupMemberList", - "struct": "LN0_AddMetaGroupMemberList", - }, - { - "fid": 6, - "name": "timelineCPF", - "struct": "LN0_AddMetaTimelineCPF", - }, - { - "fid": 7, - "name": "smartChannelCPF", - "struct": "LN0_AddMetaSmartChannelCPF", - }, - { - "fid": 8, - "name": "openchatCPF", - "struct": "LN0_AddMetaOpenchatCPF", - }, - { - "fid": 9, - "name": "beaconBanner", - "struct": "LN0_AddMetaBeaconBanner", - }, - { - "fid": 10, - "name": "friendRecommendation", - "struct": "LN0_AddMetaFriendRecommendation", - }, - { - "fid": 11, - "name": "homeRecommendation", - "struct": "LN0_AddMetaHomeRecommendation", - }, - { - "fid": 12, - "name": "shareContact", - "struct": "LN0_AddMetaShareContact", - }, - { - "fid": 13, - "name": "strangerMessage", - "struct": "LN0_AddMetaStrangerMessage", - }, - { - "fid": 14, - "name": "strangerCall", - "struct": "LN0_AddMetaStrangerCall", - }, - { - "fid": 15, - "name": "mentionInChat", - "struct": "LN0_AddMetaMentionInChat", - }, - { - "fid": 16, - "name": "timeline", - "struct": "LN0_AddMetaTimeline", - }, - { - "fid": 17, - "name": "unifiedSearch", - "struct": "LN0_AddMetaUnifiedSearch", - }, - { - "fid": 18, - "name": "lineLab", - "struct": "LN0_AddMetaLineLab", - }, - { - "fid": 19, - "name": "lineToCall", - "struct": "LN0_AddMetaLineToCall", - }, - { - "fid": 20, - "name": "groupVideo", - "struct": "LN0_AddMetaGroupVideoCall", - }, - { - "fid": 21, - "name": "friendRequest", - "struct": "LN0_AddMetaFriendRequest", - }, - { - "fid": 22, - "name": "liveViewer", - "struct": "LN0_AddMetaLineLiveViewer", - }, - { - "fid": 23, - "name": "lineThings", - "struct": "LN0_AddMetaLineThings", - }, - { - "fid": 24, - "name": "mediaCapture", - "struct": "LN0_AddMetaMediaCapture", - }, - { - "fid": 25, - "name": "avatarOASetting", - "struct": "LN0_AddMetaAvatarOASetting", - }, - { - "fid": 26, - "name": "urlScheme", - "struct": "LN0_AddMetaUrlScheme", - }, - { - "fid": 27, - "name": "addressBook", - "struct": "LN0_AddMetaAddressBook", - }, - { - "fid": 28, - "name": "unifiedSearchOATab", - "struct": "LN0_AddMetaUnifiedSearchOATab", - }, - { - "fid": 29, - "name": "profileUndefined", - "struct": "LN0_AddMetaProfileUndefined", - }, - { - "fid": 30, - "name": "DEPRECATED_oaChatHeader", - "struct": "LN0_AddMetaOAChatHeader", - }, - { - "fid": 31, - "name": "chatMenu", - "struct": "LN0_AddMetaChatMenu", - }, - { - "fid": 32, - "name": "chatHeader", - "struct": "LN0_AddMetaChatHeader", - }, - { - "fid": 33, - "name": "homeTabCPF", - "struct": "LN0_AddMetaHomeTabCPF", - }, - { - "fid": 34, - "name": "chatList", - "struct": "LN0_AddMetaChatList", - }, - { - "fid": 35, - "name": "chatNote", - "struct": "LN0_AddMetaChatNote", - }, - { - "fid": 36, - "name": "chatNoteMenu", - "struct": "LN0_AddMetaChatNoteMenu", - }, - { - "fid": 37, - "name": "walletTabCPF", - "struct": "LN0_AddMetaWalletTabCPF", - }, - { - "fid": 38, - "name": "oaCall", - "struct": "LN0_AddMetaOACall", - }, - { - "fid": 39, - "name": "searchIdInUnifiedSearch", - "struct": "LN0_AddMetaSearchIdInUnifiedSearch", - }, - { - "fid": 40, - "name": "newsDigestADCPF", - "struct": "LN0_AddMetaNewsDigestADCPF", - }, - { - "fid": 41, - "name": "albumCPF", - "struct": "LN0_AddMetaAlbumCPF", - }, - { - "fid": 42, - "name": "premiumAgreement", - "struct": "LN0_AddMetaPremiumAgreement", - }, - ], - "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": "LN0_UserBlockDetail", - }, - { - "fid": 2, - "name": "bot", - "struct": "LN0_BotBlockDetail", - }, - { - "fid": 3, - "name": "notBlocked", - "struct": "LN0_NotBlocked", - }, - ], - "LN0_Z": [ - { - "fid": 1, - "name": "user", - "struct": "LN0_UserFriendDetail", - }, - { - "fid": 2, - "name": "bot", - "struct": "LN0_BotFriendDetail", - }, - { - "fid": 3, - "name": "notFriend", - "struct": "LN0_NotFriend", - }, - ], - "LN0_r": [], - "LN0_y0": [ - { - "fid": 1, - "name": "recommendationDetail", - "struct": "LN0_RecommendationDetail", - }, - { - "fid": 2, - "name": "notRecommended", - "struct": "LN0_NotRecommended", - }, - ], - "LN0_z0": [ - { - "fid": 1, - "name": "sharedChat", - "struct": "LN0_RecommendationReasonSharedChat", - }, - { - "fid": 2, - "name": "reverseFriendByUserId", - "struct": "LN0_RecommendationReasonReverseFriendByUserId", - }, - { - "fid": 3, - "name": "reverseFriendByQrCode", - "struct": "LN0_RecommendationReasonReverseFriendByQRCode", - }, - { - "fid": 4, - "name": "reverseFriendByPhone", - "struct": "LN0_RecommendationReasonReverseFriendByPhone", - }, - ], - "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_ModuleLayoutV4Response", - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_com_linecorp_wallet_api_NotModified", - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_com_linecorp_wallet_api_NotFound", - }, - ], - "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": "NZ0_ModuleResponse", - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_com_linecorp_wallet_api_NotModified", - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_com_linecorp_wallet_api_NotFound", - }, - ], - "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": "NZ0_ModuleWithStatusResponse", - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_com_linecorp_wallet_api_NotModified", - }, - { - "fid": 3, - "name": "notFound", - "struct": "NZ0_com_linecorp_wallet_api_NotFound", - }, - ], - "NZ0_K": [ - { - "fid": 1, - "name": "moduleAggregationResponse", - "struct": "NZ0_ModuleAggregationResponseV2", - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_com_linecorp_wallet_api_NotModified", - }, - ], - "NZ0_M": [ - { - "fid": 1, - "name": "moduleAggregationResponse", - "struct": "NZ0_ModuleWithStatusAggregationResponse", - }, - { - "fid": 2, - "name": "notModified", - "struct": "NZ0_com_linecorp_wallet_api_NotModified", - }, - ], - "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": "Ob1_StickerDisplayData", - }, - ], - "Ob1_G": [], - "Ob1_H0": [ - { - "fid": 1, - "name": "lpPromotionProperty", - "struct": "Ob1_LpPromotionProperty", - }, - ], - "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": "Ob1_StickerSummary", - }, - { - "fid": 2, - "name": "themeSummary", - "struct": "Ob1_ThemeSummary", - }, - { - "fid": 3, - "name": "sticonSummary", - "struct": "Ob1_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": "Ob1_PromotionBuddyInfo", - }, - { - "fid": 2, - "name": "promotionInstallInfo", - "struct": "Ob1_PromotionInstallInfo", - }, - { - "fid": 3, - "name": "promotionMissionInfo", - "struct": "Ob1_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": "Pb1_AbuseReport", - }, - { - "fid": 2, - "name": "lineMeeting", - "struct": "Pb1_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": "Pb1_CallRoute", - }, - { - "fid": 2, - "name": "paidCallResponse", - "struct": "Pb1_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": "Pb1_BuddyRichMenuChatBarItem", - }, - { - "fid": 2, - "name": "widgetList", - "struct": "Pb1_BuddyWidgetListCharBarItem", - }, - { - "fid": 3, - "name": "web", - "struct": "Pb1_BuddyWebChatBarItem", - }, - ], - "Pb1_C13202uc": [], - "Pb1_C13208v4": [ - { - "fid": 1, - "name": "groupExtra", - "struct": "Pb1_GroupExtra", - }, - { - "fid": 2, - "name": "peerExtra", - "struct": "Pb1_PeerExtra", - }, - ], - "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": "Pb1_E2EEMetadata", - }, - { - "fid": 2, - "name": "singleValue", - "struct": "Pb1_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": "Pb1_OperationResponse", - }, - { - "fid": 2, - "name": "fullSyncResponse", - "struct": "Pb1_FullSyncResponse", - }, - { - "fid": 3, - "name": "partialFullSyncResponse", - "struct": "Pb1_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": "Qj_LiffChatContext", - }, - { - "fid": 3, - "name": "squareChat", - "struct": "Qj_LiffSquareChatContext", - }, - ], - "Qj_C13599p": [ - { - "fid": 3, - "name": "consentRequired", - "struct": "Qj_LiffErrorConsentRequired", - }, - { - "fid": 4, - "name": "permanentLinkInvalidRequest", - "struct": "Qj_LiffErrorPermanentLinkInvalidRequest", - }, - ], - "Qj_C13602t": [ - { - "fid": 1, - "name": "externalService", - "struct": "Qj_LiffFIDOExternalService", - }, - ], - "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, - }, - { - "fid": 5, - "name": "senderMid", - "type": 11, - }, - ], - "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": "Uf_UEN", - }, - { - "fid": 2, - "name": "beacon", - "struct": "Uf_Beacon", - }, - ], - "Uf_C14864f": [ - { - "fid": 1, - "name": "regularBadge", - "struct": "Uf_RegularBadge", - }, - { - "fid": 2, - "name": "urgentBadge", - "struct": "Uf_UrgentBadge", - }, - ], - "Uf_p": [ - { - "fid": 1, - "name": "ad", - "struct": "Uf_AD", - }, - { - "fid": 2, - "name": "content", - "struct": "Uf_Content", - }, - { - "fid": 3, - "name": "richContent", - "struct": "Uf_RichContent", - }, - ], - "Uf_t": [ - { - "fid": 1, - "name": "typeA", - "struct": "Uf_RichItem", - }, - { - "fid": 2, - "name": "typeB", - "struct": "Uf_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", - }, - { - "fid": 8, - "name": "callerIdMask", - "type": 11, - }, - ], - "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": "SquareMessageReactionStatus", - }, - ], - "SquareActivityScore": [ - { - "fid": 1, - "name": "cleanScore", - "struct": "SquareCleanScore", - }, - ], - "SquareChatAnnouncementContents": [ - { - "fid": 1, - "name": "textMessageAnnouncementContents", - "struct": "TextMessageAnnouncementContents", - }, - ], - "TargetChats": [ - { - "fid": 1, - "name": "mids", - "set": "_any", - }, - { - "fid": 2, - "name": "categories", - "set": "_any", - }, - { - "fid": 3, - "name": "channelId", - "type": 8, - }, - ], - "TargetUsers": [ - { - "fid": 1, - "name": "mids", - "set": "_any", - }, - ], - "TermsAgreement": [ - { - "fid": 1, - "name": "aiQnABot", - "struct": "AiQnABotTermsAgreement", - }, - ], - "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": "do0_ConnectDeviceOperation", - }, - { - "fid": 2, - "name": "executeOnetimeScenario", - "struct": "do0_ExecuteOnetimeScenarioOperation", - }, - ], - "do0_C23141D": [ - { - "fid": 1, - "name": "gattRead", - "struct": "do0_GattReadAction", - }, - { - "fid": 2, - "name": "gattWrite", - "struct": "do0_GattWriteAction", - }, - { - "fid": 3, - "name": "sleep", - "struct": "do0_SleepAction", - }, - { - "fid": 4, - "name": "disconnect", - "struct": "do0_DisconnectAction", - }, - { - "fid": 5, - "name": "stopNotification", - "struct": "do0_StopNotificationAction", - }, - ], - "do0_C23142E": [ - { - "fid": 1, - "name": "voidResult", - "struct": "do0_VoidScenarioActionResult", - }, - { - "fid": 2, - "name": "binaryResult", - "struct": "do0_BinaryScenarioActionResult", - }, - ], - "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_ImmediateTrigger", - }, - { - "fid": 2, - "name": "bleNotificationReceived", - "struct": "do0_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": "kf_RichmenuEvent", - }, - { - "fid": 2, - "name": "talkroom", - "struct": "kf_TalkroomEvent", - }, - ], - "kf_w": [ - { - "fid": 1, - "name": "profileRefererContent", - "struct": "kf_ProfileRefererContent", - }, - ], - "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": "t80_GetResponse", - }, - { - "fid": 2, - "name": "error", - "struct": "t80_SettingsException", - }, - ], - "t80_l": [ - { - "fid": 1, - "name": "response", - "struct": "t80_SetResponse", - }, - { - "fid": 2, - "name": "error", - "struct": "t80_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": "zR0_Sticker", - }, - ], - "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", - }, - ], - "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", - }, - ], - "LoginResultType": { - "1": "SUCCESS", - "2": "REQUIRE_QRCODE", - "3": "REQUIRE_DEVICE_CONFIRM", - "4": "REQUIRE_SMS_CONFIRM", - }, -}; + "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": "qm_s" + }, + { + "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 diff --git a/resources/line/line.thrift b/resources/line/line.thrift index ba474d1..2fb9806 100644 --- a/resources/line/line.thrift +++ b/resources/line/line.thrift @@ -5,22 +5,26 @@ enum AR0_g { INTERNAL_SERVER_ERROR = 20737; SERVICE_UNAVAILABLE = 20739; } + enum AR0_q { NOT_PURCHASED = 0; SUBSCRIPTION = 1; } + enum AccountMigrationPincodeType { NOT_APPLICABLE = 0; NOT_SET = 1; SET = 2; NEED_ENFORCED_INPUT = 3; } + enum AccountMigrationPincodeType { NOT_APPLICABLE = 0; NOT_SET = 1; SET = 2; NEED_ENFORCED_INPUT = 3; } + enum ApplicationType { IOS = 16; IOS_RC = 17; @@ -152,6 +156,7 @@ enum ApplicationType { WEAROS_BETA = 546; WEAROS_ALPHA = 547; } + enum ApplicationType { IOS = 16; IOS_RC = 17; @@ -283,12 +288,14 @@ enum ApplicationType { WEAROS_BETA = 546; WEAROS_ALPHA = 547; } + enum BotType { RESERVED = 0; OFFICIAL = 1; LINE_AT_0 = 2; LINE_AT = 3; } + enum CarrierCode { NOT_SPECIFIED = 0; JP_DOCOMO = 1; @@ -304,6 +311,7 @@ enum CarrierCode { JP_MVNO = 8; JP_USER_SELECTED_LINE = 9; } + enum ChannelErrorCode { ILLEGAL_ARGUMENT = 0; INTERNAL_ERROR = 1; @@ -314,12 +322,14 @@ enum ChannelErrorCode { WEBVIEW_NOT_ALLOWED = 6; NOT_AVAILABLE_API = 7; } + enum ContactAttribute { CONTACT_ATTRIBUTE_CAPABLE_VOICE_CALL = 1; CONTACT_ATTRIBUTE_CAPABLE_VIDEO_CALL = 2; CONTACT_ATTRIBUTE_CAPABLE_MY_HOME = 16; CONTACT_ATTRIBUTE_CAPABLE_BUDDY = 32; } + enum ContactSetting { CONTACT_SETTING_NOTIFICATION_DISABLE = 1; CONTACT_SETTING_DISPLAY_NAME_OVERRIDE = 2; @@ -329,6 +339,7 @@ enum ContactSetting { CONTACT_SETTING_FRIEND_RINGTONE = 32; CONTACT_SETTING_FRIEND_RINGBACK_TONE = 64; } + enum ContactStatus { UNSPECIFIED = 0; FRIEND = 1; @@ -338,6 +349,7 @@ enum ContactStatus { DELETED = 5; DELETED_BLOCKED = 6; } + enum ContactStatus { UNSPECIFIED = 0; FRIEND = 1; @@ -347,6 +359,7 @@ enum ContactStatus { DELETED = 5; DELETED_BLOCKED = 6; } + enum ContactType { MID = 0; PHONE = 1; @@ -367,6 +380,7 @@ enum ContactType { BBM = 2309; BEACON = 11; } + enum ContentType { NONE = 0; IMAGE = 1; @@ -392,17 +406,20 @@ enum ContentType { EXTIMAGE = 21; FLEX = 22; } + enum Eg_EnumC8927a { NEW = 1; UPDATE = 2; EVENT = 3; } + enum EmailConfirmationStatus { NOT_SPECIFIED = 0; NOT_YET = 1; DONE = 3; NEED_ENFORCED_INPUT = 4; } + enum ErrorCode { ILLEGAL_ARGUMENT = 0; AUTHENTICATION_FAILED = 1; @@ -525,6 +542,7 @@ enum ErrorCode { INCOMPATIBLE_APP_TYPE = 124; NOT_PREMIUM = 125; } + enum Fg_a { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -537,18 +555,21 @@ enum Fg_a { APP_UPGRADE_REQUIRED = 101; NO_CONTENT = 102; } + enum FriendRequestStatus { NONE = 0; AVAILABLE = 1; ALREADY_REQUESTED = 2; UNAVAILABLE = 3; } + enum IdentityProvider { UNKNOWN = 0; LINE = 1; NAVER_KR = 2; LINE_PHONE = 3; } + enum LN0_F0 { UNKNOWN = 0; INVALID_TARGET_USER = 1; @@ -558,10 +579,12 @@ enum LN0_F0 { MALFORMED_REQUEST = 5; TRACKING_META_QRCODE_FAVORED = 6; } + enum LN0_X0 { USER = 1; BOT = 2; } + enum MIDType { USER = 0; ROOM = 1; @@ -572,6 +595,7 @@ enum MIDType { BOT = 6; SQUARE_THREAD = 7; } + enum NZ0_B0 { PAY = 0; POI = 1; @@ -582,6 +606,7 @@ enum NZ0_B0 { SCO = 6; POC = 7; } + enum NZ0_C0 { OK = 0; MAINTENANCE = 1; @@ -591,51 +616,61 @@ enum NZ0_C0 { INTERNAL_ERROR = 5; WALLET_CMS_MAINTENANCE = 6; } + enum NZ0_EnumC12154b1 { NORMAL = 0; CAMERA = 1; } + enum NZ0_EnumC12169g1 { WALLET = 101; ASSET = 201; SHOPPING = 301; } + enum NZ0_EnumC12170h { HIDE_BADGE = 0; SHOW_BADGE = 1; } + enum NZ0_EnumC12188n { OK = 0; UNAVAILABLE = 1; DUPLICATAE_REGISTRATION = 2; INTERNAL_ERROR = 3; } + enum NZ0_EnumC12192o0 { LV1 = 0; LV2 = 1; LV3 = 2; LV9 = 3; } + enum NZ0_EnumC12193o1 { AUTHENTICATION_FAILED = 401; INTERNAL_SERVER_ERROR = 500; SERVICE_IN_MAINTENANCE_MODE = 503; INVALID_PARAMETER = 400; } + enum NZ0_EnumC12195p0 { ALIVE = 1; SUSPENDED = 2; UNREGISTERED = 3; } + enum NZ0_EnumC12197q { PREFIX = 0; SUFFIX = 1; } + enum NZ0_EnumC12218x0 { NO_CONTENT = 0; OK = 1; ERROR = 2; } + enum NZ0_I0 { A = 0; B = 1; @@ -643,22 +678,27 @@ enum NZ0_I0 { D = 3; UNKNOWN = 4; } + enum NZ0_K0 { POCKET_MONEY = 0; REFINANCE = 1; } + enum NZ0_N0 { COMPACT = 0; EXPANDED = 1; } + enum NZ0_S0 { CARD = 0; ACTION = 1; } + enum NZ0_W0 { OK = 0; INTERNAL_ERROR = 1; } + enum NotificationStatus { NOTIFICATION_ITEM_EXIST = 1; TIMELINE_ITEM_EXIST = 2; @@ -684,6 +724,7 @@ enum NotificationStatus { VOOM_LIVE_STATE_CHANGED = 2097152; VOOM_ACTIVITY_REWARD_ITEM_EXIST = 4194304; } + enum NotificationType { APPLE_APNS = 1; GOOGLE_C2DM = 2; @@ -704,23 +745,28 @@ enum NotificationType { CLOVA_VOIP = 23; HUAWEI_HCM = 24; } + enum Ob1_B0 { FOREGROUND = 0; BACKGROUND = 1; } + enum Ob1_C1 { NORMAL = 0; BIG = 1; } + enum Ob1_D0 { PURCHASE_ONLY = 0; PURCHASE_OR_SUBSCRIPTION = 1; SUBSCRIPTION_ONLY = 2; } + enum Ob1_EnumC12607a1 { DEFAULT = 1; VIEW_VIDEO = 2; } + enum Ob1_EnumC12610b1 { NONE = 0; BUDDY = 2; @@ -728,21 +774,25 @@ enum Ob1_EnumC12610b1 { MISSION = 4; MUSTBUY = 5; } + enum Ob1_EnumC12631i1 { UNKNOWN = 0; PRODUCT = 1; USER = 2; PREMIUM_USER = 3; } + enum Ob1_EnumC12638l { VALID = 0; INVALID = 1; } + enum Ob1_EnumC12641m { PREMIUM = 1; VERIFIED = 2; UNVERIFIED = 3; } + enum Ob1_EnumC12652p1 { UNKNOWN = 0; NONE = 1; @@ -768,6 +818,7 @@ enum Ob1_EnumC12652p1 { SERVICE_IN_MAINTENANCE_MODE = 20738; SERVICE_UNAVAILABLE = 20739; } + enum Ob1_EnumC12656r0 { OK = 0; PRODUCT_UNSUPPORTED = 1; @@ -776,6 +827,7 @@ enum Ob1_EnumC12656r0 { CHARACTER_COUNT_LIMIT_EXCEEDED = 4; CONTAINS_INVALID_WORD = 5; } + enum Ob1_EnumC12664u { UNKNOWN = 0; NONE = 1; @@ -789,6 +841,7 @@ enum Ob1_EnumC12664u { INTERNAL_SERVER_ERROR = 20737; SERVICE_UNAVAILABLE = 20739; } + enum Ob1_EnumC12666u1 { POPULAR = 0; NEW_RELEASE = 1; @@ -806,20 +859,24 @@ enum Ob1_EnumC12666u1 { CPD_STICKER = 13; POPULAR_WITH_FREE = 14; } + enum Ob1_F1 { STATIC = 1; ANIMATION = 2; } + enum Ob1_I { STATIC = 0; POPULAR = 1; NEW_RELEASE = 2; } + enum Ob1_J0 { ON_SALE = 0; OUTDATED_VERSION = 1; NOT_ON_SALE = 2; } + enum Ob1_J1 { OK = 0; INVALID_PARAMETER = 1; @@ -828,6 +885,7 @@ enum Ob1_J1 { CONFLICT = 4; NOT_ELIGIBLE = 5; } + enum Ob1_K1 { GOOGLE = 0; APPLE = 1; @@ -838,6 +896,7 @@ enum Ob1_K1 { TW_CHT = 6; FREEMIUM = 7; } + enum Ob1_M1 { OK = 0; UNKNOWN = 1; @@ -851,29 +910,35 @@ enum Ob1_M1 { ACCOUNT_HOLD = 9; RETRY_STATE = 10; } + enum Ob1_O0 { STICKER = 1; THEME = 2; STICON = 3; } + enum Ob1_O1 { AVAILABLE = 0; DIFFERENT_STORE = 1; NOT_STUDENT = 2; ALREADY_PURCHASED = 3; } + enum Ob1_P1 { GENERAL = 1; STUDENT = 2; } + enum Ob1_Q1 { BASIC = 1; DELUXE = 2; } + enum Ob1_R1 { MONTHLY = 1; YEARLY = 2; } + enum Ob1_U1 { OK = 0; UNKNOWN = 1; @@ -883,15 +948,18 @@ enum Ob1_U1 { EXCEEDS_LIMIT = 5; NOT_AVAILABLE = 6; } + enum Ob1_V1 { DATE_ASC = 1; DATE_DESC = 2; } + enum Ob1_X1 { GENERAL = 0; CREATORS = 1; STICON = 2; } + enum Ob1_a2 { NOT_PURCHASED = 0; SUBSCRIPTION = 1; @@ -900,10 +968,12 @@ enum Ob1_a2 { NOT_PURCHASED_U2I = 4; BUDDY = 5; } + enum Ob1_c2 { STATIC = 1; ANIMATION = 2; } + enum OpType { END_OF_OPERATION = 0; UPDATE_PROFILE = 1; @@ -1043,10 +1113,12 @@ enum OpType { DELETE_PROFILE_MAPPING = 151; NOTIFIED_DESTROY_NOTICENTER_PUSH = 152; } + enum P70_g { INVALID_REQUEST = 1000; RETRY_REQUIRED = 1001; } + enum PaidCallType { OUT = 0; IN = 1; @@ -1057,6 +1129,7 @@ enum PaidCallType { OA = 6; OAM = 7; } + enum PayloadType { PAYLOAD_BUY = 101; PAYLOAD_CS = 111; @@ -1065,12 +1138,14 @@ enum PayloadType { PAYLOAD_POINT_AUTO_EXCHANGED = 141; PAYLOAD_POINT_MANUAL_EXCHANGED = 151; } + enum Pb1_A0 { NORMAL = 0; VIDEOCAM = 1; VOIP = 2; RECORD = 3; } + enum Pb1_A3 { UNKNOWN = 0; BACKGROUND_NEW_KEY_CREATED = 1; @@ -1078,21 +1153,25 @@ enum Pb1_A3 { FOREGROUND_NEW_PIN_REGISTERED = 3; FOREGROUND_VERIFICATION = 4; } + enum Pb1_B { SIRI = 1; GOOGLE_ASSISTANT = 2; OS_SHARE = 3; } + enum Pb1_D0 { RICH_MENU_ID = 0; STATUS_BAR = 1; BUDDY_CAUTION_NOTICE = 2; } + enum Pb1_D4 { AUDIO = 1; VIDEO = 2; FACEPLAY = 3; } + enum Pb1_D6 { GOOGLE = 0; BAIDU = 1; @@ -1100,21 +1179,25 @@ enum Pb1_D6 { YAHOOJAPAN = 3; KINGWAY = 4; } + enum Pb1_E7 { UNKNOWN = 0; TALK = 1; SQUARE = 2; } + enum Pb1_EnumC12917a6 { UNKNOWN = 0; APP_FOREGROUND = 1; PERIODIC = 2; MANUAL = 3; } + enum Pb1_EnumC12926b1 { NOT_A_FRIEND = 0; ALWAYS = 1; } + enum Pb1_EnumC12941c2 { BLE_LCS_API_USABLE = 26; PROHIBIT_MINIMIZE_CHANNEL_BROWSER = 27; @@ -1122,54 +1205,65 @@ enum Pb1_EnumC12941c2 { PURCHASE_LCS_API_USABLE = 38; ALLOW_ANDROID_ENABLE_ZOOM = 48; } + enum Pb1_EnumC12945c6 { V1 = 1; V2 = 2; } + enum Pb1_EnumC12970e3 { USER_AGE_CHECKED = 1; USER_APPROVAL_REQUIRED = 2; } + enum Pb1_EnumC12997g2 { PROFILE = 0; FRIENDS = 1; GROUP = 2; } + enum Pb1_EnumC12998g3 { UNKNOWN = 0; WIFI = 1; CELLULAR_NETWORK = 2; } + enum Pb1_EnumC13009h0 { NORMAL = 1; LOW_BATTERY = 2; } + enum Pb1_EnumC13010h1 { NEW = 1; PLANET = 2; } + enum Pb1_EnumC13015h6 { FORWARD = 0; AUTO_REPLY = 1; SUBORDINATE = 2; REPLY = 3; } + enum Pb1_EnumC13022i { SKIP = 0; PINCODE = 1; SECURITY_CENTER = 2; } + enum Pb1_EnumC13029i6 { ADD = 0; REMOVE = 1; MODIFY = 2; } + enum Pb1_EnumC13037j0 { UNSPECIFIED = 0; INACTIVE = 1; ACTIVE = 2; DELETED = 3; } + enum Pb1_EnumC13050k { UNKNOWN = 0; IOS_REDUCED_ACCURACY = 1; @@ -1177,19 +1271,23 @@ enum Pb1_EnumC13050k { AOS_PRECISE_LOCATION = 3; AOS_APPROXIMATE_LOCATION = 4; } + enum Pb1_EnumC13082m3 { SHOW = 0; HIDE = 1; } + enum Pb1_EnumC13093n0 { NONE = 0; TOP = 1; } + enum Pb1_EnumC13127p6 { NORMAL = 0; ALERT_DISABLED = 1; ALWAYS = 2; } + enum Pb1_EnumC13128p7 { UNKNOWN = 0; DIRECT_INVITATION = 1; @@ -1204,27 +1302,32 @@ enum Pb1_EnumC13128p7 { ROOM_CHAT_SELECTED = 10; DEPRECATED = 11; } + enum Pb1_EnumC13148r0 { ALWAYS_HIDDEN = 1; ALWAYS_SHOWN = 2; SHOWN_BY_CONDITION = 3; } + enum Pb1_EnumC13151r3 { ONEWAY = 0; BOTH = 1; NOT_REGISTERED = 2; } + enum Pb1_EnumC13162s0 { NOT_SUSPICIOUS = 1; SUSPICIOUS_00 = 2; SUSPICIOUS_01 = 3; } + enum Pb1_EnumC13196u6 { COIN = 0; CREDIT = 1; MONTHLY = 2; OAM = 3; } + enum Pb1_EnumC13209v5 { DUMMY = 0; NOTICE = 1; @@ -1277,21 +1380,25 @@ enum Pb1_EnumC13209v5 { TIMELINESTORY_OA = 48; TRAVEL = 49; } + enum Pb1_EnumC13221w3 { UNKNOWN = 0; EUROPEAN_ECONOMIC_AREA = 1; } + enum Pb1_EnumC13222w4 { OBS_VIDEO = 1; OBS_GENERAL = 2; OBS_RINGBACK_TONE = 3; } + enum Pb1_EnumC13237x5 { AUDIO = 1; VIDEO = 2; LIVE = 3; PHOTOBOOTH = 4; } + enum Pb1_EnumC13238x6 { NOT_SPECIFIED = 0; VALID = 1; @@ -1300,10 +1407,12 @@ enum Pb1_EnumC13238x6 { LIMIT_EXCEEDED = 4; LIMIT_EXCEEDED_AND_VERIFICATION_REQUIRED = 5; } + enum Pb1_EnumC13251y5 { STANDARD = 1; CONSTELLA = 2; } + enum Pb1_EnumC13252y6 { ALL = 0; PROFILE = 1; @@ -1314,44 +1423,53 @@ enum Pb1_EnumC13252y6 { E2EE = 6; MESSAGE = 7; } + enum Pb1_EnumC13260z0 { ON_AIR = 0; LIVE = 1; GLP = 2; } + enum Pb1_EnumC13267z7 { ALL = 255; NOTIFICATION_SETTING = 1; } + enum Pb1_F0 { NA = 0; FRIEND_VIEW = 1; OFFICIAL_ACCOUNT_VIEW = 2; } + enum Pb1_F4 { INCOMING = 1; OUTGOING = 2; } + enum Pb1_F5 { UNKNOWN = 0; SUCCESS = 1; REQUIRE_SERVER_SIDE_EMAIL = 2; REQUIRE_CLIENT_SIDE_EMAIL = 3; } + enum Pb1_F6 { JBU = 0; LIP = 1; } + enum Pb1_G3 { PROMOTION_FRIENDS_INVITE = 1; CAPABILITY_SERVER_SIDE_SMS = 2; LINE_CLIENT_ANALYTICS_CONFIGURATION = 3; } + enum Pb1_G4 { TIMELINE = 1; NEARBY = 2; SQUARE = 3; } + enum Pb1_G6 { NICE = 2; LOVE = 3; @@ -1360,15 +1478,18 @@ enum Pb1_G6 { SAD = 6; OMG = 7; } + enum Pb1_H6 { PUBLIC = 0; PRIVATE = 1; } + enum Pb1_I6 { NEVER_SHOW = 0; ONE_WAY = 1; MUTUAL = 2; } + enum Pb1_J4 { OTHER = 0; INITIALIZATION = 1; @@ -1376,12 +1497,14 @@ enum Pb1_J4 { MANUAL_SYNC = 3; LOCAL_DB_CORRUPTED = 4; } + enum Pb1_K2 { ALL = 255; CHANNEL_INFO = 1; CHANNEL_TOKEN = 2; COMMON_DOMAIN = 4; } + enum Pb1_K6 { ALL = 2147483647; EMAIL = 1; @@ -1395,11 +1518,13 @@ enum Pb1_K6 { MUSIC_PROFILE = 256; AVATAR_PROFILE = 512; } + enum Pb1_L2 { SYNC = 0; REMOVE = 1; REMOVE_ALL = 2; } + enum Pb1_L4 { UNKNOWN = 0; REVISION_GAP_TOO_LARGE_CLIENT = 1; @@ -1408,10 +1533,12 @@ enum Pb1_L4 { REVISION_HOLE = 4; FORCE_TRIGGERED = 5; } + enum Pb1_M6 { OWNER = 0; FRIEND = 1; } + enum Pb1_N6 { NFT = 1; AVATAR = 2; @@ -1419,6 +1546,7 @@ enum Pb1_N6 { ARCZ = 4; FRENZ = 5; } + enum Pb1_O2 { NAME = 1; PICTURE_STATUS = 2; @@ -1428,19 +1556,23 @@ enum Pb1_O2 { FAVORITE_TIMESTAMP = 32; CHAT_TYPE = 64; } + enum Pb1_O6 { DEFAULT = 1; MULTI_PROFILE = 2; } + enum Pb1_P6 { HIDDEN = 0; PUBLIC = 1000; } + enum Pb1_Q2 { BACKGROUND = 0; KEYWORD = 1; CONTENT_METADATA_TAG_BASED = 2; } + enum Pb1_R3 { BEACON_AGREEMENT = 1; BLUETOOTH = 2; @@ -1454,10 +1586,12 @@ enum Pb1_R3 { BLUETOOTH_SCAN = 10; AUTO_SUGGEST_FOLLOW_UP = 11; } + enum Pb1_S7 { NONE = 1; ALL = 2; } + enum Pb1_T3 { LOCATION_OS = 1; LOCATION_APP = 2; @@ -1468,10 +1602,12 @@ enum Pb1_T3 { IFA = 7; ACCURACY_MODE = 8; } + enum Pb1_T7 { SYNC = 0; REPORT = 1; } + enum Pb1_V7 { UNSPECIFIED = 0; UNKNOWN = 1; @@ -1483,11 +1619,13 @@ enum Pb1_V7 { INTERNAL = 7; USER_INITIATED = 8; } + enum Pb1_W2 { ANYONE_IN_CHAT = 0; CREATOR_ONLY = 1; NO_ONE = 2; } + enum Pb1_W3 { ILLEGAL_ARGUMENT = 0; AUTHENTICATION_FAILED = 1; @@ -1499,30 +1637,36 @@ enum Pb1_W3 { INVALID_PASSWORD = 8; MASTER_KEY_CONFLICT = 9; } + enum Pb1_X1 { MESSAGE = 0; MESSAGE_NOTIFICATION = 1; NOTIFICATION_CENTER = 2; } + enum Pb1_X2 { MESSAGE = 0; NOTE = 1; CHANNEL = 2; } + enum Pb1_Z2 { GROUP = 0; ROOM = 1; PEER = 2; } + enum Pb1_gd { OVER = 1; UNDER = 2; UNDEFINED = 3; } + enum Pb1_od { UNKNOWN = 0; LOCATION = 1; } + enum PointErrorCode { REQUEST_DUPLICATION = 3001; INVALID_PARAMETER = 3002; @@ -1545,12 +1689,14 @@ enum PointErrorCode { SYSTEM_ERROR = 5999; SYSTEM_MAINTENANCE = 5888; } + enum Q70_q { UNKNOWN = 0; FACEBOOK = 1; APPLE = 2; GOOGLE = 3; } + enum Q70_r { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -1559,20 +1705,24 @@ enum Q70_r { HUMAN_VERIFICATION_REQUIRED = 5; APP_UPGRADE_REQUIRED = 101; } + enum Qj_EnumC13584a { NOT_DETERMINED = 0; RESTRICTED = 1; DENIED = 2; AUTHORIZED = 3; } + enum Qj_EnumC13585b { WHITE = 1; BLACK = 2; } + enum Qj_EnumC13588e { LIGHT = 1; DARK = 2; } + enum Qj_EnumC13592i { ILLEGAL_ARGUMENT = 0; INTERNAL_ERROR = 1; @@ -1582,6 +1732,7 @@ enum Qj_EnumC13592i { COIN_NOT_USABLE = 5; WEBVIEW_NOT_ALLOWED = 6; } + enum Qj_EnumC13597n { INVALID_REQUEST = 1; UNAUTHORIZED = 2; @@ -1594,6 +1745,7 @@ enum Qj_EnumC13597n { SERVICE_ALREADY_TERMINATED = 9; SERVER_ERROR = 100; } + enum Qj_EnumC13604v { GEOLOCATION = 1; ADVERTISING_ID = 2; @@ -1612,10 +1764,12 @@ enum Qj_EnumC13604v { BASIC_AUTH = 15; SIRI_DONATION = 16; } + enum Qj_EnumC13605w { ALLOW_DIRECT_LINK = 1; ALLOW_DIRECT_LINK_V2 = 2; } + enum Qj_EnumC13606x { LIGHT = 1; LIGHT_TRANSLUCENT = 2; @@ -1623,24 +1777,29 @@ enum Qj_EnumC13606x { LIGHT_ICON = 4; DARK_ICON = 5; } + enum Qj_a0 { CONCAT = 1; REPLACE = 2; } + enum Qj_e0 { SUCCESS = 0; FAILURE = 1; CANCEL = 2; } + enum Qj_h0 { RIGHT = 1; LEFT = 2; } + enum Qj_i0 { FULL = 1; TALL = 2; COMPACT = 3; } + enum R70_e { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -1652,6 +1811,7 @@ enum R70_e { FORBIDDEN = 102; FIDO_RETRY_WITH_ANOTHER_AUTHENTICATOR = 201; } + enum RegistrationType { PHONE = 0; EMAIL_WAP = 1; @@ -1663,6 +1823,7 @@ enum RegistrationType { YAHOOJAPAN = 2310; GOOGLE = 2311; } + enum ReportType { ADVERTISING = 1; GENDER_HARASSMENT = 2; @@ -1672,6 +1833,7 @@ enum ReportType { IMPERSONATION = 6; SCAM = 7; } + enum S70_a { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -1680,6 +1842,7 @@ enum S70_a { INVALID_CONTEXT = 100; APP_UPGRADE_REQUIRED = 101; } + enum SettingsAttributeEx { NOTIFICATION_ENABLE = 0; NOTIFICATION_MUTE_EXPIRATION = 1; @@ -1773,6 +1936,7 @@ enum SettingsAttributeEx { HOME_NOTIFICATION_GROUP_MEMBER_UPDATE = 71; HOME_NOTIFICATION_BIRTHDAY = 72; } + enum SnsIdType { FACEBOOK = 1; SINA = 2; @@ -1783,6 +1947,7 @@ enum SnsIdType { YAHOOJAPAN = 7; GOOGLE = 8; } + enum SpammerReason { OTHER = 0; ADVERTISING = 1; @@ -1791,6 +1956,7 @@ enum SpammerReason { IMPERSONATION = 4; SCAM = 5; } + enum SpammerReason { OTHER = 0; ADVERTISING = 1; @@ -1799,6 +1965,7 @@ enum SpammerReason { IMPERSONATION = 4; SCAM = 5; } + enum SpotCategory { UNKNOWN = 0; GOURMET = 1; @@ -1815,6 +1982,7 @@ enum SpotCategory { OTHER = 12; ALL = 10000; } + enum SquareAttribute { NAME = 1; WELCOME_MESSAGE = 2; @@ -1830,6 +1998,7 @@ enum SquareAttribute { CHANNEL_ID = 13; SVC_TAGS = 14; } + enum SquareAuthorityAttribute { UPDATE_SQUARE_PROFILE = 1; INVITE_NEW_MEMBER = 2; @@ -1845,12 +2014,14 @@ enum SquareAuthorityAttribute { USE_READONLY_DEFAULT_CHAT = 12; SEND_ALL_MENTION = 13; } + enum SquareChatType { OPEN = 1; SECRET = 2; ONE_ON_ONE = 3; SQUARE_DEFAULT = 4; } + enum SquareMemberAttribute { DISPLAY_NAME = 1; PROFILE_IMAGE = 2; @@ -1859,6 +2030,7 @@ enum SquareMemberAttribute { ROLE = 6; PREFERENCE = 7; } + enum SquareMembershipState { JOIN_REQUESTED = 1; JOINED = 2; @@ -1869,6 +2041,7 @@ enum SquareMembershipState { DELETED = 7; JOIN_REQUEST_WITHDREW = 8; } + enum StickerResourceType { STATIC = 1; ANIMATION = 2; @@ -1877,6 +2050,7 @@ enum StickerResourceType { POPUP = 5; POPUP_SOUND = 6; } + enum StickerResourceType { STATIC = 1; ANIMATION = 2; @@ -1887,6 +2061,7 @@ enum StickerResourceType { NAME_TEXT = 7; PER_STICKER_TEXT = 8; } + enum SyncCategory { PROFILE = 0; SETTINGS = 1; @@ -1899,6 +2074,7 @@ enum SyncCategory { NOTIFICATION = 8; ADDRESS_BOOK = 9; } + enum T70_C { INITIAL_BACKUP_STATE_UNSPECIFIED = 0; INITIAL_BACKUP_STATE_READY = 1; @@ -1907,11 +2083,13 @@ enum T70_C { INITIAL_BACKUP_STATE_FINISHED = 3; INITIAL_BACKUP_STATE_ABORTED = 4; } + enum T70_EnumC14390b { UNKNOWN = 0; PHONE_NUMBER = 1; EMAIL = 2; } + enum T70_EnumC14392c { UNKNOWN = 0; SKIP = 1; @@ -1920,6 +2098,7 @@ enum T70_EnumC14392c { EMAIL_BASED = 4; NONE = 11; } + enum T70_EnumC14406j { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -1930,45 +2109,54 @@ enum T70_EnumC14406j { INVALID_CONTEXT = 100; APP_UPGRADE_REQUIRED = 101; } + enum T70_K { UNKNOWN = 0; SMS = 1; IVR = 2; SMSPULL = 3; } + enum T70_L { PREMIUM_TYPE_UNSPECIFIED = 0; PREMIUM_TYPE_LYP = 1; PREMIUM_TYPE_LINE = 2; } + enum T70_Z0 { PHONE_VERIF = 1; EAP_VERIF = 2; } + enum T70_e1 { UNKNOWN = 0; SKIP = 1; WEB_BASED = 2; } + enum T70_j1 { UNKNOWN = 0; FACEBOOK = 1; APPLE = 2; GOOGLE = 3; } + enum U70_c { INTERNAL_ERROR = 0; FORBIDDEN = 1; INVALID_CONTEXT = 100; } + enum Uf_EnumC14873o { ANDROID = 1; IOS = 2; } + enum VR0_l { DEFAULT = 1; UEN = 2; } + enum VerificationMethod { NO_AVAILABLE = 0; PIN_VIA_SMS = 1; @@ -1976,26 +2164,31 @@ enum VerificationMethod { PIN_VIA_TTS = 4; SKIP = 10; } + enum VerificationResult { FAILED = 0; OK_NOT_REGISTERED_YET = 1; OK_REGISTERED_WITH_SAME_DEVICE = 2; OK_REGISTERED_WITH_ANOTHER_DEVICE = 3; } + enum WR0_a { FREE = 1; PREMIUM = 2; } + enum a80_EnumC16644b { UNKNOWN = 0; FACEBOOK = 1; APPLE = 2; GOOGLE = 3; } + enum FetchDirection { FORWARD = 1; BACKWARD = 2; } + enum LiveTalkEventType { NOTIFIED_UPDATE_LIVE_TALK_TITLE = 1; NOTIFIED_UPDATE_LIVE_TALK_ANNOUNCEMENT = 2; @@ -2003,6 +2196,7 @@ enum LiveTalkEventType { NOTIFIED_UPDATE_LIVE_TALK_ALLOW_REQUEST_TO_SPEAK = 4; NOTIFIED_UPDATE_SQUARE_MEMBER = 5; } + enum LiveTalkReportType { ADVERTISING = 1; GENDER_HARASSMENT = 2; @@ -2012,6 +2206,7 @@ enum LiveTalkReportType { IMPERSONATION = 6; SCAM = 7; } + enum MessageSummaryReportType { LEGAL_VIOLATION = 1; HARASSMENT = 2; @@ -2020,6 +2215,7 @@ enum MessageSummaryReportType { GENDER_HARASSMENT = 5; OTHER = 6; } + enum NotificationPostType { POST_MENTION = 2; POST_LIKE = 3; @@ -2028,10 +2224,12 @@ enum NotificationPostType { POST_COMMENT_LIKE = 6; POST_RELAY_JOIN = 7; } + enum SquareEventStatus { NORMAL = 1; ALERT_DISABLED = 2; } + enum SquareEventType { RECEIVE_MESSAGE = 0; SEND_MESSAGE = 1; @@ -2092,6 +2290,7 @@ enum SquareEventType { NOTIFICATION_THREAD_MESSAGE = 54; NOTIFICATION_THREAD_MESSAGE_REACTION = 55; } + enum AdScreen { CHATROOM = 1; THREAD_SPACE = 2; @@ -2101,42 +2300,51 @@ enum AdScreen { WEB_MAIN = 6; WEB_SEARCH_RESULT = 7; } + enum BooleanState { NONE = 0; OFF = 1; ON = 2; } + enum ChatroomPopupType { IMG_TEXT = 1; TEXT_ONLY = 2; IMG_ONLY = 3; } + enum ContentsAttribute { NONE = 1; CONTENTS_HIDDEN = 2; } + enum FetchType { DEFAULT = 1; PREFETCH_BY_SERVER = 2; PREFETCH_BY_CLIENT = 3; } + enum LiveTalkAttribute { TITLE = 1; ALLOW_REQUEST_TO_SPEAK = 2; } + enum LiveTalkRole { HOST = 1; CO_HOST = 2; GUEST = 3; } + enum LiveTalkSpeakerSetting { APPROVAL = 1; ALL = 2; } + enum LiveTalkType { PUBLIC = 1; PRIVATE = 2; } + enum MessageReactionType { ALL = 0; UNDO = 1; @@ -2147,10 +2355,12 @@ enum MessageReactionType { SAD = 6; OMG = 7; } + enum NotifiedMessageType { MENTION = 1; REPLY = 2; } + enum PopupAttribute { NAME = 1; ACTIVATED = 2; @@ -2158,10 +2368,12 @@ enum PopupAttribute { ENDS_AT = 4; CONTENT = 5; } + enum PopupType { MAIN = 1; CHATROOM = 2; } + enum SquareChatAttribute { NAME = 2; SQUARE_CHAT_IMAGE = 3; @@ -2171,10 +2383,12 @@ enum SquareChatAttribute { MESSAGE_VISIBILITY = 7; ABLE_TO_SEARCH_MESSAGE = 8; } + enum SquareChatFeatureControlState { DISABLED = 1; ENABLED = 2; } + enum SquareChatMemberAttribute { MEMBERSHIP_STATE = 4; NOTIFICATION_MESSAGE = 6; @@ -2182,19 +2396,23 @@ enum SquareChatMemberAttribute { LEFT_BY_KICK_MESSAGE_LOCAL_ID = 8; MESSAGE_LOCAL_ID_WHEN_BLOCK = 9; } + enum SquareChatMembershipState { JOINED = 1; LEFT = 2; } + enum SquareChatState { ALIVE = 0; DELETED = 1; SUSPENDED = 2; } + enum SquareEmblem { SUPER = 1; OFFICIAL = 2; } + enum SquareErrorCode { UNKNOWN = 0; INTERNAL_ERROR = 500; @@ -2209,10 +2427,12 @@ enum SquareErrorCode { REVISION_MISMATCH = 409; PRECONDITION_FAILED = 410; } + enum SquareFeatureControlState { DISABLED = 1; ENABLED = 2; } + enum SquareFeatureSetAttribute { CREATING_SECRET_SQUARE_CHAT = 1; INVITING_INTO_OPEN_SQUARE_CHAT = 2; @@ -2230,76 +2450,92 @@ enum SquareFeatureSetAttribute { ENABLE_SQUARE_THREAD = 14; DISABLE_CHANGE_ROLE_CO_ADMIN = 15; } + enum SquareJoinMethodType { NONE = 0; APPROVAL = 1; CODE = 2; } + enum SquareMemberRelationState { NONE = 1; BLOCKED = 2; } + enum SquareMemberRole { ADMIN = 1; CO_ADMIN = 2; MEMBER = 10; } + enum SquareMessageState { SENT = 1; DELETED = 2; FORBIDDEN = 3; UNSENT = 4; } + enum SquareMetadataAttribute { EXCLUDED = 1; NO_AD = 2; } + enum SquarePreferenceAttribute { FAVORITE = 1; NOTI_FOR_NEW_JOIN_REQUEST = 2; } + enum SquareProviderType { UNKNOWN = 1; YOUTUBE = 2; OA_FANSPACE = 3; } + enum SquareState { ALIVE = 0; DELETED = 1; SUSPENDED = 2; } + enum SquareThreadAttribute { STATE = 1; EXPIRES_AT = 2; READ_ONLY_AT = 3; } + enum SquareThreadMembershipState { JOINED = 1; LEFT = 2; } + enum SquareThreadState { ALIVE = 1; DELETED = 2; } + enum SquareType { CLOSED = 0; OPEN = 1; } + enum TargetChatType { ALL = 0; MIDS = 1; CATEGORIES = 2; CHANNEL_ID = 3; } + enum TargetUserType { ALL = 0; MIDS = 1; } + enum do0_EnumC23139B { CLOUD = 1; BLE = 2; BEACON = 3; } + enum do0_EnumC23147e { SUCCESS = 0; UNKNOWN_ERROR = 1; @@ -2308,11 +2544,13 @@ enum do0_EnumC23147e { CONNECTION_ERROR = 4; CONNECTION_IN_PROGRESS = 5; } + enum do0_EnumC23148f { ONETIME = 0; AUTOMATIC = 1; BEACON = 2; } + enum do0_G { SUCCESS = 0; UNKNOWN_ERROR = 1; @@ -2323,6 +2561,7 @@ enum do0_G { GATT_CONNECTION_CLOSED = 6; CONNECTION_INVALID = 7; } + enum do0_M { INTERNAL_SERVER_ERROR = 0; UNAUTHORIZED = 1; @@ -2331,14 +2570,17 @@ enum do0_M { DEVICE_LIMIT_EXCEEDED = 4096; UNSUPPORTED_REGION = 4097; } + enum fN0_EnumC24466B { LINE_PREMIUM = 0; LYP_PREMIUM = 1; } + enum fN0_EnumC24467C { LINE = 1; YAHOO_JAPAN = 2; } + enum fN0_EnumC24469a { OK = 1; NOT_SUPPORTED = 2; @@ -2347,6 +2589,7 @@ enum fN0_EnumC24469a { NOT_FRIENDS = 5; NO_AGREEMENT = 6; } + enum fN0_F { OK = 1; NOT_SUPPORTED = 2; @@ -2356,19 +2599,23 @@ enum fN0_F { INVALID_INVITATION = 6; IN_PAYMENT_FAILURE_STATE = 7; } + enum fN0_G { APPLE = 1; GOOGLE = 2; } + enum fN0_H { INACTIVE = 1; ACTIVE_FINITE = 2; ACTIVE_INFINITE = 3; } + enum fN0_o { AVAILABLE = 1; ALREADY_SUBSCRIBED = 2; } + enum fN0_p { UNKNOWN = 0; SOFTBANK_BUNDLE = 1; @@ -2383,6 +2630,7 @@ enum fN0_p { LINE_GOOGLE = 10; YAHOO_WALLET = 11; } + enum fN0_q { UNKNOWN = 0; NONE = 1; @@ -2392,12 +2640,14 @@ enum fN0_q { INTERNAL_SERVER_ERROR = 16644; AUTHENTICATION_FAILED = 16645; } + enum g80_EnumC24993a { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; INVALID_CONTEXT = 2; TOO_MANY_REQUESTS = 3; } + enum h80_EnumC25645e { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -2406,6 +2656,7 @@ enum h80_EnumC25645e { INVALID_CONTEXT = 100; NOT_SUPPORTED = 101; } + enum I80_EnumC26392b { UNKNOWN = 0; SKIP = 1; @@ -2413,11 +2664,13 @@ enum I80_EnumC26392b { EMAIL_BASED = 4; NONE = 11; } + enum I80_EnumC26394c { PHONE_NUMBER = 0; APPLE = 1; GOOGLE = 2; } + enum I80_EnumC26408j { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -2428,21 +2681,25 @@ enum I80_EnumC26408j { INVALID_CONTEXT = 100; APP_UPGRADE_REQUIRED = 101; } + enum I80_EnumC26425y { UNKNOWN = 0; SMS = 1; IVR = 2; } + enum j80_EnumC27228a { AUTHENTICATION_FAILED = 1; INVALID_STATE = 2; NOT_AUTHORIZED_DEVICE = 3; MUST_REFRESH_V3_TOKEN = 4; } + enum jO0_EnumC27533B { PAYMENT_APPLE = 1; PAYMENT_GOOGLE = 2; } + enum jO0_EnumC27535b { ILLEGAL_ARGUMENT = 0; AUTHENTICATION_FAILED = 1; @@ -2450,17 +2707,20 @@ enum jO0_EnumC27535b { MESSAGE_DEFINED_ERROR = 29; MAINTENANCE_ERROR = 33; } + enum jO0_EnumC27559z { PAYMENT_PG_NONE = 0; PAYMENT_PG_AU = 1; PAYMENT_PG_AL = 2; } + enum jf_EnumC27712a { NONE = 1; DOES_NOT_RESPOND = 2; RESPOND_MANUALLY = 3; RESPOND_AUTOMATICALLY = 4; } + enum jf_EnumC27717f { UNKNOWN = 0; BAD_REQUEST = 1; @@ -2468,34 +2728,41 @@ enum jf_EnumC27717f { FORBIDDEN = 3; INTERNAL_SERVER_ERROR = 4; } + enum kf_EnumC28766a { ILLEGAL_ARGUMENT = 0; INTERNAL_ERROR = 1; UNAUTHORIZED = 2; } + enum kf_o { ANDROID = 0; IOS = 1; } + enum kf_p { RICHMENU = 0; TALK_ROOM = 1; } + enum kf_r { WEB = 0; POSTBACK = 1; SEND_MESSAGE = 2; } + enum kf_u { CLICK = 0; IMPRESSION = 1; } + enum kf_x { UNKNOWN = 0; PROFILE = 1; TALK_LIST = 2; OA_CALL = 3; } + enum n80_o { INTERNAL_ERROR = 0; INVALID_CONTEXT = 100; @@ -2504,6 +2771,7 @@ enum n80_o { FIDO_UNACCEPTABLE_CONTENT = 202; FIDO_INVALID_REQUEST = 203; } + enum o80_e { INTERNAL_ERROR = 0; VERIFICATION_FAILED = 1; @@ -2519,21 +2787,25 @@ enum o80_e { FIDO_UNACCEPTABLE_CONTENT = 202; FIDO_INVALID_REQUEST = 203; } + enum og_E { RUNNING = 1; CLOSING = 2; CLOSED = 3; SUSPEND = 4; } + enum og_EnumC32661b { INACTIVE = 0; ACTIVE = 1; } + enum og_EnumC32663d { PREMIUM = 0; VERIFIED = 1; UNVERIFIED = 2; } + enum og_EnumC32671l { ILLEGAL_ARGUMENT = 0; AUTHENTICATION_FAILED = 1; @@ -2542,11 +2814,13 @@ enum og_EnumC32671l { INTERNAL_ERROR = 20; MAINTENANCE_ERROR = 33; } + enum og_G { FREE = 0; MONTHLY = 1; PER_PAYMENT = 2; } + enum og_I { OK = 0; REACHED_TIER_LIMIT = 1; @@ -2555,6 +2829,7 @@ enum og_I { NOT_SUPPORTED_LINE_VERSION = 4; BOT_USER_REGION_IS_NOT_MATCH = 5; } + enum q80_EnumC33651c { INTERNAL_ERROR = 0; ILLEGAL_ARGUMENT = 1; @@ -2565,6 +2840,7 @@ enum q80_EnumC33651c { INVALID_CONTEXT = 100; APP_UPGRADE_REQUIRED = 101; } + enum qm_EnumC34112e { BUTTON = 1; ENTRY_SELECTED = 2; @@ -2572,20 +2848,24 @@ enum qm_EnumC34112e { BROADCAST_STAY = 5; BROADCAST_LEAVE = 4; } + enum qm_s { ILLEGAL_ARGUMENT = 0; NOT_FOUND = 5; INTERNAL_ERROR = 20; } + enum r80_EnumC34361a { PERSONAL_ACCOUNT = 1; CURRENT_ACCOUNT = 2; } + enum r80_EnumC34362b { BANK_ALL = 1; BANK_DEPOSIT = 2; BANK_WITHDRAWAL = 3; } + enum r80_EnumC34365e { BANK = 1; ATM = 2; @@ -2598,6 +2878,7 @@ enum r80_EnumC34365e { SEVEN_BANK_DEPOSIT = 9; CODE_DEPOSIT = 10; } + enum r80_EnumC34367g { AVAILABLE = 0; DIFFERENT_REGION = 1; @@ -2606,10 +2887,12 @@ enum r80_EnumC34367g { UNAVAILABLE_FROM_LINE_PAY = 4; INVALID_USER = 5; } + enum r80_EnumC34368h { CHARGE = 1; WITHDRAW = 2; } + enum r80_EnumC34370j { UNKNOWN = 0; VISA = 1; @@ -2618,17 +2901,20 @@ enum r80_EnumC34370j { DINERS = 4; JCB = 5; } + enum r80_EnumC34371k { NULL = 0; ATM = 1; CONVENIENCE_STORE = 2; } + enum r80_EnumC34372l { SCALE2 = 1; SCALE3 = 2; HDPI = 3; XHDPI = 4; } + enum r80_EnumC34374n { SUCCESS = 0; GENERAL_USER_ERROR = 1000; @@ -2684,12 +2970,14 @@ enum r80_EnumC34374n { INTERNAL_SYSTEM_MAINTENANCE = 9999; UNKNOWN_ERROR = 10000; } + enum r80_EnumC34376p { TRANSFER = 1; TRANSFER_REQUEST = 2; DUTCH = 3; INVITATION = 4; } + enum r80_EnumC34377q { NULL = 0; UNIDEN = 1; @@ -2697,6 +2985,7 @@ enum r80_EnumC34377q { IDENTIFIED = 3; CHECKING = 4; } + enum r80_EnumC34378s { UNKNOWN = 0; MORE_TAB = 1; @@ -2706,6 +2995,7 @@ enum r80_EnumC34378s { LINECARD = 5; INVITATION = 6; } + enum r80_e0 { NONE = 0; ONE_TIME_PAYMENT_AGREEMENT = 1; @@ -2715,12 +3005,14 @@ enum r80_e0 { JOINING_WITH_LINE_CARD_AGREEMENT = 5; LINE_CARD_AGREEMENT = 6; } + enum r80_g0 { NULL = 0; ATM = 1; CONVENIENCE_STORE = 2; ALL = 3; } + enum r80_h0 { ALL = 7; READY = 1; @@ -2730,12 +3022,14 @@ enum r80_h0 { FAIL = 5; EXPIRE = 6; } + enum r80_i0 { TRANSFER_ACCEPTABLE = 1; REMOVE_INVOICE = 2; INVOICE_CODE = 3; SHOW_ALWAYS_INVOICE = 4; } + enum r80_m0 { OK = 1; NOT_ALIVE_USER = 2; @@ -2746,25 +3040,30 @@ enum r80_m0 { ADVERSE_BALANCE = 8; CONFIRM_REQUIRED = 9; } + enum r80_n0 { LINE = 1; LINEPAY = 2; } + enum r80_r { CITIZEN_ID = 1; PASSPORT = 2; WORK_PERMIT = 3; ALIEN_CARD = 4; } + enum t80_h { CLIENT = 1; SERVER = 2; } + enum t80_i { APP_INSTANCE_LOCAL = 1; APP_TYPE_LOCAL = 2; GLOBAL = 3; } + enum t80_n { UNKNOWN = 0; NONE = 1; @@ -2780,20 +3079,24 @@ enum t80_n { SERVICE_IN_MAINTENANCE_MODE = 20738; SERVICE_UNAVAILABLE = 20739; } + enum t80_r { USER_ACTION = 1; DATA_OUTDATED = 2; APP_MIGRATION = 3; OTHER = 100; } + enum vh_EnumC37632c { ACTIVE = 1; INACTIVE = 2; } + enum vh_m { SAFE = 1; NOT_SAFE = 2; } + enum wm_EnumC38497a { UNKNOWN = 0; INTERNAL_ERROR = 500; @@ -2805,19 +3108,23 @@ enum wm_EnumC38497a { SQUARECHAT_NOT_FOUND = 4; FORBIDDEN = 5; } + enum zR0_EnumC40578c { FOREGROUND = 0; BACKGROUND = 1; } + enum zR0_EnumC40579d { STICKER = 1; THEME = 2; STICON = 3; } + enum zR0_h { NORMAL = 0; BIG = 1; } + enum zR0_j { UNKNOWN = 0; NONE = 1; @@ -2828,218 +3135,266 @@ enum zR0_j { INTERNAL_SERVER_ERROR = 20737; SERVICE_UNAVAILABLE = 20739; } + enum zf_EnumC40713a { PERSONAL = 1; ROOM = 2; GROUP = 3; SQUARE_CHAT = 4; } + enum zf_EnumC40715c { PRIORITY = 2; REGULAR = 1; MORE = 3; } + enum zf_EnumC40716d { INVALID_REQUEST = 1; UNAUTHORIZED = 2; SERVER_ERROR = 100; } + exception AccessTokenRefreshException { 1: P70_g errorCode; 2: i64 reasonCode; } + exception AccountEapConnectException { 1: Q70_r code; 2: string alertMessage; 11: WebAuthDetails webAuthDetails; } + exception I80_C26390a { 1: I80_EnumC26408j code; 2: string alertMessage; 11: I80_K0 webAuthDetails; } + exception AuthException { 1: T70_EnumC14406j code; 2: string alertMessage; 11: WebAuthDetails webAuthDetails; } + exception BotException { 1: wm_EnumC38497a errorCode; 2: string reason; 3: map parameterMap; } + exception BotExternalException { 1: kf_EnumC28766a errorCode; 2: string reason; } + exception ChannelException { 1: ChannelErrorCode code; 2: string reason; 3: map parameterMap; } + exception ChannelPaakAuthnException { 1: n80_o code; 2: string errorMessage; } + exception ChatappException { 1: zf_EnumC40716d code; 2: string reason; } + exception CoinException { 1: jO0_EnumC27535b code; 2: string reason; 3: map parameterMap; } + exception CollectionException { 1: Ob1_EnumC12664u code; 2: string reason; 3: map parameterMap; } + exception E2EEKeyBackupException { 1: Pb1_W3 code; 2: string reason; 3: map parameterMap; } + exception ExcessiveRequestItemException { 1: i32 max_size; 2: string hint; } + exception HomeException { 1: Fg_a exceptionCode; 2: string message; 3: i64 retryTimeMillis; } + exception LFLPremiumException { 1: AR0_g code; } + exception LiffChannelException { 1: Qj_EnumC13592i code; 2: string reason; 3: map parameterMap; } + exception LiffException { 1: Qj_EnumC13597n code; 2: string message; 3: Qj_C13599p payload; } + exception MembershipException { 1: og_EnumC32671l code; 2: string reason; 3: map parameterMap; } + exception OaChatException { 1: jf_EnumC27717f code; 2: string reason; 3: map parameterMap; } + exception PasswordUpdateException { 1: U70_c errorCode; 2: string errorMessage; } + exception PaymentException { 1: r80_EnumC34374n errorCode; 2: string debugReason; 3: string serverDefinedMessage; 4: map errorDetailMap; } + exception PointException { 1: PointErrorCode code; 2: string reason; 3: map extra; } + exception PremiumException { 1: fN0_q code; 2: string reason; } + exception PrimaryQrCodeMigrationException { 1: h80_EnumC25645e code; 2: string errorMessage; } + exception PwlessCredentialException { 1: R70_e code; 2: string alertMessage; } + exception RejectedException { 1: LN0_F0 rejectionReason; 2: string hint; } + exception SeamlessLoginException { 1: g80_EnumC24993a code; 2: string errorMessage; 3: string errorTitle; } + exception SecondAuthFactorPinCodeException { 1: S70_a code; 2: string alertMessage; } + exception SecondaryPwlessLoginException { 1: o80_e code; 2: string alertMessage; } + exception SecondaryQrCodeException { 1: q80_EnumC33651c code; 2: string alertMessage; } + exception ServerFailureException { 1: string hint; } + exception SettingsException { 1: t80_n code; 2: string reason; 3: map parameters; } + exception ShopException { 1: Ob1_EnumC12652p1 code; 2: string reason; 3: map parameterMap; } + exception SquareException { 1: SquareErrorCode errorCode; 2: ErrorExtraInfo errorExtraInfo; 3: string reason; } + exception SuggestTrialException { 1: zR0_j code; 2: string reason; 3: map parameterMap; } + exception TalkException { 1: ErrorCode code; 2: string reason; 3: map parameterMap; } + exception TalkException { 1: qm_s code; 2: string reason; 3: map parameterMap; } + exception ThingsException { 1: do0_M code; 2: string reason; } + exception TokenAuthException { 1: j80_EnumC27228a code; 2: string reason; } + exception WalletException { 1: NZ0_EnumC12193o1 code; 2: string reason; 3: map attributes; } + exception m80_C30146a { } + exception m80_b { } + struct AD { 1: string body; 2: Priority priority; 3: string lossUrl; } + struct AR0_o { - 1: AR0_Sticker sticker; + 1: _any sticker; } + struct AbuseMessage { 1: i64 messageId; 2: string message; @@ -3048,6 +3403,7 @@ struct AbuseMessage { 5: i64 createdTime; 6: map metadata; } + struct AbuseReport { 1: Pb1_EnumC13128p7 reportSource; 2: ApplicationType applicationType; @@ -3055,210 +3411,262 @@ struct AbuseReport { 4: list abuseMessages; 5: map metadata; } + struct AbuseReportLineMeeting { 1: string reporteeMid; 2: list spammerReasons; 3: list evidenceIds; 4: string chatMid; } + struct AcceptChatInvitationByTicketRequest { 1: i32 reqSeq; 2: string chatMid; 3: string ticketId; } + struct AcceptChatInvitationRequest { 1: i32 reqSeq; 2: string chatMid; } + struct AcceptSpeakersRequest { 1: string squareChatMid; 2: string sessionId; 3: set targetMids; } + struct AcceptToChangeRoleRequest { 1: string squareChatMid; 2: string sessionId; 3: string inviteRequestId; } + struct AcceptToListenRequest { 1: string squareChatMid; 2: string sessionId; 3: string inviteRequestId; } + struct AcceptToSpeakRequest { 1: string squareChatMid; 2: string sessionId; 3: string inviteRequestId; } + struct AccountIdentifier { 1: T70_EnumC14390b type; 2: string identifier; 11: string countryCode; } + struct AcquireLiveTalkRequest { 1: string squareChatMid; 2: string title; 3: LiveTalkType type; 4: LiveTalkSpeakerSetting speakerSetting; } + struct AcquireLiveTalkResponse { 1: LiveTalk liveTalk; } + struct AcquireOACallRouteRequest { 1: string searchId; 2: map fromEnvInfo; 3: string otp; } + struct AcquireOACallRouteResponse { 1: Pb1_C13113o6 oaCallRoute; } + struct ActionButton { 1: string label; } + struct ActivateSubscriptionRequest { 1: string uniqueKey; 2: og_EnumC32661b activeStatus; } + struct AdRequest { 1: map headers; 2: map queryParams; } + struct AdTypeOptOutClickEventRequest { 1: string moduleAdId; 2: string targetId; } + struct AddFriendByMidRequest { 1: i32 reqSeq; 2: string userMid; 3: AddFriendTracking tracking; } + struct AddFriendTracking { 1: string reference; 2: LN0_C11274d trackingMeta; } + struct AddItemToCollectionRequest { 1: string collectionId; 2: Ob1_O0 productType; 3: string productId; 4: string itemId; } + struct AddMetaByPhone { 1: string phone; } + struct AddMetaBySearchId { 1: string searchId; } + struct AddMetaByUserTicket { 1: string ticket; } + struct AddMetaChatNote { 1: string chatMid; } + struct AddMetaChatNoteMenu { 1: string chatMid; } + struct AddMetaGroupMemberList { 1: string chatMid; } + struct AddMetaGroupVideoCall { 1: string chatMid; } + struct AddMetaInvalid { 1: string hint; } + struct AddMetaMentionInChat { 1: string chatMid; 2: string messageId; } + struct AddMetaProfileUndefined { 1: string hint; } + struct AddMetaSearchIdInUnifiedSearch { 1: string searchId; } + struct AddMetaShareContact { 1: string messageId; 2: string chatMid; 3: string senderMid; } + struct AddMetaStrangerCall { 1: string messageId; } + struct AddMetaStrangerMessage { 1: string messageId; 2: string chatMid; } + struct AddOaFriendResponse { 1: string status; } + struct AddProductToSubscriptionSlotRequest { 1: Ob1_O0 productType; 2: string productId; 3: string oldProductId; 4: Ob1_S1 subscriptionService; } + struct AddProductToSubscriptionSlotResponse { 1: Ob1_U1 result; } + struct AddThemeToSubscriptionSlotRequest { 1: string productId; 2: string currentlyAppliedProductId; 3: Ob1_S1 subscriptionService; } + struct AddThemeToSubscriptionSlotResponse { 1: Ob1_U1 result; } + struct AddToFollowBlacklistRequest { 1: Pb1_A4 followMid; } + struct AgeCheckRequestResult { 1: string authUrl; 2: string sessionId; } + struct AgreeToTermsRequest { 1: TermsType termsType; 2: TermsAgreement termsAgreement; } + struct AiQnABotTermsAgreement { 1: i32 termsVersion; } + struct AnalyticsInfo { 1: double gaSamplingRate; 2: string tmid; } + struct AnimationEffectContent { 1: string animationImageUrl; } + struct AnimationLayer { 1: RichImage initialImage; 2: RichImage frontImage; 3: RichImage backgroundImage; } + struct ApplicationVersionRange { 1: string lowerBound; 2: bool lowerBoundInclusive; 3: string upperBound; 4: bool upperBoundInclusive; } + struct ApprovalValue { 1: string message; } + struct ApproveSquareMembersRequest { 2: string squareMid; 3: list requestedMemberMids; } + struct ApproveSquareMembersResponse { 1: list approvedMembers; 2: SquareStatus status; } + struct ApprovedChannelInfo { 1: ChannelInfo channelInfo; 2: i64 approvedAt; } + struct ApprovedChannelInfos { 1: list approvedChannelInfos; 2: i64 revision; } + struct AssetServiceInfo { 1: NZ0_C0 status; 2: NZ0_B0 myAssetServiceCode; @@ -3273,84 +3681,103 @@ struct AssetServiceInfo { 11: string availableBalanceString; 12: string availableBalance; } + struct AuthPublicKeyCredential { 1: string id; 2: string type; 3: AuthenticatorAssertionResponse response; 4: AuthenticationExtensionsClientOutputs extensionResults; } + struct AuthPublicKeyCredential { 1: string id; 2: string type; 3: AuthenticatorAssertionResponse response; 4: AuthenticationExtensionsClientOutputs extensionResults; } + struct AuthSessionRequest { 1: map metaData; } + struct AuthenticateWithPaakRequest { 1: string authSessionId; 2: AuthPublicKeyCredential credential; } + struct AuthenticateWithPaakRequest { 1: string sessionId; 2: AuthPublicKeyCredential credential; } + struct AuthenticationExtensionsClientInputs { 91: set lineAuthenSel; } + struct AuthenticationExtensionsClientInputs { 91: set lineAuthenSel; } + struct AuthenticationExtensionsClientOutputs { 91: bool lineAuthenSel; } + struct AuthenticationExtensionsClientOutputs { 91: bool lineAuthenSel; } + struct AuthenticatorAssertionResponse { 1: string clientDataJSON; 2: string authenticatorData; 3: string signature; 4: string userHandle; } + struct AuthenticatorAssertionResponse { 1: string clientDataJSON; 2: string authenticatorData; 3: string signature; 4: string userHandle; } + struct AuthenticatorAttestationResponse { 1: string clientDataJSON; 2: string attestationObject; 3: set transports; } + struct AuthenticatorSelectionCriteria { 1: string authenticatorAttachment; 2: bool requireResidentKey; 3: string userVerification; } + struct AutoSuggestionShowcaseRequest { 1: Ob1_O0 productType; 2: Ob1_a2 suggestionType; } + struct AutoSuggestionShowcaseResponse { 1: list productList; 2: i64 totalSize; } + struct AvatarProfile { 1: string version; 2: i64 updatedMillis; 3: string thumbnail; 4: bool usablePublicly; } + struct BadgeInfo { 1: bool enabled; 2: i64 badgeRevision; } + struct Balance { 1: string currentPointsFixedPointDecimal; } + struct BalanceShortcut { 1: bool osPayment; 2: i32 iconPosition; @@ -3363,27 +3790,32 @@ struct BalanceShortcut { 9: string iconUrlDarkMode; 10: Tooltip toolTip; } + struct BalanceShortcutInfo { 1: list balanceShortcuts; 2: BalanceShortcut osPaymentFallbackShortcut; } + struct BalanceShortcutInfoV4 { 1: list compactShortcuts; 2: list balanceShortcuts; 3: bool defaultExpand; } + struct BankBranchInfo { 1: string branchId; 2: string branchCode; 3: string name; 4: string name2; } + struct BannerRequest { 1: bool test; 2: Uf_C14856C trigger; 3: AdRequest ad; 4: ContentRequest content; } + struct BannerResponse { 1: string rid; 2: i64 timestamp; @@ -3392,21 +3824,25 @@ struct BannerResponse { 5: Uf_C14856C trigger; 6: list payloads; } + struct Beacon { 1: string hardwareId; } + struct BeaconBackgroundNotification { 1: i64 actionInterval; 2: list actionAndConditions; 3: i64 actionDelay; 4: list> actionConditions; } + struct BeaconData { 1: string hwid; 2: i32 rssi; 3: i32 txPower; 4: i64 scannedTimestampMs; } + struct BeaconLayerInfoAndActions { 1: string pictureUrl; 2: string label; @@ -3416,6 +3852,7 @@ struct BeaconLayerInfoAndActions { 6: list> showConditions; 7: i64 timeToHide; } + struct BeaconQueryResponse { 2: list deprecated_actionUrls; 3: i64 cacheTtl; @@ -3439,20 +3876,25 @@ struct BeaconQueryResponse { 22: string botMid; 23: bool pop; } + struct BeaconTouchActions { 1: list actions; } + struct BirthdayGiftAssociationVerifyRequest { 1: string associationToken; } + struct BirthdayGiftAssociationVerifyResponse { 1: Ob1_EnumC12638l tokenStatus; 2: string recipientUserMid; } + struct BleNotificationReceivedTrigger { 1: string serviceUuid; 2: string characteristicUuid; } + struct BleProduct { 1: string serviceUuid; 2: string psdiServiceUuid; @@ -3461,6 +3903,7 @@ struct BleProduct { 5: string profileImageLocation; 6: bool bondingRequired; } + struct Bot { 1: string mid; 2: string basicSearchId; @@ -3469,40 +3912,50 @@ struct Bot { 5: string pictureUrl; 6: og_EnumC32663d brandType; } + struct BotBlockDetail { 3: bool deletedFromBlockList; } + struct BotFriendDetail { 1: i64 createdTime; 4: i64 favoriteTime; 6: bool hidden; } + struct BotOaCallDetail { 1: string oaCallUrl; } + struct BotTalkroomAds { 1: bool talkroomAdsEnabled; 2: list botTalkroomAdsInventoryKeys; 3: bool displayTalkroomAdsToMembershipUser; } + struct BotTalkroomAdsInventoryKey { 1: Pb1_EnumC13093n0 talkroomAdsPosition; 2: string talkroomAdsIosInventoryKey; 3: string talkroomAdsAndroidInventoryKey; } + struct BrowsingHistory { 1: ProductSearchSummary productSearchSummary; 2: i64 browsingTime; } + struct BuddyCautionNotice { 1: Pb1_EnumC13162s0 type; } + struct BuddyCautionNoticeFromCMS { 1: Pb1_EnumC13148r0 visibility; } + struct BuddyChatBar { 1: list barItems; } + struct BuddyDetail { 1: string mid; 2: i64 memberCount; @@ -3543,10 +3996,12 @@ struct BuddyDetail { 37: BuddyCautionNoticeFromCMS buddyCautionNoticeFromCMS; 38: string region; } + struct BuddyDetailWithPersonal { 1: BuddyDetail buddyDetail; 2: BuddyPersonalDetail personalDetail; } + struct BuddyLive { 1: string mid; 2: bool onLive; @@ -3554,6 +4009,7 @@ struct BuddyLive { 4: i64 viewerCount; 5: string liveUrl; } + struct BuddyOnAir { 1: string mid; 3: i64 freshnessLifetime; @@ -3575,20 +4031,24 @@ struct BuddyOnAir { 52: string lowerBannerUrl; 53: string lowerBannerLabel; } + struct BuddyOnAirUrls { 1: map hls; 2: map smoothStreaming; } + struct BuddyPersonalDetail { 1: string richMenuId; 2: i64 statusBarRevision; 3: BuddyCautionNotice buddyCautionNotice; } + struct BuddyRichMenuChatBarItem { 1: string label; 2: string body; 3: bool selected; } + struct BuddySearchResult { 1: string mid; 2: string displayName; @@ -3599,6 +4059,7 @@ struct BuddySearchResult { 7: i32 iconType; 8: BotType botType; } + struct BuddyStatusBar { 1: string label; 2: Pb1_EnumC12926b1 displayType; @@ -3606,55 +4067,68 @@ struct BuddyStatusBar { 4: string iconUrl; 5: string linkUrl; } + struct BuddyWebChatBarItem { 1: string label; 2: string url; } + struct BuddyWidget { 1: string icon; 2: string label; 3: string url; } + struct BuddyWidgetListCharBarItem { 1: string label; 2: list widgets; 3: bool selected; } + struct BulkFollowRequest { 1: set followTargetMids; 2: set unfollowTargetMids; 3: bool hasNext; } + struct BulkGetRequest { 1: set requests; } + struct BulkGetResponse { 1: map values; } + struct BulkSetRequest { 1: set requests; } + struct BulkSetResponse { 1: map values; } + struct Button { 1: ButtonContent content; 2: ButtonStyle style; } + struct ButtonStyle { 1: string textColorHexCode; 2: ButtonBGColor bgColor; } + struct BuyMustbuyRequest { 1: Ob1_O0 productType; 2: string productId; 3: string serialNumber; } + struct CallHost { 1: string host; 2: i32 port; 3: string zone; } + struct CallRoute { 1: string fromToken; 2: Pb1_EnumC13010h1 callFlowType; @@ -3677,6 +4151,7 @@ struct CallRoute { 19: bool drCall; 20: string stnpk; } + struct Callback { 1: string impEventUrl; 2: string clickEventUrl; @@ -3686,12 +4161,14 @@ struct Callback { 6: string bounceEventUrl; 7: string undeliveredEventUrl; } + struct CampaignContent { 1: string iconUrl; 2: string iconAltText; 3: IconDisplayRule iconDisplayRule; 4: AnimationEffectContent animationEffectContent; } + struct CampaignProperty { 1: string id; 2: string name; @@ -3699,73 +4176,91 @@ struct CampaignProperty { 4: HeaderContent headerContent; 5: CampaignContent campaignContent; } + struct CanCreateCombinationStickerRequest { 1: set packageIds; } + struct CanCreateCombinationStickerResponse { 1: bool canCreate; 2: set usablePackageIds; } + struct CancelChatInvitationRequest { 1: i32 reqSeq; 2: string chatMid; 3: set targetUserMids; } + struct CancelPaakAuthRequest { 1: string sessionId; } + struct CancelPaakAuthenticationRequest { 1: string authSessionId; } + struct CancelPinCodeRequest { 1: string authSessionId; } + struct CancelReactionRequest { 1: i32 reqSeq; 2: i64 messageId; } + struct CancelToSpeakRequest { 1: string squareChatMid; 2: string sessionId; } + struct Candidate { 1: zR0_EnumC40579d type; 2: string productId; 3: string itemId; } + struct Category { 1: i32 id; 2: string name; } + struct CategoryName { 1: i32 categoryId; 2: map names; } + struct ChangeSubscriptionRequest { 1: string billingItemId; 2: Ob1_S1 subscriptionService; 3: Ob1_K1 storeCode; } + struct ChangeSubscriptionResponse { 1: Ob1_M1 result; 2: string orderId; 3: string confirmUrl; } + struct ChannelContext { 1: string channelName; } + struct ChannelDomain { 1: string host; 2: bool removed; } + struct ChannelDomains { 1: list channelDomains; 2: i64 revision; } + struct ChannelIdWithLastUpdated { 1: string channelId; 2: i64 lastUpdated; } + struct ChannelInfo { 1: string channelId; 3: string name; @@ -3783,6 +4278,7 @@ struct ChannelInfo { 16: i64 updatedTimestamp; 17: set featureLicenses; } + struct ChannelNotificationSetting { 1: string channelId; 2: string name; @@ -3790,13 +4286,16 @@ struct ChannelNotificationSetting { 4: bool messageReceivable; 5: bool showDefault; } + struct ChannelProvider { 1: string name; 2: bool certified; } + struct ChannelSettings { 1: bool unapprovedMessageReceivable; } + struct ChannelToken { 1: string token; 2: string obsToken; @@ -3804,6 +4303,7 @@ struct ChannelToken { 4: string refreshToken; 5: string channelAccessToken; } + struct Chat { 1: Pb1_Z2 type; 2: string chatMid; @@ -3814,6 +4314,7 @@ struct Chat { 7: string picturePath; 8: Pb1_C13208v4 extra; } + struct ChatEffectMeta { 1: i64 contentId; 2: Pb1_Q2 category; @@ -3827,10 +4328,12 @@ struct ChatEffectMeta { 10: i64 updatedTimeMillis; 11: string contentMetadataTag; } + struct ChatEffectMetaContent { 1: string url; 2: string checksum; } + struct ChatRoomAnnouncement { 1: i64 announcementSeq; 2: Pb1_X2 type; @@ -3839,11 +4342,13 @@ struct ChatRoomAnnouncement { 5: i64 createdTime; 6: Pb1_W2 deletePermission; } + struct ChatRoomAnnouncementContentMetadata { 1: string replace; 2: string sticonOwnership; 3: string postNotificationMetadata; } + struct ChatRoomAnnouncementContents { 1: i32 displayFields; 2: string text; @@ -3851,11 +4356,13 @@ struct ChatRoomAnnouncementContents { 4: string thumbnail; 5: ChatRoomAnnouncementContentMetadata contentMetadata; } + struct ChatRoomBGM { 1: string creatorMid; 2: i64 createdTime; 3: string chatRoomBGMInfo; } + struct Chatapp { 1: string chatappId; 2: string name; @@ -3863,6 +4370,7 @@ struct Chatapp { 4: string url; 5: list availableChatTypes; } + struct ChatroomPopup { 1: string imageObsHash; 2: string title; @@ -3876,16 +4384,20 @@ struct ChatroomPopup { 10: TargetUserType targetUserType; 11: TargetUsers targetUsers; } + struct I80_C26396d { 1: string authSessionId; } + struct CheckEmailAssignedResponse { 1: bool sameAccountFromPhone; } + struct CheckIfEncryptedE2EEKeyReceivedRequest { 1: string sessionId; 2: h80_t secureChannelData; } + struct CheckIfEncryptedE2EEKeyReceivedResponse { 1: string nonce; 2: h80_Z70_a encryptedSecureChannelPayload; @@ -3893,63 +4405,78 @@ struct CheckIfEncryptedE2EEKeyReceivedResponse { 4: bool appTypeDifferentFromPrevDevice; 5: bool e2eeKeyBackupServiceConfig; } + struct I80_C26400f { 1: string authSessionId; } + struct I80_C26402g { 1: bool verified; } + struct CheckIfPhonePinCodeMsgVerifiedRequest { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; } + struct CheckIfPhonePinCodeMsgVerifiedResponse { 1: bool accountExist; 2: bool sameUdidFromAccount; 3: bool allowedToRegister; 11: UserProfile userProfile; } + struct CheckJoinCodeRequest { 2: string squareMid; 3: string joinCode; } + struct CheckJoinCodeResponse { 1: string joinToken; } + struct CheckOperationResult { 1: bool tradable; 2: string reason; 3: string detailMessage; } + struct CheckUserAgeAfterApprovalWithDocomoV2Request { 1: string accessToken; 2: string agprm; } + struct CheckUserAgeAfterApprovalWithDocomoV2Response { 1: Pb1_gd userAgeType; } + struct CheckUserAgeWithDocomoV2Request { 1: string authCode; } + struct CheckUserAgeWithDocomoV2Response { 1: Pb1_EnumC12970e3 responseType; 2: Pb1_gd userAgeType; 3: string approvalRedirectUrl; 4: string accessToken; } + struct ClientNetworkStatus { 1: Pb1_EnumC12998g3 networkType; 2: list wifiSignals; } + struct CodeValue { 1: string code; } + struct Coin { 1: i32 freeCoinBalance; 2: i32 payedCoinBalance; 3: i32 totalCoinBalance; 4: i32 rewardCoinBalance; } + struct CoinHistory { 1: i64 payDate; 2: i32 coinBalance; @@ -3964,12 +4491,14 @@ struct CoinHistory { 11: CoinPayLoad payload; 12: string channelId; } + struct CoinPayLoad { 1: i32 payCoin; 2: i32 freeCoin; 3: PayloadType type; 4: i32 rewardCoin; } + struct CoinProductItem { 1: string itemId; 2: i32 coin; @@ -3980,6 +4509,7 @@ struct CoinProductItem { 8: string name; 9: string desc; } + struct CoinPurchaseReservation { 1: string productId; 2: string country; @@ -3990,6 +4520,7 @@ struct CoinPurchaseReservation { 7: jO0_EnumC27559z pgCode; 8: string redirectUrl; } + struct Collection { 1: string collectionId; 2: list items; @@ -3997,23 +4528,27 @@ struct Collection { 4: i64 createdTimeMillis; 5: i64 updatedTimeMillis; } + struct CollectionItem { 1: string itemId; 2: string productId; 3: Ob1_E displayData; 4: i32 sortId; } + struct CombinationStickerMetadata { 1: i64 version; 2: double canvasWidth; 3: double canvasHeight; 4: list stickerLayouts; } + struct CombinationStickerStickerData { 1: string packageId; 2: string stickerId; 3: i64 version; } + struct CompactShortcut { 1: i32 iconPosition; 2: string iconUrl; @@ -4022,22 +4557,27 @@ struct CompactShortcut { 5: string linkUrl; 6: string tsTargetId; } + struct Configurations { 1: i64 revision; 2: map configMap; } + struct ConfigurationsParams { 1: string regionOfUsim; 2: string regionOfTelephone; 3: string regionOfLocale; 4: string carrier; } + struct ConnectDeviceOperation { 1: i64 connectionTimeoutMillis; } + struct ConnectEapAccountRequest { 1: string authSessionId; } + struct Contact { 1: string mid; 2: i64 createdTime; @@ -4070,6 +4610,7 @@ struct Contact { 48: Pb1_N6 pictureSource; 49: string profileId; } + struct ContactCalendarEvent { 1: string id; 2: Pb1_EnumC13082m3 state; @@ -4077,9 +4618,11 @@ struct ContactCalendarEvent { 4: i32 month; 5: i32 day; } + struct ContactCalendarEvents { 1: map> events; } + struct ContactModification { 1: Pb1_EnumC13029i6 type; 2: string luid; @@ -4089,12 +4632,14 @@ struct ContactModification { 14: string mobileContactName; 15: string phoneticName; } + struct ContactRegistration { 1: Contact contact; 10: string luid; 11: ContactType contactType; 12: string contactKey; } + struct Content { 1: string title; 2: string desc; @@ -4110,15 +4655,18 @@ struct Content { 12: bool voteSupported; 13: Priority priority; } + struct ContentRequest { 1: Uf_EnumC14873o os; 2: string appv; 3: string lineAcceptableLanguage; 4: string countryCode; } + struct CountryCode { 1: string code; } + struct CreateChatRequest { 1: i32 reqSeq; 2: Pb1_Z2 type; @@ -4126,71 +4674,90 @@ struct CreateChatRequest { 4: set targetUserMids; 5: string picturePath; } + struct CreateChatResponse { 1: Chat chat; } + struct CreateCollectionForUserRequest { 1: Ob1_O0 productType; } + struct CreateCollectionForUserResponse { 1: Collection collection; } + struct CreateCombinationStickerRequest { 1: CombinationStickerMetadata metadata; 2: list stickers; 3: string idOfPreviousVersionOfCombinationSticker; } + struct CreateCombinationStickerResponse { 1: string id; } + struct CreateGroupCallUrlRequest { 1: string title; } + struct CreateGroupCallUrlResponse { 1: GroupCallUrl url; } + struct CreateMultiProfileRequest { 1: string displayName; } + struct CreateMultiProfileResponse { 1: string profileId; } + struct I80_C26406i { 1: string authSessionId; } + struct CreateSessionResponse { 1: string sessionId; } + struct CreateSessionResponse { 1: string sessionId; } + struct CreateSessionResponse { 1: string sessionId; } + struct CreateSquareChatAnnouncementRequest { 1: i32 reqSeq; 2: string squareChatMid; 3: SquareChatAnnouncement squareChatAnnouncement; } + struct CreateSquareChatAnnouncementResponse { 1: SquareChatAnnouncement announcement; } + struct CreateSquareChatRequest { 1: i32 reqSeq; 2: SquareChat squareChat; 3: list squareMemberMids; } + struct CreateSquareChatResponse { 1: SquareChat squareChat; 2: SquareChatStatus squareChatStatus; 3: SquareChatMember squareChatMember; 4: SquareChatFeatureSet squareChatFeatureSet; } + struct CreateSquareRequest { 1: i32 reqSeq; 2: Square square; 3: SquareMember creator; } + struct CreateSquareResponse { 1: Square square; 2: SquareMember creator; @@ -4203,19 +4770,23 @@ struct CreateSquareResponse { 9: SquareChatMember squareChatMember; 10: SquareChatFeatureSet squareChatFeatureSet; } + struct CurrencyProperty { 1: string code; 2: string symbol; 3: NZ0_EnumC12197q position; 4: i32 scale; } + struct CustomBadgeLabel { 1: string text; 2: string backgroundColorCode; } + struct CustomColor { 1: string hexColorCode; } + struct DataRetention { 1: string productId; 2: string productRegion; @@ -4223,24 +4794,30 @@ struct DataRetention { 4: bool inDataRetention; 5: i64 dataRetentionEndTime; } + struct DataUserBot { 1: string mid; 4: string placeName; } + struct DeleteGroupCallUrlRequest { 1: string urlId; } + struct DeleteMultiProfileRequest { 1: string profileId; } + struct DeleteOtherFromChatRequest { 1: i32 reqSeq; 2: string chatMid; 3: set targetUserMids; } + struct DeleteSafetyStatusRequest { 1: string disasterId; } + struct DeleteSelfFromChatRequest { 1: i32 reqSeq; 2: string chatMid; @@ -4249,53 +4826,66 @@ struct DeleteSelfFromChatRequest { 5: i64 lastMessageDeliveredTime; 6: string lastMessageId; } + struct DeleteSquareChatAnnouncementRequest { 2: string squareChatMid; 3: i64 announcementSeq; } + struct DeleteSquareChatRequest { 2: string squareChatMid; 3: i64 revision; } + struct DeleteSquareRequest { 2: string mid; 3: i64 revision; } + struct DestinationLIFFRequest { 1: string originalUrl; } + struct DestinationLIFFResponse { 1: string destinationUrl; } + struct DestroyMessageRequest { 2: string squareChatMid; 4: string messageId; 5: string threadMid; } + struct DestroyMessagesRequest { 2: string squareChatMid; 4: set messageIds; 5: string threadMid; } + struct DetermineMediaMessageFlowRequest { 1: string chatMid; } + struct DetermineMediaMessageFlowResponse { 1: map flowMap; 2: i64 cacheTtlMillis; } + struct Device { 1: string deviceModel; 2: string deviceId; } + struct Device { 1: string udid; 2: string deviceModel; } + struct Device { 1: string udid; 2: string deviceModel; } + struct DeviceInfo { 1: string deviceName; 2: string systemName; @@ -4306,15 +4896,19 @@ struct DeviceInfo { 11: string carrierName; 20: ApplicationType applicationType; } + struct DeviceLinkRequest { 1: string deviceId; } + struct DeviceLinkResponse { 1: i64 latestOffset; } + struct DeviceUnlinkRequest { 1: string deviceId; } + struct DisasterInfo { 1: string disasterId; 2: string title; @@ -4324,43 +4918,53 @@ struct DisasterInfo { 7: vh_EnumC37632c status; 8: bool highImpact; } + struct DisconnectEapAccountRequest { 1: Q70_q eapType; } + struct DisplayMoney { 1: string amount; 2: string amountString; 3: string currency; } + struct E2EEKeyChain { 1: list keychain; } + struct E2EEMessageInfo { 1: ContentType contentType; 2: map contentMetadata; 3: list chunks; } + struct E2EEMetadata { 1: i64 e2EEPublicKeyId; } + struct E2EENegotiationResult { 1: set allowedTypes; 2: Pb1_C13097n4 publicKey; 3: i32 specVersion; } + struct EapLogin { 1: Q70_q type; 2: string accessToken; } + struct EapLogin { 1: a80_EnumC16644b type; 2: string accessToken; 3: string countryCode; } + struct EditItemsInCollectionRequest { 1: string collectionId; 2: list items; } + struct EditorsPickBannerForClient { 1: i64 id; 2: string endPageBannerImageUrl; @@ -4369,38 +4973,48 @@ struct EditorsPickBannerForClient { 5: string name; 6: string description; } + struct Eg_C8928b { } + struct Eh_C8933a { } + struct Eh_C8935c { } + struct EstablishE2EESessionRequest { 1: string clientPublicKey; } + struct EstablishE2EESessionResponse { 1: string sessionId; 2: string serverPublicKey; 3: i64 expireAt; } + struct EventButton { 1: string text; 2: string linkUrl; } + struct EvidenceId { 1: string spaceId; 2: string objectId; } + struct ExecuteOnetimeScenarioOperation { 1: string connectionId; 2: Scenario scenario; } + struct ExistPinCodeResponse { 1: bool exists; } + struct ExtendedMessageBox { 1: string id; 2: MIDType midType; @@ -4412,9 +5026,11 @@ struct ExtendedMessageBox { 9: i64 lastRemovedTime; 10: i64 hiddenAtMessageId; } + struct ExtendedProfile { 1: ExtendedProfileBirthday birthday; } + struct ExtendedProfileBirthday { 1: string year; 2: Pb1_H6 yearPrivacyLevelType; @@ -4423,45 +5039,54 @@ struct ExtendedProfileBirthday { 6: Pb1_H6 dayPrivacyLevelType; 7: bool dayEnabled; } + struct FetchLiveTalkEventsRequest { 1: string squareChatMid; 2: string sessionId; 3: string syncToken; 4: i32 limit; } + struct FetchLiveTalkEventsResponse { 1: list events; 2: string syncToken; 3: bool hasMore; } + struct FetchMyEventsRequest { 1: i64 subscriptionId; 2: string syncToken; 3: i32 limit; 4: string continuationToken; } + struct FetchMyEventsResponse { 1: SubscriptionState subscription; 2: list events; 3: string syncToken; 4: string continuationToken; } + struct FetchOperationsRequest { 1: string deviceId; 2: i64 offsetFrom; } + struct FetchOperationsResponse { 1: list operations; 2: bool hasNext; } + struct FetchPhonePinCodeMsgRequest { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; } + struct FetchPhonePinCodeMsgResponse { 1: string pinCodeMessage; 2: string destinationPhoneNumber; } + struct FetchSquareChatEventsRequest { 1: i64 subscriptionId; 2: string squareChatMid; @@ -4473,25 +5098,31 @@ struct FetchSquareChatEventsRequest { 8: FetchType fetchType; 9: string threadMid; } + struct FetchSquareChatEventsResponse { 1: SubscriptionState subscription; 2: list events; 3: string syncToken; 4: string continuationToken; } + struct FileMeta { 1: string url; 2: string hash; } + struct FindChatByTicketRequest { 1: string ticketId; } + struct FindChatByTicketResponse { 1: Chat chat; } + struct FindLiveTalkByInvitationTicketRequest { 1: string invitationTicket; } + struct FindLiveTalkByInvitationTicketResponse { 1: string chatInvitationTicket; 2: LiveTalk liveTalk; @@ -4500,9 +5131,11 @@ struct FindLiveTalkByInvitationTicketResponse { 5: SquareChatMembershipState chatMembershipState; 6: BooleanState squareAdultOnly; } + struct FindSquareByEmidRequest { 1: string emid; } + struct FindSquareByEmidResponse { 1: Square square; 2: SquareMember myMembership; @@ -4511,9 +5144,11 @@ struct FindSquareByEmidResponse { 5: SquareFeatureSet squareFeatureSet; 6: NoteStatus noteStatus; } + struct FindSquareByInvitationTicketRequest { 2: string invitationTicket; } + struct FindSquareByInvitationTicketResponse { 1: Square square; 2: SquareMember myMembership; @@ -4524,9 +5159,11 @@ struct FindSquareByInvitationTicketResponse { 7: SquareChat chat; 8: SquareChatStatus chatStatus; } + struct FindSquareByInvitationTicketV2Request { 1: string invitationTicket; } + struct FindSquareByInvitationTicketV2Response { 1: Square square; 2: SquareMember myMembership; @@ -4537,9 +5174,11 @@ struct FindSquareByInvitationTicketV2Response { 7: SquareChat chat; 8: SquareChatStatusWithoutMessage chatStatus; } + struct FollowBuddyDetail { 1: i32 iconType; } + struct FollowProfile { 1: Pb1_A4 followMid; 2: string displayName; @@ -4548,9 +5187,11 @@ struct FollowProfile { 5: bool allowFollow; 6: FollowBuddyDetail followBuddyDetail; } + struct FollowRequest { 1: Pb1_A4 followMid; } + struct FontMeta { 1: string id; 2: string name; @@ -4560,19 +5201,23 @@ struct FontMeta { 6: FileMeta fontSubset; 7: i64 expiresAtMillis; } + struct ForceEndLiveTalkRequest { 1: string squareChatMid; 2: string sessionId; } + struct ForceSelectedSubTabInfo { 1: string subTabId; 2: i64 forceSelectedSubTabRevision; 3: string wrsDefaultTabModelId; } + struct FormattedPhoneNumbers { 1: string localFormatPhoneNumber; 2: string prettifiedFormatPhoneNumber; } + struct FriendRequest { 1: string eMid; 2: string mid; @@ -4585,6 +5230,7 @@ struct FriendRequest { 11: string picturePath; 12: string pictureStatus; } + struct FriendRequestsInfo { 1: i32 totalIncomingCount; 2: i32 totalOutgoingCount; @@ -4593,14 +5239,17 @@ struct FriendRequestsInfo { 5: i32 totalIncomingLimit; 6: i32 totalOutgoingLimit; } + struct FullSyncResponse { 1: set reasons; 2: i64 nextRevision; } + struct GattReadAction { 1: string serviceUuid; 2: string characteristicUuid; } + struct Geolocation { 1: double longitude; 2: double latitude; @@ -4610,6 +5259,7 @@ struct Geolocation { 6: double bearingDegrees; 7: list beaconData; } + struct GeolocationAccuracy { 1: double radiusMeters; 2: double radiusConfidence; @@ -4618,85 +5268,106 @@ struct GeolocationAccuracy { 5: double bearingAccuracy; 6: Pb1_EnumC13050k accuracyMode; } + struct GetAccessTokenRequest { 1: string fontId; } + struct GetAccessTokenResponse { 1: map> queryParams; 2: map> headers; 3: i64 expiresAtMillis; } + struct I80_C26410k { 1: string authSessionId; } + struct GetAcctVerifMethodResponse { 1: T70_EnumC14392c availableMethod; 2: bool sameAccountFromAuthFactor; } + struct I80_C26412l { 1: I80_EnumC26392b availableMethod; } + struct GetAllChatMidsRequest { 1: bool withMemberChats; 2: bool withInvitedChats; } + struct GetAllChatMidsResponse { 1: set memberChatMids; 2: set invitedChatMids; } + struct GetAllowedRegistrationMethodResponse { 1: T70_Z0 registrationMethod; } + struct GetAssertionChallengeResponse { 1: string sessionId; 2: string challenge; } + struct GetAttestationChallengeResponse { 1: string sessionId; 2: string challenge; } + struct GetBalanceResponse { 1: Balance balance; } + struct GetBalanceSummaryResponseV2 { 1: LinePayInfo payInfo; 2: list payPromotions; 4: LinePointInfo pointInfo; 5: BalanceShortcutInfo balanceShortcutInfo; } + struct GetBalanceSummaryV4WithPayV3Response { 1: LinePayInfoV3 payInfo; 2: list payPromotions; 3: BalanceShortcutInfoV4 balanceShortcutInfo; 4: LinePointInfo pointInfo; } + struct GetBirthdayEffectResponse { 1: HomeEffect effect; } + struct GetBleDeviceRequest { 1: string serviceUuid; 2: string psdi; } + struct GetBuddyChatBarRequest { 1: string buddyMid; 2: i64 chatBarRevision; 3: string richMenuId; } + struct GetBuddyLiveRequest { 1: string mid; } + struct GetBuddyLiveResponse { 1: BuddyLive info; 2: i64 refreshedIn; } + struct GetBuddyStatusBarV2Request { 1: string botMid; 2: i64 revision; } + struct GetCallStatusRequest { 1: string basicSearchId; 2: string otp; } + struct GetCallStatusResponse { 1: bool isInsideBusinessHours; 2: string displayName; @@ -4704,53 +5375,68 @@ struct GetCallStatusResponse { 4: bool isExpiredOtp; 5: bool requireOtpInCallUrl; } + struct GetCampaignRequest { 1: string campaignType; } + struct GetCampaignResponse { 1: NZ0_EnumC12188n campaignStatus; 2: CampaignProperty campaignProperty; 3: i64 intervalDateTimeMillis; } + struct GetChallengeForPaakAuthRequest { 1: string authSessionId; } + struct GetChallengeForPaakAuthRequest { 1: string sessionId; } + struct GetChallengeForPaakAuthResponse { 1: PublicKeyCredentialRequestOptions options; } + struct GetChallengeForPaakAuthResponse { 1: o80_p80_j options; } + struct GetChallengeForPrimaryRegRequest { 1: string sessionId; } + struct GetChallengeForPrimaryRegResponse { 1: PublicKeyCredentialCreationOptions options; } + struct GetChannelContextRequest { 1: string authSessionId; } + struct GetChannelContextResponse { 1: n80_W70_a channelContext; } + struct GetChatappRequest { 1: string chatappId; 2: string language; } + struct GetChatappResponse { 1: Chatapp app; } + struct GetChatsRequest { 1: list chatMids; 2: bool withMembers; 3: bool withInvitees; } + struct GetChatsResponse { 1: list chats; } + struct GetCoinHistoryRequest { 1: jO0_EnumC27533B appStoreCode; 2: string country; @@ -4759,38 +5445,46 @@ struct GetCoinHistoryRequest { 5: i32 offset; 6: i32 limit; } + struct GetCoinHistoryResponse { 1: list histories; 2: Coin balance; 3: i32 offset; 4: bool hasNext; } + struct GetCoinProductsRequest { 1: jO0_EnumC27533B appStoreCode; 2: string country; 3: string language; 4: jO0_EnumC27559z pgCode; } + struct GetCoinProductsResponse { 1: list items; } + struct GetContactCalendarEventResponse { 1: string targetUserMid; 2: LN0_X0 userType; 3: ContactCalendarEvents ContactCalendarEvents; 4: i64 snapshotTimeMillis; } + struct GetContactCalendarEventTarget { 1: string targetUserMid; } + struct GetContactCalendarEventsRequest { 1: list targetUsers; 2: Pb1_V7 syncReason; 3: set requiredContactCalendarEvents; } + struct GetContactCalendarEventsResponse { 1: list responses; } + struct GetContactV3Response { 1: string targetUserMid; 2: LN0_X0 userType; @@ -4800,39 +5494,48 @@ struct GetContactV3Response { 6: LN0_y0 recommendationDetail; 7: NotificationSettingEntry notificationSettingEntry; } + struct GetContactV3Target { 1: string targetUserMid; } + struct GetContactsV3Request { 1: list targetUsers; 2: Pb1_V7 syncReason; 3: bool checkUserStatusStrictly; } + struct GetContactsV3Response { 1: list responses; } + struct I80_C26413m { 1: string authSessionId; 2: I80_B0 simCard; } + struct I80_C26414n { 1: string countryCode; 2: bool countryInEEA; 3: set countrySetOfEEA; } + struct GetCountryInfoResponse { 1: string countryCode; 2: bool countryInEEA; 3: set countrySetOfEEA; } + struct GetDisasterCasesResponse { 1: list disasters; 2: list messageTemplate; 3: i64 ttlInMillis; } + struct GetE2EEKeyBackupCertificatesResponse { 1: list urlHashList; } + struct GetE2EEKeyBackupInfoResponse { 1: string blobHeaderHash; 2: string blobPayloadHash; @@ -4840,97 +5543,121 @@ struct GetE2EEKeyBackupInfoResponse { 4: i64 startTimeMillis; 5: i64 endTimeMillis; } + struct GetExchangeKeyRequest { 1: string sessionId; } + struct GetExchangeKeyResponse { 2: map exchangeKey; } + struct GetFollowBlacklistRequest { 1: string cursor; } + struct GetFollowBlacklistResponse { 1: list profiles; 2: string cursor; } + struct GetFollowersRequest { 1: Pb1_A4 followMid; 2: string cursor; } + struct GetFollowersResponse { 1: list profiles; 2: string cursor; 3: i64 followingCount; 4: i64 followerCount; } + struct GetFollowingsRequest { 1: Pb1_A4 followMid; 2: string cursor; } + struct GetFollowingsResponse { 1: list profiles; 2: string cursor; 3: i64 followingCount; 4: i64 followerCount; } + struct GetFontMetasRequest { 1: VR0_l requestCause; } + struct GetFontMetasResponse { 1: list fontMetas; 2: i32 ttlInSeconds; } + struct GetFriendDetailResponse { 1: string targetUserMid; 2: LN0_Z friendDetail; } + struct GetFriendDetailTarget { 1: string targetUserMid; } + struct GetFriendDetailsRequest { 1: list targetUsers; 2: Pb1_V7 syncReason; } + struct GetFriendDetailsResponse { 1: list responses; } + struct GetGnbBadgeStatusRequest { 1: string uenRevision; } + struct GetGnbBadgeStatusResponse { 1: string uenRevision; 2: NZ0_EnumC12170h badgeStatus; } + struct GetGoogleAdOptionsRequest { 1: string squareMid; 2: string chatMid; 3: AdScreen adScreen; } + struct GetGoogleAdOptionsResponse { 1: bool showAd; 2: list contentUrls; 3: map> customTargeting; 4: i32 clientCacheTtlSeconds; } + struct GetGroupCallUrlInfoRequest { 1: string urlId; } + struct GetGroupCallUrlInfoResponse { 1: string title; 2: i64 createdTimeMillis; } + struct GetGroupCallUrlsResponse { 1: list urls; } + struct GetHomeFlexContentRequest { 1: i32 supportedFlexVersion; } + struct GetHomeFlexContentResponse { 1: list placements; 2: i64 expireTimeMillis; 3: string gnbBadgeId; 4: i64 gnbBadgeExpireTimeMillis; } + struct GetHomeServiceListResponse { 1: list services; 2: list fixedServiceIds; @@ -4939,54 +5666,67 @@ struct GetHomeServiceListResponse { 5: list fixedServiceIdsV3; 6: i32 specificServiceId; } + struct GetHomeServicesRequest { 1: list ids; } + struct GetHomeServicesResponse { 1: list services; } + struct GetIncentiveStatusResponse { 1: i32 paypayPoint; 2: string incentiveCode; 3: bool subscribedFromViral; } + struct GetInvitationTicketUrlRequest { 2: string mid; } + struct GetInvitationTicketUrlResponse { 1: string invitationURL; } + struct GetJoinableSquareChatsRequest { 1: string squareMid; 10: string continuationToken; 11: i32 limit; } + struct GetJoinableSquareChatsResponse { 1: list squareChats; 2: string continuationToken; 3: i32 totalSquareChatCount; 4: map squareChatStatuses; } + struct GetJoinedMembershipByBotMidRequest { 1: string botMid; } + struct GetJoinedMembershipRequest { 1: string uniqueKey; } + struct GetJoinedSquareChatsRequest { 2: string continuationToken; 3: i32 limit; } + struct GetJoinedSquareChatsResponse { 1: list chats; 2: map chatMembers; 3: map statuses; 4: string continuationToken; } + struct GetJoinedSquaresRequest { 2: string continuationToken; 3: i32 limit; } + struct GetJoinedSquaresResponse { 1: list squares; 2: map members; @@ -4995,19 +5735,23 @@ struct GetJoinedSquaresResponse { 5: string continuationToken; 6: map noteStatuses; } + struct GetKeyBackupCertificatesV2Response { 1: list urlHashList; } + struct GetLFLSuggestionResponse { 1: string majorVersion; 2: string minorVersion; 3: string clusterLink; } + struct GetLiveTalkInfoForNonMemberRequest { 1: string squareChatMid; 2: string sessionId; 3: list speakers; } + struct GetLiveTalkInfoForNonMemberResponse { 1: string chatName; 2: string chatImageObsHash; @@ -5015,51 +5759,65 @@ struct GetLiveTalkInfoForNonMemberResponse { 4: list speakers; 5: string chatInvitationTicket; } + struct GetLiveTalkInvitationUrlRequest { 1: string squareChatMid; 2: string sessionId; } + struct GetLiveTalkInvitationUrlResponse { 1: string invitationUrl; } + struct GetLiveTalkSpeakersForNonMemberRequest { 1: string squareChatMid; 2: string sessionId; 3: list speakers; } + struct GetLiveTalkSpeakersForNonMemberResponse { 1: list speakers; } + struct GetLoginActorContextRequest { 1: string authSessionId; } + struct GetLoginActorContextRequest { 1: string sessionId; } + struct GetLoginActorContextResponse { 1: string appType; 2: string accessLocation; } + struct GetLoginActorContextResponse { 1: string applicationType; 2: string ipAddress; 3: string location; } + struct GetMappedProfileIdsRequest { 1: list targetUserMids; } + struct GetMappedProfileIdsResponse { 1: map mappings; } + struct I80_C26415o { 1: string authSessionId; } + struct I80_C26416p { 1: string maskedEmail; } + struct GetMaskedEmailResponse { 1: string maskedEmail; } + struct GetMessageReactionsRequest { 1: string squareChatMid; 2: string messageId; @@ -5068,24 +5826,29 @@ struct GetMessageReactionsRequest { 5: i32 limit; 6: string threadMid; } + struct GetMessageReactionsResponse { 1: list reactions; 2: SquareMessageReactionStatus status; 3: string continuationToken; } + struct GetModuleLayoutV4Request { 2: string etag; } + struct GetModulesRequestV2 { 1: string etag; 2: string deviceAdId; } + struct GetModulesRequestV3 { 1: string etag; 2: NZ0_EnumC12169g1 tabIdentifier; 3: string deviceAdId; 4: bool agreedWithTargetingAdByMid; } + struct GetModulesV4WithStatusRequest { 1: string etag; 2: string subTabId; @@ -5093,14 +5856,17 @@ struct GetModulesV4WithStatusRequest { 4: bool agreedWithTargetingAdByMid; 5: string deviceId; } + struct GetMusicSubscriptionStatusResponse { 1: i64 validUntil; 2: bool expired; 3: bool isStickersPremiumEnabled; } + struct GetMyAssetInformationV2Request { 1: bool refresh; } + struct GetMyAssetInformationV2Response { 1: HeaderInfo headerInfo; 2: list assetServiceInfos; @@ -5111,126 +5877,157 @@ struct GetMyAssetInformationV2Response { 7: ScoreInfo scoreInfo; 8: i64 timestamp; } + struct GetMyChatappsRequest { 1: string language; 2: string continuationToken; } + struct GetMyChatappsResponse { 1: list apps; 2: string continuationToken; } + struct GetMyDashboardRequest { 1: NZ0_EnumC12169g1 tabIdentifier; } + struct GetMyDashboardResponse { 1: NZ0_W0 responseStatus; 2: list messages; 3: i32 cacheTimeSec; 4: string cautionText; } + struct GetNoteStatusRequest { 2: string squareMid; } + struct GetNoteStatusResponse { 1: string squareMid; 2: NoteStatus status; } + struct GetNotificationSettingsRequest { 1: set chatMids; 2: Pb1_V7 syncReason; } + struct GetNotificationSettingsResponse { 1: map notificationSettingEntries; } + struct I80_C26417q { 1: string authSessionId; } + struct GetPasswordHashingParametersForPwdRegRequest { 1: string authSessionId; } + struct GetPasswordHashingParametersForPwdRegResponse { 1: PasswordHashingParameters params; 2: list passwordValidationRule; } + struct I80_C26418r { 1: PasswordHashingParameters params; 2: list passwordValidationRule; } + struct GetPasswordHashingParametersForPwdVerifRequest { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; } + struct I80_C26419s { 1: string authSessionId; } + struct GetPasswordHashingParametersForPwdVerifResponse { 1: bool isV1HashRequired; 2: V1PasswordHashingParameters v1HashParams; 3: PasswordHashingParameters hashParams; } + struct I80_C26420t { 1: bool isV1HashRequired; 2: V1PasswordHashingParameters v1HashParams; 3: PasswordHashingParameters hashParams; } + struct GetPasswordHashingParametersRequest { 1: string sessionId; } + struct GetPasswordHashingParametersResponse { 1: string hmacKey; 2: ScryptParams scryptParams; 3: list passwordValidationRule; } + struct GetPhoneVerifMethodForRegistrationRequest { 1: string authSessionId; 2: Device device; 3: UserPhoneNumber userPhoneNumber; } + struct GetPhoneVerifMethodForRegistrationResponse { 1: list availableMethods; 2: string prettifiedPhoneNumber; } + struct GetPhoneVerifMethodV2Request { 1: string authSessionId; 2: Device device; 3: UserPhoneNumber userPhoneNumber; } + struct I80_C26421u { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; } + struct I80_C26422v { 1: list availableMethods; 3: string prettifiedPhoneNumber; } + struct GetPhoneVerifMethodV2Response { 1: list availableMethods; 3: string prettifiedPhoneNumber; } + struct GetPhotoboothBalanceResponse { 1: i32 availableTickets; 2: i64 nextTicketAvailableAt; } + struct GetPopularKeywordsResponse { 1: list popularKeywords; 2: i64 expiredAt; } + struct GetPredefinedScenarioSetsRequest { 1: list deviceIds; } + struct GetPredefinedScenarioSetsResponse { 1: map scenarioSets; } + struct GetPremiumContextForMigResponse { 1: bool isPremiumActive; 2: bool isPremiumBackupActive; 3: T70_L premiumType; 4: list availablePremiumTypes; } + struct GetPremiumDataRetentionResponse { 1: list dataRetentions; 2: i64 noSyncUntil; } + struct GetPremiumStatusResponse { 1: bool active; 2: i64 validUntil; @@ -5251,6 +6048,7 @@ struct GetPremiumStatusResponse { 18: list canceledProviders; 19: i64 nextPaymentTime; } + struct GetPreviousMessagesV2Request { 1: string messageBoxId; 2: MessageBoxV2MessageId endMessageId; @@ -5258,62 +6056,78 @@ struct GetPreviousMessagesV2Request { 4: bool withReadCount; 5: bool receivedOnly; } + struct GetProductLatestVersionForUserRequest { 1: Ob1_O0 productType; 2: string productId; } + struct GetProductLatestVersionForUserResponse { 1: i64 latestVersion; 2: string latestVersionString; } + struct GetProductRequest { 1: Ob1_O0 productType; 2: string productId; 3: string carrierCode; 4: bool saveBrowsingHistory; } + struct GetProductResponse { 1: ProductDetail productDetail; } + struct GetProfileRequest { 1: string profileId; } + struct GetProfileResponse { 1: Profile profile; } + struct GetProfilesRequest { 1: Pb1_V7 syncReason; } + struct GetProfilesResponse { 1: list profiles; } + struct GetPublishedMembershipsRequest { 1: string basicSearchId; } + struct GetQuickMenuResponse { 1: QuickMenuPointInfo pointInfo; 2: QuickMenuCouponInfo couponInfo; 3: QuickMenuMyCardInfo myCardInfo; } + struct GetRecommendationDetailResponse { 1: string targetUserMid; 2: LN0_y0 recommendationOrNot; } + struct GetRecommendationDetailTarget { 1: string targetUserMid; } + struct GetRecommendationDetailsRequest { 1: list targetUsers; 2: Pb1_V7 syncReason; } + struct GetRecommendationDetailsResponse { 1: list responses; } + struct GetRecommendationResponse { 1: list results; 2: string continuationToken; 3: i64 totalSize; } + struct GetRepairElementsRequest { 1: bool profile; 2: bool settings; @@ -5328,6 +6142,7 @@ struct GetRepairElementsRequest { 11: Pb1_V7 syncReason; 12: map localProfileMappings; } + struct GetRepairElementsResponse { 1: RepairTriggerProfileElement profile; 2: RepairTriggerSettingsElement settings; @@ -5341,41 +6156,53 @@ struct GetRepairElementsResponse { 10: RepairTriggerGroupMembersElement groupMembers; 11: RepairTriggerProfileMappingListElement profileMappings; } + struct GetRequest { 1: string keyName; 2: t80_h ns; } + struct GetResourceFileReponse { 1: GetTagClusterFileResponse tagClusterFileResponse; } + struct GetResourceFileRequest { 1: Ob1_C12642m0 tagClusterFileRequest; 2: bool staging; } + struct GetResponse { 1: SettingValue value; } + struct GetResponseStatusRequest { 1: string botMid; } + struct GetResponseStatusResponse { 1: jf_EnumC27712a displayedResponseStatus; } + struct GetSCCRequest { 1: string basicSearchId; } + struct I80_C26423w { 1: string authSessionId; } + struct I80_C26424x { 1: I80_y0 encryptionKey; } + struct GetSeasonalEffectsResponse { 1: list effects; } + struct GetSecondAuthMethodResponse { 1: T70_e1 secondAuthMethod; } + struct GetServiceShortcutMenuResponse { 1: string revision; 2: i32 refreshTimeSec; @@ -5384,156 +6211,198 @@ struct GetServiceShortcutMenuResponse { 5: string menuDescription; 6: i32 numberOfItemsInRow; } + struct GetSessionContentBeforeMigCompletionResponse { 1: bool appTypeDifferentFromPrevDevice; 2: bool e2eeKeyBackupServiceConfig; 4: i32 e2eeKeyBackupPeriodServiceConfig; } + struct GetSmartChannelRecommendationsRequest { 1: i32 maxResults; 2: string placement; 3: bool testMode; } + struct GetSmartChannelRecommendationsResponse { 1: list smartChannelRecommendations; 2: i32 minInterval; 3: string requestId; } + struct GetSquareAuthoritiesRequest { 2: set squareMids; } + struct GetSquareAuthoritiesResponse { 1: map authorities; } + struct GetSquareAuthorityRequest { 1: string squareMid; } + struct GetSquareAuthorityResponse { 1: SquareAuthority authority; } + struct GetSquareBotRequest { 1: string botMid; } + struct GetSquareBotResponse { 1: SquareBot squareBot; } + struct GetSquareCategoriesResponse { 1: list categoryList; } + struct GetSquareChatAnnouncementsRequest { 2: string squareChatMid; } + struct GetSquareChatAnnouncementsResponse { 1: list announcements; } + struct GetSquareChatEmidRequest { 1: string squareChatMid; } + struct GetSquareChatEmidResponse { 1: string squareChatEmid; } + struct GetSquareChatFeatureSetRequest { 2: string squareChatMid; } + struct GetSquareChatFeatureSetResponse { 1: SquareChatFeatureSet squareChatFeatureSet; } + struct GetSquareChatMemberRequest { 2: string squareMemberMid; 3: string squareChatMid; } + struct GetSquareChatMemberResponse { 1: SquareChatMember squareChatMember; } + struct GetSquareChatMembersRequest { 1: string squareChatMid; 2: string continuationToken; 3: i32 limit; } + struct GetSquareChatMembersResponse { 1: list squareChatMembers; 2: string continuationToken; 3: map contentsAttributes; } + struct GetSquareChatRequest { 1: string squareChatMid; } + struct GetSquareChatResponse { 1: SquareChat squareChat; 2: SquareChatMember squareChatMember; 3: SquareChatStatus squareChatStatus; } + struct GetSquareChatStatusRequest { 2: string squareChatMid; } + struct GetSquareChatStatusResponse { 1: SquareChatStatus chatStatus; } + struct GetSquareEmidRequest { 1: string squareMid; } + struct GetSquareEmidResponse { 1: string squareEmid; } + struct GetSquareFeatureSetRequest { 2: string squareMid; } + struct GetSquareFeatureSetResponse { 1: SquareFeatureSet squareFeatureSet; } + struct GetSquareInfoByChatMidRequest { 1: string squareChatMid; } + struct GetSquareInfoByChatMidResponse { 1: string defaultChatMid; 2: string squareName; 3: string squareDesc; } + struct GetSquareMemberRelationRequest { 2: string squareMid; 3: string targetSquareMemberMid; } + struct GetSquareMemberRelationResponse { 1: string squareMid; 2: string targetSquareMemberMid; 3: SquareMemberRelation relation; } + struct GetSquareMemberRelationsRequest { 2: SquareMemberRelationState state; 3: string continuationToken; 4: i32 limit; } + struct GetSquareMemberRelationsResponse { 1: list squareMembers; 2: map relations; 3: string continuationToken; } + struct GetSquareMemberRequest { 2: string squareMemberMid; } + struct GetSquareMemberResponse { 1: SquareMember squareMember; 2: SquareMemberRelation relation; 3: string oneOnOneChatMid; 4: ContentsAttribute contentsAttribute; } + struct GetSquareMembersBySquareRequest { 2: string squareMid; 3: set squareMemberMids; } + struct GetSquareMembersBySquareResponse { 1: list members; 2: map contentsAttributes; } + struct GetSquareMembersRequest { 2: set mids; } + struct GetSquareMembersResponse { 1: map members; } + struct GetSquareRequest { 2: string mid; } + struct GetSquareResponse { 1: Square square; 2: SquareMember myMembership; @@ -5543,71 +6412,89 @@ struct GetSquareResponse { 6: NoteStatus noteStatus; 7: SquareExtraInfo extraInfo; } + struct GetSquareStatusRequest { 2: string squareMid; } + struct GetSquareStatusResponse { 1: SquareStatus squareStatus; } + struct GetSquareThreadMidRequest { 1: string chatMid; 2: string messageId; } + struct GetSquareThreadMidResponse { 1: string threadMid; } + struct GetSquareThreadRequest { 1: string threadMid; 2: bool includeRootMessage; } + struct GetSquareThreadResponse { 1: SquareThread squareThread; 2: SquareThreadMember myThreadMember; 3: SquareMessage rootMessage; } + struct GetStudentInformationResponse { 1: StudentInformation studentInformation; 2: bool isValid; } + struct GetSubscriptionPlansRequest { 1: Ob1_S1 subscriptionService; 2: Ob1_K1 storeCode; } + struct GetSubscriptionPlansResponse { 1: list plans; } + struct GetSubscriptionStatusRequest { 1: bool includeOtherOwnedSubscriptions; } + struct GetSubscriptionStatusResponse { 1: map subscriptions; 2: bool hasValidStudentInformation; 3: map> otherOwnedSubscriptions; } + struct GetSuggestDictionarySettingResponse { 1: list results; } + struct GetSuggestResourcesV2Request { 1: Ob1_O0 productType; 2: list productIds; } + struct GetSuggestResourcesV2Response { 1: map suggestResources; } + struct GetSuggestTrialRecommendationResponse { 1: list recommendations; 2: i64 expiresAt; 3: string recommendationGrouping; } + struct GetTagClusterFileResponse { 1: string path; 2: i64 updatedTimeMillis; } + struct GetTaiwanBankBalanceRequest { 1: string accessToken; 2: string authorizationCode; 3: string codeVerifier; } + struct GetTaiwanBankBalanceResponse { 1: string maintenaceText; 2: list lineBankPromotions; @@ -5615,37 +6502,46 @@ struct GetTaiwanBankBalanceResponse { 4: LineBankShortcutInfo lineBankShortcutInfo; 5: TaiwanBankLoginParameters loginParameters; } + struct GetTargetProfileResponse { 1: string targetUserMid; 2: LN0_X0 userType; 3: TargetProfileDetail targetProfileDetail; } + struct GetTargetProfileTarget { 1: string targetUserMid; } + struct GetTargetProfilesRequest { 1: list targetUsers; 2: Pb1_V7 syncReason; } + struct GetTargetProfilesResponse { 1: list responses; } + struct GetTargetingPopupResponse { 1: list targetingPopups; 2: i32 intervalTimeSec; } + struct GetThaiBankBalanceRequest { 1: string deviceId; } + struct GetThaiBankBalanceResponse { 1: string maintenaceText; 2: ThaiBankBalanceInfo thaiBankBalanceInfo; 3: list lineBankPromotions; 4: LineBankShortcutInfo lineBankShortcutInfo; } + struct GetTotalCoinBalanceRequest { 1: jO0_EnumC27533B appStoreCode; } + struct GetTotalCoinBalanceResponse { 1: string totalBalance; 2: string paidCoinBalance; @@ -5653,40 +6549,50 @@ struct GetTotalCoinBalanceResponse { 4: string rewardCoinBalance; 5: string expectedAutoExchangedCoinBalance; } + struct GetUserCollectionsRequest { 1: i64 lastUpdatedTimeMillis; 2: bool includeSummary; 3: Ob1_O0 productType; } + struct GetUserCollectionsResponse { 1: list collections; 2: bool updated; } + struct GetUserProfileResponse { 1: UserProfile userProfile; } + struct GetUserSettingsRequest { 1: set requestedAttrs; } + struct GetUserSettingsResponse { 1: set requestedAttrs; 2: SquareUserSettings userSettings; } + struct GetUserVectorRequest { 1: string majorVersion; } + struct GetUserVectorResponse { 1: list userVector; 2: string majorVersion; 3: string minorVersion; } + struct GetUsersMappedByProfileRequest { 1: string profileId; 2: Pb1_V7 syncReason; } + struct GetUsersMappedByProfileResponse { 1: list mappedMids; } + struct GlobalEvent { 1: Pb1_EnumC13209v5 type; 2: i32 minDelayInMinutes; @@ -5694,6 +6600,7 @@ struct GlobalEvent { 4: i64 createTimeMillis; 5: bool maxDelayHardLimit; } + struct GroupCall { 1: bool online; 2: string chatMid; @@ -5704,6 +6611,7 @@ struct GroupCall { 7: Pb1_EnumC13251y5 protocol; 8: i32 maxAllowableMembers; } + struct GroupCallRoute { 1: string token; 2: CallHost cscf; @@ -5723,11 +6631,13 @@ struct GroupCallRoute { 16: string voipAddress6; 17: string stnpk; } + struct GroupCallUrl { 1: string urlId; 2: string title; 3: i64 createdTimeMillis; } + struct GroupExtra { 1: string creator; 2: bool preventedJoinByTicket; @@ -5738,6 +6648,7 @@ struct GroupExtra { 7: bool ticketDisabled; 8: bool autoName; } + struct HeaderContent { 1: string iconUrl; 2: string iconAltText; @@ -5746,18 +6657,22 @@ struct HeaderContent { 5: string animationImageUrl; 6: string tooltipText; } + struct HeaderInfo { 1: string totalBalance; 2: CurrencyProperty currencyProperty; } + struct HideSquareMemberContentsRequest { 1: string squareMemberMid; } + struct HomeCategory { 1: i32 id; 2: string title; 3: list ids; } + struct HomeEffect { 1: string id; 2: string resourceUrl; @@ -5765,6 +6680,7 @@ struct HomeEffect { 4: i64 startDate; 5: i64 endDate; } + struct HomeService { 1: i32 id; 2: string title; @@ -5777,6 +6693,7 @@ struct HomeService { 9: string serviceDescription; 10: bool iconThemeDisabled; } + struct HomeTabPlacement { 1: string placementTemplateId; 2: string placementService; @@ -5784,19 +6701,23 @@ struct HomeTabPlacement { 4: string contents; 5: string crsPlacementImpressionTrackingUrl; } + struct Icon { 1: string darkModeUrl; 2: string lightModeUrl; } + struct IconDisplayRule { 1: string rule; 2: i32 offset; } + struct IdentifierConfirmationRequest { 1: map metaData; 2: bool forceRegistration; 3: string verificationCode; } + struct IdentityCredentialRequest { 1: map metaData; 2: IdentityProvider identityProvider; @@ -5804,23 +6725,27 @@ struct IdentityCredentialRequest { 4: string cipherText; 5: IdentifierConfirmationRequest confirmationRequest; } + struct IdentityCredentialResponse { 1: map metaData; 2: Pb1_F5 responseType; 3: string confirmationVerifier; 4: i64 timeoutInSeconds; } + struct Image { 1: string url; 2: i32 height; 3: i32 width; } + struct ImageTextProperty { 1: Ob1_EnumC12656r0 status; 2: string plainText; 3: i32 nameTextMaxCharacterCount; 4: string encryptedText; } + struct InstantNews { 1: i64 newsId; 2: string newsService; @@ -5832,82 +6757,102 @@ struct InstantNews { 8: string url; 9: string image; } + struct InviteFriendsRequest { 1: string campaignId; 2: list invitees; } + struct InviteFriendsResponse { 1: fN0_EnumC24469a result; } + struct InviteIntoChatRequest { 1: i32 reqSeq; 2: string chatMid; 3: set targetUserMids; } + struct InviteIntoSquareChatRequest { 1: list inviteeMids; 2: string squareChatMid; } + struct InviteIntoSquareChatResponse { 1: list inviteeMids; } + struct InviteToChangeRoleRequest { 1: string squareChatMid; 2: string sessionId; 3: string targetMid; 4: LiveTalkRole targetRole; } + struct InviteToListenRequest { 1: string squareChatMid; 2: string sessionId; 3: string targetMid; } + struct InviteToLiveTalkRequest { 1: string squareChatMid; 2: string sessionId; 3: list invitees; } + struct InviteToSpeakRequest { 1: string squareChatMid; 2: string sessionId; 3: string targetMid; } + struct InviteToSpeakResponse { 1: string inviteRequestId; } + struct InviteToSquareRequest { 2: string squareMid; 3: list invitees; 4: string squareChatMid; } + struct IpassTokenProperty { 1: string token; 2: string tokenIssuedTimestamp; } + struct IsProductForCollectionsRequest { 1: Ob1_O0 productType; 2: string productId; } + struct IsProductForCollectionsResponse { 1: bool isAvailable; } + struct IsStickerAvailableForCombinationStickerRequest { 1: string packageId; } + struct IsStickerAvailableForCombinationStickerResponse { 1: bool availableForCombinationSticker; } + struct IssueBirthdayGiftTokenRequest { 1: string recipientUserMid; } + struct IssueBirthdayGiftTokenResponse { 1: string giftAssociationToken; } + struct IssueV3TokenForPrimaryRequest { 1: string udid; 2: string systemDisplayName; 3: string modelName; } + struct IssueV3TokenForPrimaryResponse { 1: string accessToken; 2: string refreshToken; @@ -5917,22 +6862,27 @@ struct IssueV3TokenForPrimaryResponse { 6: i64 tokenIssueTimeEpochSec; 7: string mid; } + struct IssueWebAuthDetailsForSecondAuthResponse { 1: WebAuthDetails webAuthDetails; } + struct JoinChatByCallUrlRequest { 1: string urlId; 2: i32 reqSeq; } + struct JoinChatByCallUrlResponse { 1: Chat chat; } + struct JoinLiveTalkRequest { 1: string squareChatMid; 2: string sessionId; 3: bool wantToSpeak; 4: BooleanState claimAdult; } + struct JoinLiveTalkResponse { 1: string hostMemberMid; 2: string memberSessionId; @@ -5950,14 +6900,17 @@ struct JoinLiveTalkResponse { 14: i32 polarisUdpPort; 15: bool speaker; } + struct JoinSquareChatRequest { 1: string squareChatMid; } + struct JoinSquareChatResponse { 1: SquareChat squareChat; 2: SquareChatStatus squareChatStatus; 3: SquareChatMember squareChatMember; } + struct JoinSquareRequest { 2: string squareMid; 3: SquareMember member; @@ -5965,6 +6918,7 @@ struct JoinSquareRequest { 5: SquareJoinMethodValue joinValue; 6: BooleanState claimAdult; } + struct JoinSquareResponse { 1: Square square; 2: SquareAuthority squareAuthority; @@ -5976,32 +6930,39 @@ struct JoinSquareResponse { 8: SquareChatStatus squareChatStatus; 9: SquareChatMember squareChatMember; } + struct JoinSquareThreadRequest { 1: string chatMid; 2: string threadMid; } + struct JoinSquareThreadResponse { 1: SquareThreadMember threadMember; } + struct JoinedMemberships { 1: list subscribing; 2: list expired; } + struct KickOutLiveTalkParticipantsRequest { 1: string squareChatMid; 2: string sessionId; 3: LiveTalkKickOutTarget target; } + struct KickoutFromGroupCallRequest { 1: string chatMid; 2: list targetMids; } + struct LFLClusterV2 { 1: string majorVersion; 2: string minorVersion; 3: list tags; 4: list products; } + struct LIFFMenuColor { 1: i32 iconColor; 2: Qj_EnumC13585b statusBarColor; @@ -6014,179 +6975,221 @@ struct LIFFMenuColor { 9: i32 titleButtonAreaBackgroundColor; 10: i32 titleButtonAreaBorderColor; } + struct LIFFMenuColorSetting { 1: LIFFMenuColor lightModeColor; 2: LIFFMenuColor darkModeColor; } + struct LN0_A { } + struct LN0_A0 { } + struct LN0_B { } + struct LN0_B0 { } + struct LN0_C0 { } + struct LN0_C11270b { } + struct LN0_C11274d { - 1: LN0_AddMetaInvalid invalid; - 2: LN0_AddMetaByPhone byPhone; - 3: LN0_AddMetaBySearchId bySearchId; - 4: LN0_AddMetaByUserTicket byUserTicket; - 5: LN0_AddMetaGroupMemberList groupMemberList; - 6: LN0_AddMetaTimelineCPF timelineCPF; - 7: LN0_AddMetaSmartChannelCPF smartChannelCPF; - 8: LN0_AddMetaOpenchatCPF openchatCPF; - 9: LN0_AddMetaBeaconBanner beaconBanner; - 10: LN0_AddMetaFriendRecommendation friendRecommendation; - 11: LN0_AddMetaHomeRecommendation homeRecommendation; - 12: LN0_AddMetaShareContact shareContact; - 13: LN0_AddMetaStrangerMessage strangerMessage; - 14: LN0_AddMetaStrangerCall strangerCall; - 15: LN0_AddMetaMentionInChat mentionInChat; - 16: LN0_AddMetaTimeline timeline; - 17: LN0_AddMetaUnifiedSearch unifiedSearch; - 18: LN0_AddMetaLineLab lineLab; - 19: LN0_AddMetaLineToCall lineToCall; - 20: LN0_AddMetaGroupVideoCall groupVideo; - 21: LN0_AddMetaFriendRequest friendRequest; - 22: LN0_AddMetaLineLiveViewer liveViewer; - 23: LN0_AddMetaLineThings lineThings; - 24: LN0_AddMetaMediaCapture mediaCapture; - 25: LN0_AddMetaAvatarOASetting avatarOASetting; - 26: LN0_AddMetaUrlScheme urlScheme; - 27: LN0_AddMetaAddressBook addressBook; - 28: LN0_AddMetaUnifiedSearchOATab unifiedSearchOATab; - 29: LN0_AddMetaProfileUndefined profileUndefined; - 30: LN0_AddMetaOAChatHeader DEPRECATED_oaChatHeader; - 31: LN0_AddMetaChatMenu chatMenu; - 32: LN0_AddMetaChatHeader chatHeader; - 33: LN0_AddMetaHomeTabCPF homeTabCPF; - 34: LN0_AddMetaChatList chatList; - 35: LN0_AddMetaChatNote chatNote; - 36: LN0_AddMetaChatNoteMenu chatNoteMenu; - 37: LN0_AddMetaWalletTabCPF walletTabCPF; - 38: LN0_AddMetaOACall oaCall; - 39: LN0_AddMetaSearchIdInUnifiedSearch searchIdInUnifiedSearch; - 40: LN0_AddMetaNewsDigestADCPF newsDigestADCPF; - 41: LN0_AddMetaAlbumCPF albumCPF; - 42: LN0_AddMetaPremiumAgreement premiumAgreement; + 1: AddMetaInvalid invalid; + 2: AddMetaByPhone byPhone; + 3: AddMetaBySearchId bySearchId; + 4: AddMetaByUserTicket byUserTicket; + 5: AddMetaGroupMemberList groupMemberList; + 6: LN0_P timelineCPF; + 7: LN0_L smartChannelCPF; + 8: LN0_G openchatCPF; + 9: LN0_C11282h beaconBanner; + 10: LN0_C11300q friendRecommendation; + 11: LN0_C11307u homeRecommendation; + 12: AddMetaShareContact shareContact; + 13: AddMetaStrangerMessage strangerMessage; + 14: AddMetaStrangerCall strangerCall; + 15: AddMetaMentionInChat mentionInChat; + 16: LN0_O timeline; + 17: LN0_Q unifiedSearch; + 18: LN0_C11313x lineLab; + 19: LN0_A lineToCall; + 20: AddMetaGroupVideoCall groupVideo; + 21: LN0_r friendRequest; + 22: LN0_C11315y liveViewer; + 23: LN0_C11316z lineThings; + 24: LN0_B mediaCapture; + 25: LN0_C11280g avatarOASetting; + 26: LN0_T urlScheme; + 27: LN0_C11276e addressBook; + 28: LN0_S unifiedSearchOATab; + 29: AddMetaProfileUndefined profileUndefined; + 30: LN0_F DEPRECATED_oaChatHeader; + 31: LN0_C11294n chatMenu; + 32: LN0_C11290l chatHeader; + 33: LN0_C11309v homeTabCPF; + 34: LN0_C11292m chatList; + 35: AddMetaChatNote chatNote; + 36: AddMetaChatNoteMenu chatNoteMenu; + 37: LN0_U walletTabCPF; + 38: LN0_E oaCall; + 39: AddMetaSearchIdInUnifiedSearch searchIdInUnifiedSearch; + 40: LN0_D newsDigestADCPF; + 41: LN0_C11278f albumCPF; + 42: LN0_H premiumAgreement; } + struct LN0_C11276e { } + struct LN0_C11278f { } + struct LN0_C11280g { } + struct LN0_C11282h { } + struct LN0_C11290l { } + struct LN0_C11292m { } + struct LN0_C11294n { } + struct LN0_C11300q { } + struct LN0_C11307u { } + struct LN0_C11308u0 { } + struct LN0_C11309v { } + struct LN0_C11310v0 { } + struct LN0_C11312w0 { } + struct LN0_C11313x { } + struct LN0_C11315y { } + struct LN0_C11316z { } + struct LN0_D { } + struct LN0_E { } + struct LN0_F { } + struct LN0_G { } + struct LN0_H { } + struct LN0_L { } + struct LN0_O { } + struct LN0_P { } + struct LN0_Q { } + struct LN0_S { } + struct LN0_T { } + struct LN0_U { } + struct LN0_V { - 1: LN0_UserBlockDetail user; - 2: LN0_BotBlockDetail bot; - 3: LN0_NotBlocked notBlocked; + 1: UserBlockDetail user; + 2: BotBlockDetail bot; + 3: LN0_C11308u0 notBlocked; } + struct LN0_Z { - 1: LN0_UserFriendDetail user; - 2: LN0_BotFriendDetail bot; - 3: LN0_NotFriend notFriend; + 1: UserFriendDetail user; + 2: BotFriendDetail bot; + 3: LN0_C11310v0 notFriend; } + struct LN0_r { } + struct LN0_y0 { - 1: LN0_RecommendationDetail recommendationDetail; - 2: LN0_NotRecommended notRecommended; + 1: RecommendationDetail recommendationDetail; + 2: LN0_C11312w0 notRecommended; } + struct LN0_z0 { - 1: LN0_RecommendationReasonSharedChat sharedChat; - 2: LN0_RecommendationReasonReverseFriendByUserId reverseFriendByUserId; - 3: LN0_RecommendationReasonReverseFriendByQRCode reverseFriendByQrCode; - 4: LN0_RecommendationReasonReverseFriendByPhone reverseFriendByPhone; + 1: RecommendationReasonSharedChat sharedChat; + 2: LN0_C0 reverseFriendByUserId; + 3: LN0_B0 reverseFriendByQrCode; + 4: LN0_A0 reverseFriendByPhone; } + struct LatestProductByAuthorItem { 1: string productId; 2: string displayName; @@ -6195,65 +7198,80 @@ struct LatestProductByAuthorItem { 5: Ob1_I0 productResourceType; 6: Ob1_B0 popupLayer; } + struct LatestProductsByAuthorRequest { 1: Ob1_O0 productType; 2: i64 authorId; 3: i32 limit; } + struct LatestProductsByAuthorResponse { 1: i64 authorId; 2: string author; 3: list items; } + struct LeaveSquareChatRequest { 2: string squareChatMid; 3: bool sayGoodbye; 4: i64 squareChatMemberRevision; } + struct LeaveSquareRequest { 2: string squareMid; } + struct LeaveSquareThreadRequest { 1: string chatMid; 2: string threadMid; } + struct LeaveSquareThreadResponse { 1: SquareThreadMember threadMember; } + struct LeftSquareMember { 1: string squareMemberMid; 2: string displayName; 3: string profileImageObsHash; 4: i64 updatedAt; } + struct LiffAdvertisingId { 1: string advertisingId; 2: bool tracking; 3: Qj_EnumC13584a att; 4: SKAdNetwork skAdNetwork; } + struct LiffChatContext { 1: string chatMid; } + struct LiffDeviceSetting { 1: bool videoAutoPlayAllowed; 2: LiffAdvertisingId advertisingId; } + struct LiffErrorConsentRequired { 1: string channelId; 2: string consentUrl; } + struct LiffErrorPermanentLinkInvalidRequest { 1: string liffId; 2: string fallbackUrl; } + struct LiffFIDOExternalService { 1: string rpId; 2: string rpApiBaseUrl; } + struct LiffSquareChatContext { 1: string squareChatMid; } + struct LiffView { 1: string type; 2: string url; @@ -6287,6 +7305,7 @@ struct LiffView { 31: bool useGmaSdkAllowed; 32: bool useMinimizeButtonAllowed; } + struct LiffViewRequest { 1: string liffId; 2: Qj_C13595l context; @@ -6296,6 +7315,7 @@ struct LiffViewRequest { 6: bool subsequentLiff; 7: string domain; } + struct LiffViewResponse { 1: LiffView view; 2: string contextToken; @@ -6320,20 +7340,24 @@ struct LiffViewResponse { 21: Qj_C13602t fido; 22: bool omitLiffReferrer; } + struct LiffViewWithoutUserContextRequest { 1: string liffId; } + struct LiffWebLoginRequest { 1: string hookedFullUrl; 2: string sessionString; 3: Qj_C13595l context; 4: LiffDeviceSetting deviceSetting; } + struct LiffWebLoginResponse { 1: string returnUrl; 2: string sessionString; 3: string liffId; } + struct LineBankBalanceShortcut { 1: i32 iconPosition; 2: string iconUrl; @@ -6344,15 +7368,18 @@ struct LineBankBalanceShortcut { 7: string tsTargetId; 8: ShortcutUserGuidePopupInfo userGuidePopupInfo; } + struct LineBankPromotion { 1: string mainText; 2: string linkUrl; 3: string tsTargetId; } + struct LineBankShortcutInfo { 1: list mainShortcuts; 2: list subShortcuts; } + struct LinePayInfo { 1: string balanceAmount; 2: CurrencyProperty currencyProperty; @@ -6369,6 +7396,7 @@ struct LinePayInfo { 13: string suspendedText; 14: NZ0_W0 responseStatus; } + struct LinePayInfoV3 { 1: string availableBalance; 2: string availableBalanceString; @@ -6382,6 +7410,7 @@ struct LinePayInfoV3 { 10: string suspendedText; 11: NZ0_W0 responseStatus; } + struct LinePayPromotion { 1: string mainText; 2: string subText; @@ -6390,6 +7419,7 @@ struct LinePayPromotion { 5: string linkUrl; 6: string tsTargetId; } + struct LinePointInfo { 1: string balanceAmount; 2: string applicationUrl; @@ -6397,11 +7427,13 @@ struct LinePointInfo { 4: string displayText; 5: NZ0_W0 responseStatus; } + struct LinkRewardInfo { 1: AssetServiceInfo assetServiceInfo; 2: bool autoConversion; 3: string backgroundColorCode; } + struct LiveTalk { 1: string squareChatMid; 2: string sessionId; @@ -6415,49 +7447,61 @@ struct LiveTalk { 10: i64 revision; 11: i64 startedAt; } + struct LiveTalkEvent { 1: LiveTalkEventType type; 2: LiveTalkEventPayload payload; 3: i64 revision; } + struct LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak { 1: bool allowRequestToSpeak; } + struct LiveTalkEventNotifiedUpdateLiveTalkAnnouncement { 1: string announcement; } + struct LiveTalkEventNotifiedUpdateLiveTalkTitle { 1: string title; } + struct LiveTalkEventNotifiedUpdateSquareMember { 1: string squareMemberMid; 2: string displayName; 3: string profileImageObsHash; 4: SquareMemberRole role; } + struct LiveTalkEventNotifiedUpdateSquareMemberRole { 1: string squareMemberMid; 2: SquareMemberRole role; } + struct LiveTalkExtraInfo { 1: string saturnResponse; } + struct LiveTalkParticipant { 1: string mid; } + struct LiveTalkSpeaker { 1: string displayName; 2: string profileImageObsHash; 3: SquareMemberRole role; } + struct LiveTalkSubscriptionNotification { 1: string squareChatMid; 2: string sessionId; } + struct Locale { 1: string language; 2: string country; } + struct Location { 1: string title; 2: string address; @@ -6469,52 +7513,65 @@ struct Location { 8: GeolocationAccuracy accuracy; 9: double altitudeMeters; } + struct LocationDebugInfo { 1: PoiInfo poiInfo; } + struct LookupAvailableEapRequest { 1: string authSessionId; } + struct LookupAvailableEapResponse { 1: list availableEap; } + struct LpPromotionProperty { 1: string landingPageUrl; 2: string label; 3: string buttonLabel; } + struct MainPopup { 1: string imageObsHash; 2: Button button; } + struct ManualRepairRequest { 1: string syncToken; 2: i32 limit; 3: string continuationToken; } + struct ManualRepairResponse { 1: list events; 2: string syncToken; 3: string continuationToken; } + struct MapProfileToUsersRequest { 1: string profileId; 2: list targetMids; } + struct MapProfileToUsersResponse { 1: list mappedMids; } + struct MarkAsReadRequest { 2: string squareChatMid; 4: string messageId; 5: string threadMid; } + struct MarkChatsAsReadRequest { 2: set chatMids; } + struct MarkThreadsAsReadRequest { 1: string chatMid; } + struct MemberInfo { 1: Membership membership; 2: i32 memberNo; @@ -6523,6 +7580,7 @@ struct MemberInfo { 5: i64 validUntil; 6: string billingItemName; } + struct Membership { 1: i64 membershipId; 2: string uniqueKey; @@ -6541,12 +7599,14 @@ struct Membership { 15: string membershipCardUrl; 16: string openchatUrl; } + struct MentionableBot { 1: string mid; 2: string displayName; 3: string profileImageObsHash; 4: string squareMid; } + struct MentionableSquareMember { 1: string mid; 2: string displayName; @@ -6554,6 +7614,7 @@ struct MentionableSquareMember { 4: SquareMemberRole role; 5: string squareMid; } + struct Message { 1: string from; 2: string to; @@ -6576,10 +7637,12 @@ struct Message { 25: Pb1_B appExtensionType; 27: list reactions; } + struct MessageBoxList { 1: list messageBoxes; 2: bool hasNext; } + struct MessageBoxListRequest { 1: string minChatId; 2: string maxChatId; @@ -6589,35 +7652,42 @@ struct MessageBoxListRequest { 6: i32 lastMessagesPerMessageBoxCount; 7: bool unreadOnly; } + struct MessageBoxV2MessageId { 1: i64 deliveredTime; 2: i64 messageId; } + struct MessageSummary { 1: list summary; 2: list keywords; 3: MessageSummaryRange range; 4: list detailedSummary; } + struct MessageSummaryContent { 1: list summary; 2: list keywords; 3: MessageSummaryRange range; } + struct MessageSummaryRange { 1: i64 from; 2: i64 to; } + struct MessageVisibility { 1: bool showJoinMessage; 2: bool showLeaveMessage; 3: bool showKickoutMessage; } + struct MigratePrimaryUsingQrCodeRequest { 1: string sessionId; 2: string nonce; 3: h80_Y70_a newDevice; } + struct MigratePrimaryUsingQrCodeResponse { 1: string mid; 2: TokenV3IssueResult tokenV3IssueResult; @@ -6625,6 +7695,7 @@ struct MigratePrimaryUsingQrCodeResponse { 4: h80_X70_a accountCountryCode; 5: FormattedPhoneNumbers formattedPhoneNumbers; } + struct MigratePrimaryWithTokenV3Response { 1: string authToken; 2: TokenV3IssueResult tokenV3IssueResult; @@ -6633,17 +7704,21 @@ struct MigratePrimaryWithTokenV3Response { 5: string localFormatPhoneNumber; 6: string mid; } + struct ModuleResponse { 1: NZ0_C12206t0 moduleInstance; } + struct ModuleWithStatusResponse { 1: NZ0_C12221y0 moduleInstance; } + struct MyChatapp { 1: Chatapp app; 2: zf_EnumC40715c category; 3: i64 priority; } + struct MyDashboardItem { 1: string id; 2: string messageText; @@ -6657,20 +7732,25 @@ struct MyDashboardItem { 11: string fullMessageText; 12: string templateCautionText; } + struct MyDashboardMessageIcon { 1: string walletTabIconUrl; 2: string assetTabIconUrl; 3: string iconAltText; } + struct NZ0_C12150a0 { } + struct NZ0_C12152b { } + struct NZ0_C12155c { } + struct NZ0_C12206t0 { 1: string id; 2: string templateName; @@ -6685,15 +7765,18 @@ struct NZ0_C12206t0 { 11:list<_any>categories; 12:list<_any>headers; } + struct NZ0_C12208u { } + struct NZ0_C12209u0 { 1: list fixedModules; 2: string etag; 3: i32 refreshTimeSec; 4: list recommendedModules; } + struct NZ0_C12212v0 { 1: TopTab topTab; 2: list subTabs; @@ -6701,9 +7784,11 @@ struct NZ0_C12212v0 { 4: i32 refreshTimeSec; 6: string etag; } + struct NZ0_C12214w { } + struct NZ0_C12221y0 { 1: NZ0_EnumC12218x0 status; 2: string id; @@ -6718,17 +7803,20 @@ struct NZ0_C12221y0 { 11:list<_any>categories; 12:list<_any>headers; } + struct NZ0_C12224z0 { 1: string etag; 2: i32 refreshTimeSec; 3: list fixedModules; 4: list recommendedModules; } + struct NZ0_D { - 1: NZ0_ModuleLayoutV4Response moduleLayoutV4; - 2: NZ0_com_linecorp_wallet_api_NotModified notModified; - 3: NZ0_com_linecorp_wallet_api_NotFound notFound; + 1: NZ0_C12212v0 moduleLayoutV4; + 2: NZ0_G0 notModified; + 3: NZ0_F0 notFound; } + struct NZ0_E { 1: string id; 2: string etag; @@ -6737,14 +7825,17 @@ struct NZ0_E { 5: bool agreedWithTargetingAdByMid; 6: string deviceId; } + struct NZ0_F { - 1: NZ0_ModuleResponse moduleResponse; - 2: NZ0_com_linecorp_wallet_api_NotModified notModified; - 3: NZ0_com_linecorp_wallet_api_NotFound notFound; + 1: ModuleResponse moduleResponse; + 2: NZ0_G0 notModified; + 3: NZ0_F0 notFound; } + struct NZ0_F0 { } + struct NZ0_G { 1: string id; 2: string etag; @@ -6753,28 +7844,35 @@ struct NZ0_G { 5: bool agreedWithTargetingAdByMid; 6: string deviceId; } + struct NZ0_G0 { } + struct NZ0_H { - 1: NZ0_ModuleWithStatusResponse moduleResponse; - 2: NZ0_com_linecorp_wallet_api_NotModified notModified; - 3: NZ0_com_linecorp_wallet_api_NotFound notFound; + 1: ModuleWithStatusResponse moduleResponse; + 2: NZ0_G0 notModified; + 3: NZ0_F0 notFound; } + struct NZ0_K { - 1: NZ0_ModuleAggregationResponseV2 moduleAggregationResponse; - 2: NZ0_com_linecorp_wallet_api_NotModified notModified; + 1: NZ0_C12209u0 moduleAggregationResponse; + 2: NZ0_G0 notModified; } + struct NZ0_M { - 1: NZ0_ModuleWithStatusAggregationResponse moduleAggregationResponse; - 2: NZ0_com_linecorp_wallet_api_NotModified notModified; + 1: NZ0_C12224z0 moduleAggregationResponse; + 2: NZ0_G0 notModified; } + struct NZ0_S { } + struct NZ0_U { } + struct NearbyEntry { 1: string emid; 2: double distance; @@ -6782,26 +7880,32 @@ struct NearbyEntry { 4: map property; 5: Profile profile; } + struct NoBidCallback { 1: string impEventUrl; 2: string vimpEventUrl; 3: string imp100pEventUrl; } + struct NoteStatus { 1: i32 noteCount; 2: i64 latestCreatedAt; } + struct NotificationSetting { 1: bool mute; } + struct NotificationSettingEntry { 1: NotificationSetting notificationSetting; } + struct NotifyChatAdEntryRequest { 1: string chatMid; 2: string scenarioId; 3: string sdata; } + struct NotifyDeviceConnectionRequest { 1: string deviceId; 2: string connectionId; @@ -6811,26 +7915,32 @@ struct NotifyDeviceConnectionRequest { 6: i64 startTime; 7: i64 endTime; } + struct NotifyDeviceConnectionResponse { 1: i64 latestOffset; } + struct NotifyDeviceDisconnectionRequest { 1: string deviceId; 2: string connectionId; 4: i64 disconnectedTime; } + struct NotifyOATalkroomEventsRequest { 1: list events; } + struct NotifyScenarioExecutedRequest { 2: list scenarioResults; } + struct OATalkroomEvent { 1: string eventId; 2: kf_p type; 3: OATalkroomEventContext context; 4: kf_m content; } + struct OATalkroomEventContext { 1: i64 timestampMillis; 2: string botMid; @@ -6840,74 +7950,93 @@ struct OATalkroomEventContext { 6: string appVersion; 7: string region; } + struct OaAddFriendArea { 1: string text; } + struct Ob1_C12606a0 { } + struct Ob1_C12608b { } + struct Ob1_C12618e0 { 1: Ob1_S1 subscriptionService; 2: string continuationToken; 3: i32 limit; 4: Ob1_O0 productType; } + struct Ob1_C12621f0 { 1: list history; 2: string continuationToken; 3: i64 totalSize; } + struct Ob1_C12630i0 { } + struct Ob1_C12637k1 { } + struct Ob1_C12642m0 { } + struct Ob1_C12649o1 { } + struct Ob1_C12660s1 { } + struct Ob1_E { - 1: Ob1_StickerDisplayData stickerSummary; + 1: _any stickerSummary; } + struct Ob1_G { } + struct Ob1_H0 { - 1: Ob1_LpPromotionProperty lpPromotionProperty; + 1: _any lpPromotionProperty; } + struct Ob1_I0 { 1: i32 stickerResourceType; 2: i32 themeResourceType; 3: i32 sticonResourceType; } + struct Ob1_L { 1: set productTypes; 2: string continuationToken; 3: i32 limit; 4: ShopFilter shopFilter; } + struct Ob1_M { 1: list browsingHistory; 2: string continuationToken; 3: i32 totalSize; } + struct Ob1_N { } + struct Ob1_P0 { - 1: Ob1_StickerSummary stickerSummary; - 2: Ob1_ThemeSummary themeSummary; - 3: Ob1_SticonSummary sticonSummary; + 1: StickerSummary stickerSummary; + 2: ThemeSummary themeSummary; + 3: SticonSummary sticonSummary; } + struct Ob1_U { 1: Ob1_O0 productType; 2: string continuationToken; @@ -6915,12 +8044,14 @@ struct Ob1_U { 4: Ob1_S1 subscriptionService; 5: Ob1_V1 sortType; } + struct Ob1_V { 1: list products; 2: string continuationToken; 3: i64 totalSize; 4: i32 maxSlotCount; } + struct Ob1_W { 1: string continuationToken; 2: i32 limit; @@ -6932,39 +8063,48 @@ struct Ob1_W { 8: bool includeStickerIds; 9: ShopFilter shopFilter; } + struct Ob1_W0 { - 1: Ob1_PromotionBuddyInfo promotionBuddyInfo; - 2: Ob1_PromotionInstallInfo promotionInstallInfo; - 3: Ob1_PromotionMissionInfo promotionMissionInfo; + 1: PromotionBuddyInfo promotionBuddyInfo; + 2: PromotionInstallInfo promotionInstallInfo; + 3: PromotionMissionInfo promotionMissionInfo; } + struct OkButton { 1: string text; } + struct OpenSessionRequest { 1: Device device; 2: Q70_q type; } + struct OpenSessionRequest { 1: map metaData; } + struct OpenSessionResponse { 1: string authSessionId; } + struct OperationResponse { 1: list operations; 2: bool hasMoreOps; 3: TGlobalEvents globalEvents; 4: TIndividualEvents individualEvents; } + struct OrderInfo { 1: string productId; 2: string orderId; 3: string confirmUrl; 4: Bot bot; } + struct P70_k { } + struct PaidCallDialing { 1: PaidCallType type; 2: string dialedNumber; @@ -6985,54 +8125,66 @@ struct PaidCallDialing { 21: i32 adRemains; 22: string adSessionId; } + struct PaidCallResponse { 1: CallHost host; 2: PaidCallDialing dialing; 3: string token; 4: list spotItems; } + struct PartialFullSyncResponse { 1: map targetCategories; } + struct PasswordHashingParameters { 1: string hmacKey; 2: ScryptParams scryptParams; } + struct PasswordHashingParameters { 1: string hmacKey; 2: ScryptParams scryptParams; } + struct PasswordValidationRule { 1: T70_p1 type; 2: list pattern; 3: string clientNoticeMessage; } + struct PasswordValidationRule { 1: U70_q type; 2: list pattern; 3: string clientNoticeMessage; } + struct PasswordValidationRule { 1: c80_EnumC18292e type; 2: list pattern; 3: string clientNoticeMessage; } + struct PaymentAuthenticationInfo { 1: string authToken; 2: string confirmMessage; } + struct PaymentEligibleFriendStatus { 1: string mid; 2: r80_EnumC34367g status; } + struct PaymentLineCardInfo { 1: string designCode; 2: string imageUrl; } + struct PaymentLineCardIssueForm { 1: r80_e0 requiredTermsOfServiceBundle; 2: list availableLineCards; } + struct PaymentRequiredAgreementsInfo { 1: string title; 2: string desc; @@ -7040,11 +8192,13 @@ struct PaymentRequiredAgreementsInfo { 4: string linkUrl; 5: list newAgreements; } + struct PaymentReservationResult { 1: string orderId; 2: string confirmUrl; 3: map extras; } + struct PaymentTradeInfo { 1: string chargeRequestId; 2: r80_g0 chargeRequestType; @@ -7060,28 +8214,35 @@ struct PaymentTradeInfo { 14: string helpUrl; 15: string guideMessage; } + struct Pb1_A4 { 1: string mid; 2: string eMid; } + struct Pb1_A6 { } + struct Pb1_B3 { } + struct Pb1_C12916a5 { 1: string wrappedNonce; 2: string kdfParameter1; 3: string kdfParameter2; } + struct Pb1_C12938c { - 1: Pb1_AbuseReport message; - 2: Pb1_AbuseReportLineMeeting lineMeeting; + 1: AbuseReport message; + 2: AbuseReportLineMeeting lineMeeting; } + struct Pb1_C12946c7 { } + struct Pb1_C12953d0 { 2: string verifier; 3: string pinCode; @@ -7090,46 +8251,59 @@ struct Pb1_C12953d0 { 6: string encryptedKeyChain; 7: string hashKeyChain; } + struct Pb1_C12980f { } + struct Pb1_C12996g1 { } + struct Pb1_C13008h { } + struct Pb1_C13019ha { } + struct Pb1_C13042j5 { } + struct Pb1_C13070l5 { } + struct Pb1_C13097n4 { 1: i32 version; 2: i32 keyId; 4: string keyData; 5: i64 createdTime; } + struct Pb1_C13113o6 { - 1: Pb1_CallRoute callRoute; - 2: Pb1_PaidCallResponse paidCallResponse; + 1: CallRoute callRoute; + 2: PaidCallResponse paidCallResponse; } + struct Pb1_C13114o7 { } + struct Pb1_C13126p5 { } + struct Pb1_C13131pa { } + struct Pb1_C13150r2 { } + struct Pb1_C13154r6 { 1: i64 revision; 2: i64 createdTime; @@ -7142,90 +8316,116 @@ struct Pb1_C13154r6 { 12: string param3; 20: Message message; } + struct Pb1_C13155r7 { 1: string restoreClaim; } + struct Pb1_C13169s7 { 1: string recoveryKey; 2: string blobPayload; } + struct Pb1_C13183t7 { } + struct Pb1_C13190u0 { - 1: Pb1_BuddyRichMenuChatBarItem rich; - 2: Pb1_BuddyWidgetListCharBarItem widgetList; - 3: Pb1_BuddyWebChatBarItem web; + 1: BuddyRichMenuChatBarItem rich; + 2: BuddyWidgetListCharBarItem widgetList; + 3: BuddyWebChatBarItem web; } + struct Pb1_C13202uc { } + struct Pb1_C13208v4 { - 1: Pb1_GroupExtra groupExtra; - 2: Pb1_PeerExtra peerExtra; + 1: GroupExtra groupExtra; + 2: Pb1_A6 peerExtra; } + struct Pb1_C13254y8 { } + struct Pb1_C13263z3 { 1: string blobHeader; 2: string blobPayload; 3: Pb1_A3 reason; } + struct Pb1_Ca { } + struct Pb1_E3 { 1: string blobHeader; 2: list payloadDataList; } + struct Pb1_Ea { } + struct Pb1_F3 { } + struct Pb1_H3 { } + struct Pb1_I3 { } + struct Pb1_Ia { } + struct Pb1_J5 { } + struct Pb1_K3 { } + struct Pb1_M3 { } + struct Pb1_O { } + struct Pb1_O3 { } + struct Pb1_P9 { } + struct Pb1_Q8 { } + struct Pb1_S5 { } + struct Pb1_Sb { 1: i32 reqSeq; 2: string encryptedKeyChain; 3: string hashKeyChain; } + struct Pb1_U1 { } + struct Pb1_U3 { 1: i32 keyVersion; 2: i32 groupKeyId; @@ -7237,6 +8437,7 @@ struct Pb1_U3 { 8: set allowedTypes; 9: i32 specVersion; } + struct Pb1_V3 { 1: i32 version; 2: i32 keyId; @@ -7244,18 +8445,22 @@ struct Pb1_V3 { 5: string privateKey; 6: i64 createdTime; } + struct Pb1_W4 { } + struct Pb1_W5 { - 1: Pb1_E2EEMetadata e2ee; - 2: Pb1_SingleValueMetadata singleValue; + 1: E2EEMetadata e2ee; + 2: SingleValueMetadata singleValue; } + struct Pb1_W6 { 1: i32 reqSeq; 2: Pb1_C13097n4 publicKey; 3: string blobPayload; } + struct Pb1_X { 1: string verifier; 2: Pb1_C13097n4 publicKey; @@ -7263,63 +8468,79 @@ struct Pb1_X { 4: string hashKeyChain; 5: ErrorCode errorCode; } + struct Pb1_X5 { 1: Pb1_W5 metadata; 2: string blobPayload; } + struct Pb1_X7 { - 1: Pb1_OperationResponse operationResponse; - 2: Pb1_FullSyncResponse fullSyncResponse; - 3: Pb1_PartialFullSyncResponse partialFullSyncResponse; + 1: OperationResponse operationResponse; + 2: FullSyncResponse fullSyncResponse; + 3: PartialFullSyncResponse partialFullSyncResponse; } + struct Pb1_Y4 { } + struct Pb1_Za { } + struct Pb1_Zc { } + struct Pb1_ad { 1: string title; } + struct Pb1_cd { } + struct PendingAgreementsResponse { 1: list pendingAgreements; } + struct PermitLoginRequest { 1: string sessionId; 2: map metaData; } + struct PermitLoginResponse { 1: string oneTimeToken; } + struct PhoneVerificationResult { 1: VerificationResult verificationResult; 2: Pb1_EnumC13022i accountMigrationCheckType; 3: bool recommendAddFriends; } + struct PocketMoneyInfo { 1: AssetServiceInfo assetServiceInfo; 2: NZ0_I0 displayType; 3: NZ0_K0 productType; 4: string refinanceText; } + struct PoiInfo { 1: string poiId; 2: Pb1_F6 poiRealm; } + struct PointInfo { 1: AssetServiceInfo assetServiceInfo; } + struct PopularKeyword { 1: string value; 2: bool highlighted; 3: i64 id; } + struct Popup { 1: i64 id; 2: string country; @@ -7332,12 +8553,14 @@ struct Popup { 9: i64 endsAt; 10: i64 createdAt; } + struct PopupContent { 1: string imageUrl; 2: string imageAltText; 3: string linkUrl; 5: string backgroundColorCode; } + struct PopupProperty { 1: string id; 2: string name; @@ -7348,19 +8571,23 @@ struct PopupProperty { 7: bool optOut; 8: NZ0_N0 layoutSize; } + struct Price { 1: string currency; 2: string amount; 3: string priceString; } + struct Priority { 1: i64 value; } + struct Product { 1: string id; 2: i64 productVersion; 3: AR0_o productDetails; } + struct ProductDetail { 1: string id; 2: string billingItemId; @@ -7406,12 +8633,14 @@ struct ProductDetail { 107: bool madeWithStickerMaker; 108: string customDownloadButtonLabel; } + struct ProductList { 1: list productList; 2: i32 offset; 3: i32 totalSize; 11: string title; } + struct ProductListByAuthorRequest { 1: Ob1_O0 productType; 2: string authorId; @@ -7422,13 +8651,16 @@ struct ProductListByAuthorRequest { 7: list additionalProductTypes; 8: Ob1_EnumC12666u1 showcaseType; } + struct ProductSearchSummary { } + struct ProductSubscriptionProperty { 1: bool availableForSubscribe; 2: Ob1_D0 subscriptionAvailability; } + struct ProductSummary { 1: string id; 11: string name; @@ -7445,6 +8677,7 @@ struct ProductSummary { 99: bool canAutoDownload; 100: PromotionInfo promotionInfo; } + struct ProductSummaryForAutoSuggest { 1: string id; 2: i64 version; @@ -7456,26 +8689,32 @@ struct ProductSummaryForAutoSuggest { 8: Ob1_I0 resourceType; 9: Ob1_C1 stickerSize; } + struct ProductSummaryList { 1: list productList; 2: i32 offset; 3: i32 totalSize; } + struct ProductValidationRequest { 1: ProductValidationScheme validationScheme; 10: string authCode; } + struct ProductValidationResult { 1: bool validated; } + struct ProductValidationScheme { 10: string key; 11: i64 offset; 12: i64 size; } + struct ProductWishProperty { 1: i64 totalCount; } + struct Profile { 1: string mid; 3: string userid; @@ -7500,13 +8739,16 @@ struct Profile { 41: Pb1_O6 profileType; 42: i64 createdTimeMillis; } + struct ProfileContent { 1: string value; 2: map meta; } + struct ProfileRefererContent { 1: map oatQueryParameters; } + struct PromotionBuddyDetail { 1: string searchId; 2: ContactStatus contactStatus; @@ -7515,20 +8757,24 @@ struct PromotionBuddyDetail { 5: string statusMessage; 6: Ob1_EnumC12641m brandType; } + struct PromotionBuddyInfo { 1: string buddyMid; 2: PromotionBuddyDetail promotionBuddyDetail; 3: bool showBanner; } + struct PromotionInfo { 1: Ob1_EnumC12610b1 promotionType; 2: Ob1_W0 promotionDetail; 51: PromotionBuddyInfo buddyInfo; } + struct PromotionInstallInfo { 1: string downloadUrl; 2: string customUrlSchema; } + struct PromotionMissionInfo { 1: Ob1_EnumC12607a1 promotionMissionType; 2: bool missionCompleted; @@ -7536,11 +8782,13 @@ struct PromotionMissionInfo { 4: string customUrlSchema; 5: string oaMid; } + struct Provider { 1: string id; 2: string name; 3: string providerPageUrl; } + struct PublicKeyCredentialCreationOptions { 1: PublicKeyCredentialRpEntity rp; 2: PublicKeyCredentialUserEntity user; @@ -7552,20 +8800,24 @@ struct PublicKeyCredentialCreationOptions { 8: string attestation; 9: AuthenticationExtensionsClientInputs extensions; } + struct PublicKeyCredentialDescriptor { 1: string type; 2: string id; 3: set transports; } + struct PublicKeyCredentialDescriptor { 1: string type; 2: string id; 3: set transports; } + struct PublicKeyCredentialParameters { 1: string type; 2: i32 alg; } + struct PublicKeyCredentialRequestOptions { 1: string challenge; 2: i64 timeout; @@ -7574,6 +8826,7 @@ struct PublicKeyCredentialRequestOptions { 5: string userVerification; 6: AuthenticationExtensionsClientInputs extensions; } + struct PublicKeyCredentialRequestOptions { 1: string challenge; 2: i64 timeout; @@ -7582,20 +8835,24 @@ struct PublicKeyCredentialRequestOptions { 5: string userVerification; 6: AuthenticationExtensionsClientInputs extensions; } + struct PublicKeyCredentialRpEntity { 1: string name; 2: string icon; 3: string id; } + struct PublicKeyCredentialUserEntity { 1: string name; 2: string icon; 3: string id; 4: string displayName; } + struct PurchaseEnabledRequest { 1: string uniqueKey; } + struct PurchaseOrder { 1: string shopId; 2: string productId; @@ -7605,11 +8862,13 @@ struct PurchaseOrder { 21: Locale locale; 31: map presentAttributes; } + struct PurchaseOrderResponse { 1: string orderId; 11: map attributes; 12: string billingConfirmUrl; } + struct PurchaseRecord { 1: ProductDetail productDetail; 11: i64 purchasedTime; @@ -7617,11 +8876,13 @@ struct PurchaseRecord { 22: string recipient; 31: Price purchasedPrice; } + struct PurchaseRecordList { 1: list purchaseRecords; 2: i32 offset; 3: i32 totalSize; } + struct PurchaseSubscriptionRequest { 1: string billingItemId; 2: Ob1_S1 subscriptionService; @@ -7630,11 +8891,13 @@ struct PurchaseSubscriptionRequest { 5: bool outsideAppPurchase; 6: bool unavailableItemPurchase; } + struct PurchaseSubscriptionResponse { 1: Ob1_M1 result; 2: string orderId; 3: string confirmUrl; } + struct PushRecvReport { 1: string pushTrackingId; 2: i64 recvTimestamp; @@ -7644,31 +8907,39 @@ struct PushRecvReport { 6: string carrierCode; 7: i64 displayTimestamp; } + struct PutE2eeKeyRequest { 1: string sessionId; 2: map e2eeKey; } + struct Q70_l { } + struct Q70_o { } + struct Qj_C13595l { 1: _any none; - 2: Qj_LiffChatContext chat; - 3: Qj_LiffSquareChatContext squareChat; + 2: LiffChatContext chat; + 3: LiffSquareChatContext squareChat; } + struct Qj_C13599p { - 3: Qj_LiffErrorConsentRequired consentRequired; - 4: Qj_LiffErrorPermanentLinkInvalidRequest permanentLinkInvalidRequest; + 3: LiffErrorConsentRequired consentRequired; + 4: LiffErrorPermanentLinkInvalidRequest permanentLinkInvalidRequest; } + struct Qj_C13602t { - 1: Qj_LiffFIDOExternalService externalService; + 1: _any externalService; } + struct Qj_C13607y { } + struct QuickMenuCouponInfo { 1: string couponCount; 2: string mainText; @@ -7679,10 +8950,12 @@ struct QuickMenuCouponInfo { 7: NZ0_W0 responseStatus; 8: string darkModeIconUrl; } + struct QuickMenuMyCardInfo { 1: list myCardItems; 2: NZ0_W0 responseStatus; } + struct QuickMenuMyCardItem { 1: NZ0_S0 itemType; 2: string mainText; @@ -7692,6 +8965,7 @@ struct QuickMenuMyCardItem { 6: string targetName; 7: string darkModeIconUrl; } + struct QuickMenuPointInfo { 1: string balance; 2: string linkUrl; @@ -7700,37 +8974,46 @@ struct QuickMenuPointInfo { 5: string targetName; 6: NZ0_W0 responseStatus; } + struct R70_a { } + struct R70_c { } + struct R70_d { } + struct R70_t { } + struct RSAEncryptedLoginInfo { 1: string loginId; 2: string loginPassword; } + struct RSAEncryptedPassword { 1: string encrypted; 2: string keyName; } + struct RSAKey { 1: string keynm; 2: string nvalue; 3: string evalue; 4: string sessionKey; } + struct ReactRequest { 1: i32 reqSeq; 2: i64 messageId; 3: ReactionType reactionType; } + struct ReactToMessageRequest { 1: i32 reqSeq; 2: string squareChatMid; @@ -7738,29 +9021,36 @@ struct ReactToMessageRequest { 4: MessageReactionType reactionType; 5: string threadMid; } + struct ReactToMessageResponse { 1: SquareMessageReaction reaction; 2: SquareMessageReactionStatus status; } + struct Reaction { 1: string fromUserMid; 2: i64 atMillis; 3: ReactionType reactionType; } + struct ReactionType { 1: MessageReactionType predefinedReactionType; } + struct RecommendationDetail { 1: i64 createdTime; 2: list reasons; 4: bool hidden; } + struct RecommendationReasonSharedChat { 1: string chatMid; } + struct RefreshAccessTokenRequest { 1: string refreshToken; } + struct RefreshAccessTokenResponse { 1: string accessToken; 2: i64 durationUntilRefreshInSec; @@ -7768,40 +9058,48 @@ struct RefreshAccessTokenResponse { 4: i64 tokenIssueTimeEpochSec; 5: string refreshToken; } + struct RefreshApiRetryPolicy { 1: i64 initialDelayInMillis; 2: i64 maxDelayInMillis; 3: double multiplier; 4: double jitterRate; } + struct RefreshApiRetryPolicy { 1: i64 initialDelayInMillis; 2: i64 maxDelayInMillis; 3: double multiplier; 4: double jitterRate; } + struct RefreshApiRetryPolicy { 1: i64 initialDelayInMillis; 2: i64 maxDelayInMillis; 3: double multiplier; 4: double jitterRate; } + struct RefreshSubscriptionsRequest { 2: list subscriptions; } + struct RefreshSubscriptionsResponse { 1: i64 ttlMillis; 2: map subscriptionStates; } + struct RegPublicKeyCredential { 1: string id; 2: string type; 3: AuthenticatorAttestationResponse response; 4: AuthenticationExtensionsClientOutputs extensionResults; } + struct RegisterCampaignRewardRequest { 1: string campaignId; } + struct RegisterCampaignRewardResponse { 1: NZ0_EnumC12188n campaignStatus; 2: ResultPopupProperty resultPopupProperty; @@ -7810,146 +9108,180 @@ struct RegisterCampaignRewardResponse { 5: i64 registeredDateTimeMillis; 6: string redirectUrlWithoutResultPopup; } + struct RegisterE2EEPublicKeyV2Response { 1: Pb1_C13097n4 publicKey; 2: bool isMasterKeyConflict; } + struct RegisterPrimaryCredentialRequest { 1: string sessionId; 2: R70_p80_m credential; } + struct RegisterPrimaryWithTokenV3Response { 1: string authToken; 2: TokenV3IssueResult tokenV3IssueResult; 3: string mid; } + struct I80_q0 { 1: string authSessionId; 2: I80_y0 encryptionKey; } + struct RegularBadge { 1: string label; 2: string color; } + struct ReissueChatTicketRequest { 1: i32 reqSeq; 2: string groupMid; } + struct ReissueChatTicketResponse { 1: string ticketId; } + struct RejectChatInvitationRequest { 1: i32 reqSeq; 2: string chatMid; } + struct RejectSpeakersRequest { 1: string squareChatMid; 2: string sessionId; 3: set targetMids; } + struct RejectSquareMembersRequest { 2: string squareMid; 3: list requestedMemberMids; } + struct RejectSquareMembersResponse { 1: list rejectedMembers; 2: SquareStatus status; } + struct RejectToSpeakRequest { 1: string squareChatMid; 2: string sessionId; 3: string inviteRequestId; } + struct RemoveFollowerRequest { 1: Pb1_A4 followMid; } + struct RemoveFromFollowBlacklistRequest { 1: Pb1_A4 followMid; } + struct RemoveItemFromCollectionRequest { 1: string collectionId; 3: string productId; 4: string itemId; } + struct RemoveLiveTalkSubscriptionRequest { 1: string squareChatMid; 2: string sessionId; } + struct RemoveProductFromSubscriptionSlotRequest { 1: Ob1_O0 productType; 2: string productId; 3: Ob1_S1 subscriptionService; 4: set productIds; } + struct RemoveProductFromSubscriptionSlotResponse { 1: Ob1_U1 result; } + struct RemoveSubscriptionsRequest { 2: list unsubscriptions; } + struct RepairGroupMembers { 1: i32 numMembers; 3: bool invalidGroup; } + struct RepairProfileMappingMembers { 1: bool matched; 2: i32 numMembers; } + struct RepairTriggerConfigurationsElement { 1: Configurations serverConfigurations; 2: i32 nextCallIntervalMinutes; } + struct RepairTriggerGroupMembersElement { 1: map matchedGroups; 2: map mismatchedGroups; 3: i32 nextCallIntervalMinutes; } + struct RepairTriggerNumElement { 1: bool matched; 2: i32 numValue; 3: i32 nextCallIntervalMinutes; } + struct RepairTriggerProfileElement { 1: Profile serverProfile; 2: i32 nextCallIntervalMinutes; 3: list serverMultiProfiles; } + struct RepairTriggerProfileMappingListElement { 1: map profileMappings; 2: i32 nextCallIntervalMinutes; } + struct RepairTriggerSettingsElement { 1: Settings serverSettings; 2: i32 nextCallIntervalMinutes; } + struct ReportAbuseExRequest { 1: Pb1_C12938c abuseReportEntry; } + struct ReportLiveTalkRequest { 1: string squareChatMid; 2: string sessionId; 3: LiveTalkReportType reportType; } + struct ReportLiveTalkSpeakerRequest { 1: string squareChatMid; 2: string sessionId; 3: string speakerMemberMid; 4: LiveTalkReportType reportType; } + struct ReportMessageSummaryRequest { 1: string chatEmid; 2: i64 messageSummaryRangeTo; 3: MessageSummaryReportType reportType; } + struct ReportRefreshedAccessTokenRequest { 1: string accessToken; } + struct ReportSquareChatRequest { 2: string squareMid; 3: string squareChatMid; 5: ReportType reportType; 6: string otherReason; } + struct ReportSquareMemberRequest { 2: string squareMemberMid; 3: ReportType reportType; @@ -7957,6 +9289,7 @@ struct ReportSquareMemberRequest { 5: string squareChatMid; 6: string threadMid; } + struct ReportSquareMessageRequest { 2: string squareMid; 3: string squareChatMid; @@ -7965,53 +9298,66 @@ struct ReportSquareMessageRequest { 6: string otherReason; 7: string threadMid; } + struct ReportSquareRequest { 2: string squareMid; 3: ReportType reportType; 4: string otherReason; } + struct ReqToSendPhonePinCodeRequest { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; 3: T70_K verifMethod; } + struct I80_s0 { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; 3: I80_EnumC26425y verifMethod; } + struct I80_t0 { 1: list availableMethods; } + struct ReqToSendPhonePinCodeResponse { 1: list availableMethods; } + struct RequestToListenRequest { 1: string squareChatMid; 2: string sessionId; } + struct I80_u0 { 1: string authSessionId; 2: string email; } + struct RequestToSendPasswordSetVerificationEmailResponse { 1: i64 timeoutMinutes; } + struct RequestToSpeakRequest { 1: string squareChatMid; 2: string sessionId; } + struct RequestTokenResponse { 1: string requestToken; 2: string returnUrl; } + struct ReserveInfo { 1: og_I purchaseEnabledStatus; 2: OrderInfo orderInfo; } + struct ReserveRequest { 1: string uniqueKey; } + struct ReserveSubscriptionPurchaseRequest { 1: string billingItemId; 2: fN0_G storeCode; @@ -8020,14 +9366,17 @@ struct ReserveSubscriptionPurchaseRequest { 5: string campaignId; 6: string invitationId; } + struct ReserveSubscriptionPurchaseResponse { 1: fN0_F result; 2: string orderId; 3: string confirmUrl; } + struct I80_w0 { 1: string authSessionId; } + struct I80_x0 { 1: string mid; 2: TokenV3IssueResult tokenV3IssueResult; @@ -8035,6 +9384,7 @@ struct I80_x0 { 4: I80_X70_a accountCountryCode; 5: FormattedPhoneNumbers formattedPhoneNumbers; } + struct ResultPopupProperty { 1: string iconUrl; 2: string text; @@ -8044,18 +9394,22 @@ struct ResultPopupProperty { 6: EventButton eventButton; 7: OaAddFriendArea oaAddfreindArea; } + struct RetrieveRequestTokenWithDocomoV2Response { 1: string loginRedirectUrl; } + struct RetryPolicy { 1: i64 initialDelayInMillis; 2: i64 maxDelayInMillis; 3: double multiplier; 4: double jitterRate; } + struct RevokeTokensRequest { 1: list accessTokens; } + struct RichContent { 1: Callback callback; 2: NoBidCallback noBidCallback; @@ -8065,9 +9419,11 @@ struct RichContent { 6: Priority priority; 7: Uf_t richFormatPayload; } + struct RichImage { 1: string url; } + struct RichItem { 1: string eyeCatchMessage; 2: string message; @@ -8076,14 +9432,17 @@ struct RichItem { 5: string linkUrl; 6: string fallbackUrl; } + struct RichString { 1: string content; 2: map meta; } + struct RichmenuCoordinates { 1: double x; 2: double y; } + struct RichmenuEvent { 1: kf_u type; 2: string richmenuId; @@ -8092,6 +9451,7 @@ struct RichmenuEvent { 5: string clickUrl; 6: kf_r clickAction; } + struct RingbackTone { 1: string uuid; 2: string trackId; @@ -8102,12 +9462,14 @@ struct RingbackTone { 7: string artist; 8: string channelId; } + struct Ringtone { 1: string title; 2: string artist; 3: string oid; 4: string channelId; } + struct Room { 1: string mid; 2: i64 createdTime; @@ -8115,15 +9477,19 @@ struct Room { 31: bool notificationDisabled; 40: list memberMids; } + struct Rssi { 1: i32 value; } + struct S70_b { } + struct S70_k { } + struct SCC { 1: string businessName; 2: string tel; @@ -8133,25 +9499,31 @@ struct SCC { 6: string personName; 7: string memo; } + struct SIMInfo { 1: string phoneNumber; 2: string countryCode; } + struct SKAdNetwork { 1: string identifiers; 2: string version; } + struct I80_y0 { 1: string keyMaterial; } + struct SaveStudentInformationRequest { 1: StudentInformation studentInformation; } + struct Scenario { 1: string id; 2: do0_I trigger; 3: list actions; } + struct ScenarioSet { 1: list scenarios; 2: bool autoClose; @@ -8159,62 +9531,74 @@ struct ScenarioSet { 4: i64 revision; 5: i64 modifiedTime; } + struct ScoreInfo { 1: AssetServiceInfo assetServiceInfo; } + struct ScryptParams { 1: string salt; 2: string nrp; 3: i32 dkLen; } + struct ScryptParams { 1: string salt; 2: string nrp; 3: i64 dkLen; } + struct ScryptParams { 1: string salt; 2: string nrp; 3: i64 dkLen; } + struct SearchSquareChatMembersRequest { 1: string squareChatMid; 2: SquareChatMemberSearchOption searchOption; 3: string continuationToken; 4: i32 limit; } + struct SearchSquareChatMembersResponse { 1: list members; 2: string continuationToken; 3: i32 totalCount; } + struct SearchSquareChatMentionablesRequest { 1: string squareChatMid; 2: SquareChatMentionableSearchOption searchOption; 3: string continuationToken; 4: i32 limit; } + struct SearchSquareChatMentionablesResponse { 1: list mentionables; 2: string continuationToken; } + struct SearchSquareMembersRequest { 2: string squareMid; 3: SquareMemberSearchOption searchOption; 4: string continuationToken; 5: i32 limit; } + struct SearchSquareMembersResponse { 1: list members; 2: i64 revision; 3: string continuationToken; 4: i32 totalCount; } + struct SearchSquaresRequest { 2: string query; 3: string continuationToken; 4: i32 limit; } + struct SearchSquaresResponse { 1: list squares; 2: map squareStatuses; @@ -8222,44 +9606,53 @@ struct SearchSquaresResponse { 4: string continuationToken; 5: map noteStatuses; } + struct SecurityCenterResult { 1: string uri; 2: string token; 3: string cookiePath; 4: bool skip; } + struct SendEncryptedE2EEKeyRequest { 1: string sessionId; 2: h80_Z70_a encryptedSecureChannelPayload; } + struct SendMessageRequest { 1: i32 reqSeq; 2: string squareChatMid; 3: SquareMessage squareMessage; } + struct SendMessageResponse { 1: SquareMessage createdSquareMessage; } + struct SendPostbackRequest { 1: string messageId; 2: string url; 3: string chatMID; 4: string originMID; } + struct SendSquareThreadMessageRequest { 1: i32 reqSeq; 2: string chatMid; 3: string threadMid; 4: SquareMessage threadMessage; } + struct SendSquareThreadMessageResponse { 1: SquareMessage createdThreadMessage; } + struct ServiceDisclaimerInfo { 1: string disclaimerText; 2: string popupTitle; 3: string popupText; } + struct ServiceShortcut { 1: string id; 2: string name; @@ -8272,24 +9665,29 @@ struct ServiceShortcut { 9: Icon coloredPictogramIcon; 10: CustomBadgeLabel customBadgeLabel; } + struct SetChatHiddenStatusRequest { 1: i32 reqSeq; 2: string chatMid; 3: i64 lastMessageId; 4: bool hidden; } + struct I80_z0 { 1: string authSessionId; 2: string password; } + struct SetHashedPasswordRequest { 1: string authSessionId; 2: string password; } + struct SetPasswordRequest { 1: string sessionId; 2: string hashedPassword; } + struct SetRequest { 1: string keyName; 2: t80_p value; @@ -8298,16 +9696,19 @@ struct SetRequest { 5: string transactionId; 6: UpdateReason updateReason; } + struct SetResponse { 1: SettingValue value; 2: string updateTransactionId; } + struct SettingValue { 1: t80_p value; 2: i64 updateTimeMillis; 3: t80_i scope; 4: string scopeKey; } + struct Settings { 10: bool notificationEnable; 11: i64 notificationMuteExpiration; @@ -8400,41 +9801,50 @@ struct Settings { 119: i64 agreementLypPremiumMultiProfile; 120: i64 agreementLypPremiumMultiProfileVersion; } + struct ShareTargetPickerResultRequest { 1: string ott; 2: string liffId; 3: Qj_e0 resultCode; 4: string resultDescription; } + struct ShopFilter { 1: set productAvailabilities; 2: set stickerSizes; 3: set popupLayers; } + struct ShortcutUserGuidePopupInfo { 1: string popupTitle; 2: string popupText; 3: i64 revisionTimeMillis; } + struct ShouldShowWelcomeStickerBannerResponse { 1: bool shouldShowBanner; } + struct I80_B0 { 1: string countryCode; 2: string hni; 3: string carrierName; } + struct SimCard { 1: string countryCode; 2: string hni; 3: string carrierName; } + struct SingleValueMetadata { 1: Pb1_K7 type; } + struct SleepAction { 1: i64 sleepMillis; } + struct SmartChannelRecommendation { 1: i32 minDisplayDuration; 2: string title; @@ -8450,15 +9860,18 @@ struct SmartChannelRecommendation { 12: string downvoteEventUrl; 13: SmartChannelRecommendationTemplate template; } + struct SmartChannelRecommendationTemplate { 1: string type; 2: string bgColorName; } + struct SocialLogin { 1: T70_j1 type; 2: string accessToken; 3: string countryCode; } + struct SpotItem { 2: string name; 3: string phone; @@ -8467,6 +9880,7 @@ struct SpotItem { 6: string countryAreaCode; 10: bool freePhoneCallable; } + struct Square { 1: string mid; 2: string name; @@ -8486,6 +9900,7 @@ struct Square { 16: list svcTags; 17: i64 createdAt; } + struct SquareAuthority { 1: string squareMid; 2: SquareMemberRole updateSquareProfile; @@ -8503,6 +9918,7 @@ struct SquareAuthority { 14: SquareMemberRole useReadonlyDefaultChat; 15: SquareMemberRole sendAllMention; } + struct SquareBot { 1: string botMid; 2: bool active; @@ -8512,6 +9928,7 @@ struct SquareBot { 6: i64 lastModifiedAt; 7: i64 expiredIn; } + struct SquareChat { 1: string squareChatMid; 2: string squareMid; @@ -8525,6 +9942,7 @@ struct SquareChat { 10: MessageVisibility messageVisibility; 11: BooleanState ableToSearchMessage; } + struct SquareChatAnnouncement { 1: i64 announcementSeq; 2: i32 type; @@ -8532,16 +9950,19 @@ struct SquareChatAnnouncement { 4: i64 createdAt; 5: string creator; } + struct SquareChatFeature { 1: SquareChatFeatureControlState controlState; 2: BooleanState booleanValue; } + struct SquareChatFeatureSet { 1: string squareChatMid; 2: i64 revision; 11: SquareChatFeature disableUpdateMaxChatMemberCount; 12: SquareChatFeature disableMarkAsReadEvent; } + struct SquareChatMember { 1: string squareMemberMid; 2: string squareChatMid; @@ -8550,18 +9971,22 @@ struct SquareChatMember { 5: bool notificationForMessage; 6: bool notificationForNewMember; } + struct SquareChatMemberSearchOption { 1: string displayName; 2: bool includingMe; } + struct SquareChatMentionableSearchOption { 1: string displayName; } + struct SquareChatStatus { 3: SquareMessage lastMessage; 4: string senderDisplayName; 5: SquareChatStatusWithoutMessage otherStatus; } + struct SquareChatStatusWithoutMessage { 1: i32 memberCount; 2: i32 unreadMessageCount; @@ -8570,9 +9995,11 @@ struct SquareChatStatusWithoutMessage { 5: NotifiedMessageType notifiedMessageType; 6: list badges; } + struct SquareCleanScore { 1: double score; } + struct SquareEvent { 2: i64 createdTime; 3: SquareEventType type; @@ -8580,12 +10007,14 @@ struct SquareEvent { 5: string syncToken; 6: SquareEventStatus eventStatus; } + struct SquareEventChatPopup { 1: string squareChatMid; 2: i64 popupId; 3: string flexJson; 4: ButtonContent button; } + struct SquareEventMutateMessage { 1: string squareChatMid; 2: SquareMessage squareMessage; @@ -8593,23 +10022,27 @@ struct SquareEventMutateMessage { 4: string senderDisplayName; 5: string threadMid; } + struct SquareEventNotificationJoinRequest { 1: string squareMid; 2: string squareName; 3: string requestMemberName; 4: string profileImageObsHash; } + struct SquareEventNotificationLiveTalk { 1: string squareChatMid; 2: string liveTalkInvitationTicket; 3: string squareChatName; 4: string chatImageObsHash; } + struct SquareEventNotificationMemberUpdate { 1: string squareMid; 2: string squareName; 3: string profileImageObsHash; } + struct SquareEventNotificationMessage { 1: string squareChatMid; 2: SquareMessage squareMessage; @@ -8620,6 +10053,7 @@ struct SquareEventNotificationMessage { 7: NotifiedMessageType notifiedMessageType; 8: i32 reqSeq; } + struct SquareEventNotificationMessageReaction { 1: string squareChatMid; 2: string messageId; @@ -8629,10 +10063,12 @@ struct SquareEventNotificationMessageReaction { 6: string messageText; 7: MessageReactionType type; } + struct SquareEventNotificationNewChatMember { 1: string squareChatMid; 2: string squareChatName; } + struct SquareEventNotificationPost { 1: string squareMid; 2: NotificationPostType notificationPostType; @@ -8640,22 +10076,26 @@ struct SquareEventNotificationPost { 4: string text; 5: string actionUri; } + struct SquareEventNotificationPostAnnouncement { 1: string squareMid; 2: string squareName; 3: string squareProfileImageObsHash; 4: string actionUri; } + struct SquareEventNotificationSquareChatDelete { 1: string squareChatMid; 2: string squareChatName; 3: string profileImageObsHash; } + struct SquareEventNotificationSquareDelete { 1: string squareMid; 2: string squareName; 3: string profileImageObsHash; } + struct SquareEventNotificationThreadMessage { 1: string threadMid; 2: string chatMid; @@ -8665,6 +10105,7 @@ struct SquareEventNotificationThreadMessage { 6: i64 totalMessageCount; 7: string threadRootMessageId; } + struct SquareEventNotificationThreadMessageReaction { 1: string threadMid; 2: string chatMid; @@ -8673,12 +10114,14 @@ struct SquareEventNotificationThreadMessageReaction { 5: string reactorName; 6: string thumbnailObsHash; } + struct SquareEventNotifiedAddBot { 1: string squareChatMid; 2: SquareMember squareMember; 3: string botMid; 4: string botDisplayName; } + struct SquareEventNotifiedCreateSquareChatMember { 1: SquareChat chat; 2: SquareChatStatus chatStatus; @@ -8687,6 +10130,7 @@ struct SquareEventNotifiedCreateSquareChatMember { 5: SquareMember peerSquareMember; 6: SquareChatFeatureSet squareChatFeatureSet; } + struct SquareEventNotifiedCreateSquareMember { 1: Square square; 2: SquareAuthority squareAuthority; @@ -8695,146 +10139,178 @@ struct SquareEventNotifiedCreateSquareMember { 5: SquareFeatureSet squareFeatureSet; 6: NoteStatus noteStatus; } + struct SquareEventNotifiedDeleteSquareChat { 1: SquareChat squareChat; } + struct SquareEventNotifiedDestroyMessage { 1: string squareChatMid; 3: string messageId; 4: string threadMid; } + struct SquareEventNotifiedInviteIntoSquareChat { 1: string squareChatMid; 2: list invitees; 3: SquareMember invitor; 4: SquareMemberRelation invitorRelation; } + struct SquareEventNotifiedJoinSquareChat { 1: string squareChatMid; 2: SquareMember joinedMember; } + struct SquareEventNotifiedKickoutFromSquare { 1: string squareChatMid; 2: list kickees; 3: SquareMember kicker; } + struct SquareEventNotifiedLeaveSquareChat { 1: string squareChatMid; 2: string squareMemberMid; 3: bool sayGoodbye; 4: SquareMember squareMember; } + struct SquareEventNotifiedMarkAsRead { 1: string squareChatMid; 2: string sMemberMid; 4: string messageId; } + struct SquareEventNotifiedRemoveBot { 1: string squareChatMid; 2: SquareMember squareMember; 3: string botMid; 4: string botDisplayName; } + struct SquareEventNotifiedShutdownSquare { 1: string squareChatMid; 2: Square square; } + struct SquareEventNotifiedSystemMessage { 1: string squareChatMid; 2: string text; 3: string messageKey; } + struct SquareEventNotifiedUpdateLiveTalk { 1: string squareChatMid; 2: string sessionId; 3: bool liveTalkOnAir; } + struct SquareEventNotifiedUpdateLiveTalkInfo { 1: string squareChatMid; 2: LiveTalk liveTalk; 3: bool liveTalkOnAir; } + struct SquareEventNotifiedUpdateMessageStatus { 1: string squareChatMid; 2: string messageId; 3: SquareMessageStatus messageStatus; 4: string threadMid; } + struct SquareEventNotifiedUpdateReadonlyChat { 1: string squareChatMid; 2: bool readonly; } + struct SquareEventNotifiedUpdateSquare { 1: string squareMid; 2: Square square; } + struct SquareEventNotifiedUpdateSquareAuthority { 1: string squareMid; 2: SquareAuthority squareAuthority; } + struct SquareEventNotifiedUpdateSquareChat { 1: string squareMid; 2: string squareChatMid; 3: SquareChat squareChat; } + struct SquareEventNotifiedUpdateSquareChatAnnouncement { 1: string squareChatMid; 2: i64 announcementSeq; } + struct SquareEventNotifiedUpdateSquareChatFeatureSet { 1: SquareChatFeatureSet squareChatFeatureSet; } + struct SquareEventNotifiedUpdateSquareChatMaxMemberCount { 1: string squareChatMid; 2: i32 maxMemberCount; 3: SquareMember editor; } + struct SquareEventNotifiedUpdateSquareChatMember { 1: string squareChatMid; 3: SquareChatMember squareChatMember; } + struct SquareEventNotifiedUpdateSquareChatProfileImage { 1: string squareChatMid; 2: SquareMember editor; } + struct SquareEventNotifiedUpdateSquareChatProfileName { 1: string squareChatMid; 2: SquareMember editor; 3: string updatedChatName; } + struct SquareEventNotifiedUpdateSquareChatStatus { 1: string squareChatMid; 2: SquareChatStatusWithoutMessage statusWithoutMessage; } + struct SquareEventNotifiedUpdateSquareFeatureSet { 1: SquareFeatureSet squareFeatureSet; } + struct SquareEventNotifiedUpdateSquareMember { 1: string squareMid; 2: string squareMemberMid; 3: SquareMember squareMember; } + struct SquareEventNotifiedUpdateSquareMemberProfile { 1: string squareChatMid; 2: SquareMember squareMember; } + struct SquareEventNotifiedUpdateSquareMemberRelation { 1: string squareMid; 2: string myMemberMid; 3: string targetSquareMemberMid; 4: SquareMemberRelation squareMemberRelation; } + struct SquareEventNotifiedUpdateSquareNoteStatus { 1: string squareMid; 2: NoteStatus noteStatus; } + struct SquareEventNotifiedUpdateSquareStatus { 1: string squareMid; 2: SquareStatus squareStatus; } + struct SquareEventNotifiedUpdateThread { 1: SquareThread squareThread; } + struct SquareEventNotifiedUpdateThreadMember { 1: SquareThreadMember threadMember; 2: SquareThread squareThread; @@ -8843,9 +10319,11 @@ struct SquareEventNotifiedUpdateThreadMember { 5: SquareMessage lastMessage; 6: string lastMessageSenderDisplayName; } + struct SquareEventNotifiedUpdateThreadRootMessage { 1: SquareThread squareThread; } + struct SquareEventNotifiedUpdateThreadRootMessageStatus { 1: string chatMid; 2: string threadMid; @@ -8853,12 +10331,14 @@ struct SquareEventNotifiedUpdateThreadRootMessageStatus { 4: i64 totalMessageCount; 5: i64 lastMessageAt; } + struct SquareEventNotifiedUpdateThreadStatus { 1: string threadMid; 2: string chatMid; 3: i64 unreadCount; 4: string markAsReadMessageId; } + struct SquareEventReceiveMessage { 1: string squareChatMid; 2: SquareMessage squareMessage; @@ -8871,6 +10351,7 @@ struct SquareEventReceiveMessage { 9: i64 threadLastMessageAt; 10: ContentsAttribute contentsAttribute; } + struct SquareEventSendMessage { 1: string squareChatMid; 2: SquareMessage squareMessage; @@ -8881,13 +10362,16 @@ struct SquareEventSendMessage { 7: i64 threadTotalMessageCount; 8: i64 threadLastMessageAt; } + struct SquareExtraInfo { 1: string country; } + struct SquareFeature { 1: SquareFeatureControlState controlState; 2: BooleanState booleanValue; } + struct SquareFeatureSet { 1: string squareMid; 2: i64 revision; @@ -8907,19 +10391,23 @@ struct SquareFeatureSet { 24: SquareFeature enableSquareThread; 25: SquareFeature disableChangeRoleCoAdmin; } + struct SquareInfo { 1: Square square; 2: SquareStatus squareStatus; 3: NoteStatus squareNoteStatus; } + struct SquareJoinMethod { 1: SquareJoinMethodType type; 2: SquareJoinMethodValue value; } + struct SquareJoinMethodValue { 1: ApprovalValue approvalValue; 2: CodeValue codeValue; } + struct SquareMember { 1: string squareMemberMid; 2: string squareMid; @@ -8933,10 +10421,12 @@ struct SquareMember { 11: string joinMessage; 12: i64 createdAt; } + struct SquareMemberRelation { 1: SquareMemberRelationState state; 2: i64 revision; } + struct SquareMemberSearchOption { 1: SquareMembershipState membershipState; 2: set memberRoles; @@ -8948,6 +10438,7 @@ struct SquareMemberSearchOption { 8: bool excludeBlockedMembers; 9: bool includingMeOnlyMatch; } + struct SquareMessage { 1: Message message; 3: MIDType fromType; @@ -8955,23 +10446,27 @@ struct SquareMessage { 5: SquareMessageState state; 6: SquareMessageThreadInfo threadInfo; } + struct SquareMessageInfo { 1: SquareMessage message; 2: Square square; 3: SquareChat chat; 4: SquareMember sender; } + struct SquareMessageReaction { 1: MessageReactionType type; 2: SquareMember reactor; 3: i64 createdAt; 4: i64 updatedAt; } + struct SquareMessageReactionStatus { 1: i32 totalCount; 2: map countByReactionType; 3: SquareMessageReaction myReaction; } + struct SquareMessageStatus { 1: string squareChatMid; 2: string globalMessageId; @@ -8980,10 +10475,12 @@ struct SquareMessageStatus { 5: i64 publishedAt; 6: string squareChatThreadMid; } + struct SquareMessageThreadInfo { 1: string chatThreadMid; 2: bool threadRoot; } + struct SquareMetadata { 1: string mid; 2: set excluded; @@ -8991,16 +10488,19 @@ struct SquareMetadata { 4: bool noAd; 5: i64 updatedAt; } + struct SquarePreference { 1: i64 favoriteTimestamp; 2: bool notiForNewJoinRequest; } + struct SquareStatus { 1: i32 memberCount; 2: i32 joinRequestCount; 3: i64 lastJoinRequestAt; 4: i32 openChatCount; } + struct SquareThread { 1: string threadMid; 2: string chatMid; @@ -9011,6 +10511,7 @@ struct SquareThread { 7: i64 readOnlyAt; 8: i64 revision; } + struct SquareThreadMember { 1: string squareMemberMid; 2: string threadMid; @@ -9018,38 +10519,47 @@ struct SquareThreadMember { 4: i64 revision; 5: SquareThreadMembershipState membershipState; } + struct SquareUserSettings { 1: BooleanState liveTalkNotification; } + struct SquareVisibility { 1: bool common; 2: bool search; } + struct StartPhotoboothRequest { 1: string chatMid; } + struct StartPhotoboothResponse { 1: string photoboothSessionId; } + struct I80_C0 { 1: string authSessionId; 2: string modelName; 3: string deviceUid; } + struct I80_D0 { 1: string displayName; 2: list availableAuthFactors; } + struct Sticker { 1: AR0_zR0_g resourceType; 2: zR0_EnumC40578c popupLayer; 3: AR0_zR0_h stickerSize; } + struct Sticker { 1: string stickerId; 2: StickerResourceType resourceType; 3: zR0_EnumC40578c popupLayer; } + struct StickerDisplayData { 1: string stickerHash; 2: StickerResourceType stickerResourceType; @@ -9062,14 +10572,17 @@ struct StickerDisplayData { 9: i64 version; 10: bool availableForCombinationSticker; } + struct StickerIdRange { 1: i64 start; 2: i32 size; } + struct StickerLayout { 1: StickerLayoutInfo layoutInfo; 2: StickerLayoutStickerInfo stickerInfo; } + struct StickerLayoutInfo { 1: double width; 2: double height; @@ -9077,6 +10590,7 @@ struct StickerLayoutInfo { 4: double x; 5: double y; } + struct StickerLayoutStickerInfo { 1: i64 stickerId; 2: i64 productId; @@ -9084,6 +10598,7 @@ struct StickerLayoutStickerInfo { 4: string stickerOptions; 5: i64 stickerVersion; } + struct StickerProperty { 1: bool hasAnimation; 2: bool hasSound; @@ -9101,6 +10616,7 @@ struct StickerProperty { 15: bool cpdProduct; 16: bool availableForCombinationSticker; } + struct StickerSummary { 1: list stickerIdRanges; 2: i64 suggestVersion; @@ -9113,32 +10629,39 @@ struct StickerSummary { 9: Ob1_C1 stickerSize; 10: bool availableForCombinationSticker; } + struct SticonProperty { 2: list sticonIds; 3: bool availableForPhotoEdit; 4: Ob1_F1 sticonResourceType; 5: list> endPageMainImages; } + struct SticonSummary { 1: i64 suggestVersion; 2: bool availableForPhotoEdit; 3: Ob1_F1 sticonResourceType; } + struct StopBundleSubscriptionRequest { 1: Ob1_S1 subscriptionService; 2: Ob1_K1 storeCode; } + struct StopBundleSubscriptionResponse { 1: Ob1_J1 result; } + struct StopNotificationAction { 1: string serviceUuid; 2: string characteristicUuid; } + struct StudentInformation { 1: string schoolName; 2: string graduationDate; } + struct SubLiffView { 1: Qj_i0 presentationType; 2: string url; @@ -9148,6 +10671,7 @@ struct SubLiffView { 6: string closeButtonLabel; 7: bool skipWebRTCPermissionPopupAllowed; } + struct SubTab { 1: string id; 2: string name; @@ -9156,13 +10680,16 @@ struct SubTab { 5: list modulesOrder; 6: string wrsSubTabModelId; } + struct SubWindowResultRequest { 1: string msit; 2: string mstVerifier; } + struct SubscriptionNotification { 1: i64 subscriptionId; } + struct SubscriptionPlan { 1: string billingItemId; 2: Ob1_S1 subscriptionService; @@ -9177,15 +10704,18 @@ struct SubscriptionPlan { 11: string nameKey; 12: Ob1_Q1 tier; } + struct SubscriptionSlotHistory { 1: ProductSearchSummary product; 2: i64 addedTime; 3: i64 removedTime; } + struct SubscriptionState { 1: i64 subscriptionId; 2: i64 ttlMillis; } + struct SubscriptionStatus { 1: string billingItemId; 2: Ob1_S1 subscriptionService; @@ -9205,6 +10735,7 @@ struct SubscriptionStatus { 16: bool agreementAccepted; 17: i64 originalValidUntil; } + struct SuggestDictionarySetting { 1: string language; 2: string name; @@ -9215,15 +10746,18 @@ struct SuggestDictionarySetting { 7: map tagPatch; 8: SuggestResource corpusResource; } + struct SuggestResource { 1: string dataUrl; 2: i64 version; 3: i64 updatedTime; } + struct SuggestTag { 1: string tagId; 2: double weight; } + struct SuggestTrialRecommendation { 1: string productId; 2: i64 productVersion; @@ -9231,6 +10765,7 @@ struct SuggestTrialRecommendation { 4: zR0_C40580e resource; 5: list tags; } + struct SyncRequest { 1: i64 lastRevision; 2: i32 count; @@ -9239,51 +10774,64 @@ struct SyncRequest { 5: Pb1_J4 fullSyncRequestReason; 6: map lastPartialFullSyncs; } + struct SyncSquareMembersRequest { 1: string squareMid; 2: map squareMembers; } + struct SyncSquareMembersResponse { 1: list updatedSquareMembers; } + struct T70_C14398f { } + struct T70_g1 { } + struct T70_o1 { } + struct T70_s1 { } + struct TGlobalEvents { 1: map events; 2: i64 lastRevision; } + struct TIndividualEvents { 1: set events; 2: i64 lastRevision; } + struct TMessageReadRange { 1: string chatId; 2: map> ranges; } + struct TMessageReadRangeEntry { 1: i64 startMessageId; 2: i64 endMessageId; 3: i64 startTime; 4: i64 endTime; } + struct Tag { 1: string tagId; 2: list candidates; } + struct TaiwanBankAgreementRequiredPopupInfo { 1: string popupTitle; 2: string popupContent; } + struct TaiwanBankBalanceInfo { 1: bool bankUser; 2: i64 balance; @@ -9294,6 +10842,7 @@ struct TaiwanBankBalanceInfo { 7: bool agreedToShowBalance; 8: TaiwanBankAgreementRequiredPopupInfo agreementRequiredPopupInfo; } + struct TaiwanBankLoginParameters { 1: string loginScheme; 2: string type; @@ -9303,15 +10852,18 @@ struct TaiwanBankLoginParameters { 6: string codeChallengeMethod; 7: string clientId; } + struct TalkroomEnterReferer { 1: string urlScheme; 2: kf_x type; 3: kf_w content; } + struct TalkroomEvent { 1: kf_z type; 2: TalkroomEnterReferer referer; } + struct TargetProfileDetail { 1: i64 snapshotTimeMillis; 2: string profileName; @@ -9324,14 +10876,17 @@ struct TargetProfileDetail { 9: string pictureStatus; 10: string profileId; } + struct TermsAgreementExtraInfo { 1: TermsType termsType; 2: i32 termsVersion; 3: string lanUrl; } + struct TextButton { 1: string text; } + struct TextMessageAnnouncementContents { 1: string messageId; 2: string text; @@ -9339,21 +10894,25 @@ struct TextMessageAnnouncementContents { 4: i64 createdAt; 5: string senderMid; } + struct ThaiBankBalanceInfo { 1: bool bankUser; 2: bool balanceDisplay; 3: double balance; 4: string balanceLinkUrl; } + struct ThemeProperty { 1: string thumbnailUrl; 2: Ob1_c2 themeResourceType; } + struct ThemeSummary { 1: string imagePath; 2: i64 version; 3: string versionString; } + struct ThingsDevice { 1: string deviceId; 2: string actionUri; @@ -9366,23 +10925,28 @@ struct ThingsDevice { 9: string serviceUuid; 10: bool bondingRequired; } + struct ThingsOperation { 1: string deviceId; 2: i64 offset; 3: do0_C23138A action; } + struct ThumbnailLayer { 1: RichImage frontThumbnailImage; 2: RichImage backgroundThumbnailImage; } + struct Ticket { 1: string id; 10: i64 expirationTime; 21: i32 maxUseCount; } + struct TokenV1IssueResult { 1: string tokenSecret; } + struct TokenV3IssueResult { 1: string accessToken; 2: string refreshToken; @@ -9391,6 +10955,7 @@ struct TokenV3IssueResult { 5: string loginSessionId; 6: i64 tokenIssueTimeEpochSec; } + struct TokenV3IssueResult { 1: string accessToken; 2: string refreshToken; @@ -9399,199 +10964,248 @@ struct TokenV3IssueResult { 5: string loginSessionId; 6: i64 tokenIssueTimeEpochSec; } + struct Tooltip { 1: string text; 2: i64 revisionTimeMillis; } + struct TooltipInfo { 1: string text; 2: i64 tooltipRevision; } + struct TopTab { 1: string id; 2: list modulesOrder; } + struct TryAgainLaterExtraInfo { 1: i32 blockSecs; } + struct U70_a { } + struct U70_t { } + struct U70_v { } + struct UEN { 1: i64 revision; } + struct Uf_C14856C { - 1: Uf_UEN uen; - 2: Uf_Beacon beacon; + 1: UEN uen; + 2: Beacon beacon; } + struct Uf_C14864f { - 1: Uf_RegularBadge regularBadge; - 2: Uf_UrgentBadge urgentBadge; + 1: RegularBadge regularBadge; + 2: UrgentBadge urgentBadge; } + struct Uf_p { - 1: Uf_AD ad; - 2: Uf_Content content; - 3: Uf_RichContent richContent; + 1: AD ad; + 2: Content content; + 3: RichContent richContent; } + struct Uf_t { - 1: Uf_RichItem typeA; - 2: Uf_RichItem typeB; + 1: RichItem typeA; + 2: RichItem typeB; } + struct UnfollowRequest { 1: Pb1_A4 followMid; } + struct UnhideSquareMemberContentsRequest { 1: string squareMemberMid; } + struct UnregisterAvailabilityInfo { 1: r80_m0 result; 2: string message; } + struct UnsendMessageRequest { 2: string squareChatMid; 3: string messageId; 4: string threadMid; } + struct UnsendMessageResponse { 1: SquareMessage unsentMessage; } + struct UpdateChatRequest { 1: i32 reqSeq; 2: Chat chat; 3: Pb1_O2 updatedAttribute; } + struct UpdateGroupCallUrlRequest { 1: string urlId; 2: Pb1_ad targetAttribute; } + struct UpdateLiveTalkAttrsRequest { 1: set updatedAttrs; 2: LiveTalk liveTalk; } + struct UpdatePasswordRequest { 1: string sessionId; 2: string hashedPassword; } + struct UpdateProfileAttributesRequest { 1: i32 reqSeq; 2: map profileAttributes; 3: string profileId; } + struct UpdateProfileAttributesRequest { 1: map profileAttributes; } + struct UpdateReason { 1: t80_r type; 2: string detail; } + struct UpdateSafetyStatusRequest { 1: string disasterId; 2: vh_m safetyStatus; 3: string message; } + struct UpdateSquareAuthorityRequest { 2: set updateAttributes; 3: SquareAuthority authority; } + struct UpdateSquareAuthorityResponse { 1: set updatdAttributes; 2: SquareAuthority authority; } + struct UpdateSquareChatMemberRequest { 2: set updatedAttrs; 3: SquareChatMember chatMember; } + struct UpdateSquareChatMemberResponse { 1: SquareChatMember updatedChatMember; } + struct UpdateSquareChatRequest { 2: set updatedAttrs; 3: SquareChat squareChat; } + struct UpdateSquareChatResponse { 1: set updatedAttrs; 2: SquareChat squareChat; } + struct UpdateSquareFeatureSetRequest { 2: set updateAttributes; 3: SquareFeatureSet squareFeatureSet; } + struct UpdateSquareFeatureSetResponse { 1: set updateAttributes; 2: SquareFeatureSet squareFeatureSet; } + struct UpdateSquareMemberRelationRequest { 2: string squareMid; 3: string targetSquareMemberMid; 4: set updatedAttrs; 5: SquareMemberRelation relation; } + struct UpdateSquareMemberRelationResponse { 1: string squareMid; 2: string targetSquareMemberMid; 3: set updatedAttrs; 4: SquareMemberRelation relation; } + struct UpdateSquareMemberRequest { 2: set updatedAttrs; 3: set updatedPreferenceAttrs; 4: SquareMember squareMember; } + struct UpdateSquareMemberResponse { 1: set updatedAttrs; 2: SquareMember squareMember; 3: set updatedPreferenceAttrs; } + struct UpdateSquareMembersRequest { 2: set updatedAttrs; 3: list members; } + struct UpdateSquareMembersResponse { 1: set updatedAttrs; 2: SquareMember editor; 3: map members; } + struct UpdateSquareRequest { 2: set updatedAttrs; 3: Square square; } + struct UpdateSquareResponse { 1: set updatedAttrs; 2: Square square; } + struct UpdateUserSettingsRequest { 1: set updatedAttrs; 2: SquareUserSettings userSettings; } + struct UrgentBadge { 1: string bgColor; 2: string label; 3: string color; } + struct UrlButton { 1: string text; 2: string url; } + struct UsePhotoboothTicketRequest { 1: string chatMid; 2: string photoboothSessionId; } + struct UsePhotoboothTicketResponse { 1: string signedTicketJwt; } + struct UserBlockDetail { 3: bool deletedFromBlockList; } + struct UserDevice { 1: ThingsDevice device; 2: string deviceDisplayName; } + struct UserFriendDetail { 1: i64 createdTime; 3: string overriddenName; @@ -9600,33 +11214,41 @@ struct UserFriendDetail { 7: string ringtone; 8: string ringbackTone; } + struct UserPhoneNumber { 1: string phoneNumber; 2: string countryCode; } + struct UserPhoneNumber { 1: string phoneNumber; 2: string countryCode; } + struct UserProfile { 1: string displayName; 2: string profileImageUrl; } + struct UserProfile { 1: string displayName; 2: string profileImageUrl; } + struct UserRestrictionExtraInfo { 1: string linkUrl; } + struct V1PasswordHashingParameters { 1: string aesKey; 2: string salt; } + struct V1PasswordHashingParameters { 1: string aesKey; 2: string salt; } + struct VerificationSessionData { 1: string sessionId; 2: VerificationMethod method; @@ -9637,103 +11259,126 @@ struct VerificationSessionData { 7: list availableVerificationMethods; 8: string callerIdMask; } + struct VerifyAccountUsingHashedPwdRequest { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; 3: string v1HashedPassword; 4: string clientHashedPassword; } + struct I80_E0 { 1: string authSessionId; 2: string v1HashedPassword; 3: string clientHashedPassword; } + struct VerifyAccountUsingHashedPwdResponse { 1: UserProfile userProfile; } + struct VerifyAssertionRequest { 1: string sessionId; 2: string credentialId; 3: string assertionObject; 4: string clientDataJSON; } + struct VerifyAttestationRequest { 1: string sessionId; 2: string attestationObject; 3: string clientDataJSON; } + struct VerifyEapLoginRequest { 1: string authSessionId; 2: EapLogin eapLogin; } + struct I80_G0 { 1: string authSessionId; 2: EapLogin eapLogin; } + struct VerifyEapLoginResponse { 1: bool accountExists; } + struct I80_H0 { 1: I80_V70_a userProfile; } + struct VerifyPhonePinCodeRequest { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; 3: string pinCode; } + struct I80_I0 { 1: string authSessionId; 2: UserPhoneNumber userPhoneNumber; 3: string pinCode; } + struct VerifyPhonePinCodeResponse { 1: bool accountExist; 2: bool sameUdidFromAccount; 3: bool allowedToRegister; 11: UserProfile userProfile; } + struct I80_J0 { 1: I80_V70_a userProfile; } + struct VerifyPinCodeRequest { 1: string authSessionId; 2: string pinCode; } + struct VerifyPinCodeRequest { 1: string pinCode; } + struct VerifyQrCodeRequest { 1: string authSessionId; 2: map metaData; } + struct VerifySocialLoginResponse { 2: bool accountExist; 11: UserProfile userProfile; 12: bool sameUdidFromAccount; } + struct I80_K0 { 1: string baseUrl; 2: string token; } + struct WebAuthDetails { 1: string baseUrl; 2: string token; } + struct WebAuthDetails { 1: string baseUrl; 2: string token; } + struct WebLoginRequest { 1: string hookedFullUrl; 2: string sessionString; 3: bool fromIAB; 4: string sourceApplication; } + struct WebLoginResponse { 1: string returnUrl; 2: string optionalReturnUrl; 3: string redirectConfirmationPageUrl; } + struct WifiSignal { 2: string ssid; 3: string bssid; @@ -9742,249 +11387,318 @@ struct WifiSignal { 10: i64 lastSeenTimestamp; 11: i32 rssi; } + struct Z70_a { 1: string recoveryKey; 2: string backupBlobPayload; } + struct ZQ0_b { } + struct acceptChatInvitationByTicket_args { 1: AcceptChatInvitationByTicketRequest request; } + struct acceptChatInvitationByTicket_result { 0: Pb1_C12980f success; 1: TalkException e; } + struct acceptChatInvitation_args { 1: AcceptChatInvitationRequest request; } + struct acceptChatInvitation_result { 0: Pb1_C13008h success; 1: TalkException e; } + struct SquareService_acceptSpeakers_result { 0: AcceptSpeakersResponse success; 1: SquareException e; } + struct SquareService_acceptToChangeRole_result { 0: AcceptToChangeRoleResponse success; 1: SquareException e; } + struct SquareService_acceptToListen_result { 0: AcceptToListenResponse success; 1: SquareException e; } + struct SquareService_acceptToSpeak_result { 0: AcceptToSpeakResponse success; 1: SquareException e; } + struct SquareService_acquireLiveTalk_result { 0: AcquireLiveTalkResponse success; 1: SquareException e; } + struct SquareService_cancelToSpeak_result { 0: CancelToSpeakResponse success; 1: SquareException e; } + struct SquareService_fetchLiveTalkEvents_result { 0: FetchLiveTalkEventsResponse success; 1: SquareException e; } + struct SquareService_findLiveTalkByInvitationTicket_result { 0: FindLiveTalkByInvitationTicketResponse success; 1: SquareException e; } + struct SquareService_forceEndLiveTalk_result { 0: ForceEndLiveTalkResponse success; 1: SquareException e; } + struct SquareService_getLiveTalkInfoForNonMember_result { 0: GetLiveTalkInfoForNonMemberResponse success; 1: SquareException e; } + struct SquareService_getLiveTalkInvitationUrl_result { 0: GetLiveTalkInvitationUrlResponse success; 1: SquareException e; } + struct SquareService_getLiveTalkSpeakersForNonMember_result { 0: GetLiveTalkSpeakersForNonMemberResponse success; 1: SquareException e; } + struct SquareService_getSquareInfoByChatMid_result { 0: GetSquareInfoByChatMidResponse success; 1: SquareException e; } + struct SquareService_inviteToChangeRole_result { 0: InviteToChangeRoleResponse success; 1: SquareException e; } + struct SquareService_inviteToListen_result { 0: InviteToListenResponse success; 1: SquareException e; } + struct SquareService_inviteToLiveTalk_result { 0: InviteToLiveTalkResponse success; 1: SquareException e; } + struct SquareService_inviteToSpeak_result { 0: InviteToSpeakResponse success; 1: SquareException e; } + struct SquareService_joinLiveTalk_result { 0: JoinLiveTalkResponse success; 1: SquareException e; } + struct SquareService_kickOutLiveTalkParticipants_result { 0: KickOutLiveTalkParticipantsResponse success; 1: SquareException e; } + struct SquareService_rejectSpeakers_result { 0: RejectSpeakersResponse success; 1: SquareException e; } + struct SquareService_rejectToSpeak_result { 0: RejectToSpeakResponse success; 1: SquareException e; } + struct SquareService_removeLiveTalkSubscription_result { 0: RemoveLiveTalkSubscriptionResponse success; 1: SquareException e; } + struct SquareService_reportLiveTalk_result { 0: ReportLiveTalkResponse success; 1: SquareException e; } + struct SquareService_reportLiveTalkSpeaker_result { 0: ReportLiveTalkSpeakerResponse success; 1: SquareException e; } + struct SquareService_requestToListen_result { 0: RequestToListenResponse success; 1: SquareException e; } + struct SquareService_requestToSpeak_result { 0: RequestToSpeakResponse success; 1: SquareException e; } + struct SquareService_updateLiveTalkAttrs_result { 0: UpdateLiveTalkAttrsResponse success; 1: SquareException e; } + struct SquareService_acceptSpeakers_args { 1: AcceptSpeakersRequest request; } + struct SquareService_acceptToChangeRole_args { 1: AcceptToChangeRoleRequest request; } + struct SquareService_acceptToListen_args { 1: AcceptToListenRequest request; } + struct SquareService_acceptToSpeak_args { 1: AcceptToSpeakRequest request; } + struct SquareService_acquireLiveTalk_args { 1: AcquireLiveTalkRequest request; } + struct SquareService_cancelToSpeak_args { 1: CancelToSpeakRequest request; } + struct SquareService_fetchLiveTalkEvents_args { 1: FetchLiveTalkEventsRequest request; } + struct SquareService_findLiveTalkByInvitationTicket_args { 1: FindLiveTalkByInvitationTicketRequest request; } + struct SquareService_forceEndLiveTalk_args { 1: ForceEndLiveTalkRequest request; } + struct SquareService_getLiveTalkInfoForNonMember_args { 1: GetLiveTalkInfoForNonMemberRequest request; } + struct SquareService_getLiveTalkInvitationUrl_args { 1: GetLiveTalkInvitationUrlRequest request; } + struct SquareService_getLiveTalkSpeakersForNonMember_args { 1: GetLiveTalkSpeakersForNonMemberRequest request; } + struct SquareService_getSquareInfoByChatMid_args { 1: GetSquareInfoByChatMidRequest request; } + struct SquareService_inviteToChangeRole_args { 1: InviteToChangeRoleRequest request; } + struct SquareService_inviteToListen_args { 1: InviteToListenRequest request; } + struct SquareService_inviteToLiveTalk_args { 1: InviteToLiveTalkRequest request; } + struct SquareService_inviteToSpeak_args { 1: InviteToSpeakRequest request; } + struct SquareService_joinLiveTalk_args { 1: JoinLiveTalkRequest request; } + struct SquareService_kickOutLiveTalkParticipants_args { 1: KickOutLiveTalkParticipantsRequest request; } + struct SquareService_rejectSpeakers_args { 1: RejectSpeakersRequest request; } + struct SquareService_rejectToSpeak_args { 1: RejectToSpeakRequest request; } + struct SquareService_removeLiveTalkSubscription_args { 1: RemoveLiveTalkSubscriptionRequest request; } + struct SquareService_reportLiveTalk_args { 1: ReportLiveTalkRequest request; } + struct SquareService_reportLiveTalkSpeaker_args { 1: ReportLiveTalkSpeakerRequest request; } + struct SquareService_requestToListen_args { 1: RequestToListenRequest request; } + struct SquareService_requestToSpeak_args { 1: RequestToSpeakRequest request; } + struct SquareService_updateLiveTalkAttrs_args { 1: UpdateLiveTalkAttrsRequest request; } + struct acquireCallRoute_args { 2: string to; 3: Pb1_D4 callType; 4: map fromEnvInfo; } + struct acquireCallRoute_result { 0: CallRoute success; 1: TalkException e; } + struct acquireEncryptedAccessToken_args { 2: Pb1_EnumC13222w4 featureType; } + struct acquireEncryptedAccessToken_result { 0: string success; 1: TalkException e; } + struct acquireGroupCallRoute_args { 2: string chatMid; 3: Pb1_EnumC13237x5 mediaType; 4: bool isInitialHost; 5: list capabilities; } + struct acquireGroupCallRoute_result { 0: GroupCallRoute success; 1: TalkException e; } + struct acquireOACallRoute_args { 2: AcquireOACallRouteRequest request; } + struct acquireOACallRoute_result { 0: AcquireOACallRouteResponse success; 1: TalkException e; } + struct acquirePaidCallRoute_args { 2: PaidCallType paidCallType; 3: string dialedNumber; @@ -9994,675 +11708,867 @@ struct acquirePaidCallRoute_args { 7: string referer; 8: string adSessionId; } + struct acquirePaidCallRoute_result { 0: PaidCallResponse success; 1: TalkException e; } + struct activateSubscription_args { 1: ActivateSubscriptionRequest request; } + struct activateSubscription_result { 1: MembershipException e; } + struct adTypeOptOutClickEvent_args { 1: AdTypeOptOutClickEventRequest request; } + struct adTypeOptOutClickEvent_result { 0: NZ0_C12152b success; 1: WalletException e; } + struct addFriendByMid_args { 1: AddFriendByMidRequest request; } + struct addFriendByMid_result { 0: LN0_C11270b success; 1: RejectedException be; 2: ServerFailureException ce; 3: TalkException te; } + struct addItemToCollection_args { 1: AddItemToCollectionRequest request; } + struct addItemToCollection_result { 0: Ob1_C12608b success; 1: CollectionException e; } + struct addOaFriend_args { 1: NZ0_C12155c request; } + struct addOaFriend_result { 0: AddOaFriendResponse success; 1: WalletException e; } + struct addProductToSubscriptionSlot_args { 2: AddProductToSubscriptionSlotRequest req; } + struct addProductToSubscriptionSlot_result { 0: AddProductToSubscriptionSlotResponse success; 1: ShopException e; } + struct addThemeToSubscriptionSlot_args { 2: AddThemeToSubscriptionSlotRequest req; } + struct addThemeToSubscriptionSlot_result { 0: AddThemeToSubscriptionSlotResponse success; 1: ShopException e; } + struct addToFollowBlacklist_args { 2: AddToFollowBlacklistRequest addToFollowBlacklistRequest; } + struct addToFollowBlacklist_result { 1: TalkException e; } + struct SquareService_agreeToTerms_result { 0: AgreeToTermsResponse success; 1: SquareException e; } + struct SquareService_approveSquareMembers_result { 0: ApproveSquareMembersResponse success; 1: SquareException e; } + struct SquareService_checkJoinCode_result { 0: CheckJoinCodeResponse success; 1: SquareException e; } + struct SquareService_createSquareChatAnnouncement_result { 0: CreateSquareChatAnnouncementResponse success; 1: SquareException e; } + struct SquareService_createSquareChat_result { 0: CreateSquareChatResponse success; 1: SquareException e; } + struct SquareService_createSquare_result { 0: CreateSquareResponse success; 1: SquareException e; } + struct SquareService_deleteSquareChatAnnouncement_result { 0: DeleteSquareChatAnnouncementResponse success; 1: SquareException e; } + struct SquareService_deleteSquareChat_result { 0: DeleteSquareChatResponse success; 1: SquareException e; } + struct SquareService_deleteSquare_result { 0: DeleteSquareResponse success; 1: SquareException e; } + struct SquareService_destroyMessage_result { 0: DestroyMessageResponse success; 1: SquareException e; } + struct SquareService_destroyMessages_result { 0: DestroyMessagesResponse success; 1: SquareException e; } + struct SquareService_fetchMyEvents_result { 0: FetchMyEventsResponse success; 1: SquareException e; } + struct SquareService_fetchSquareChatEvents_result { 0: FetchSquareChatEventsResponse success; 1: SquareException e; } + struct SquareService_findSquareByEmid_result { 0: FindSquareByEmidResponse success; 1: SquareException e; } + struct SquareService_findSquareByInvitationTicket_result { 0: FindSquareByInvitationTicketResponse success; 1: SquareException e; } + struct SquareService_findSquareByInvitationTicketV2_result { 0: FindSquareByInvitationTicketV2Response success; 1: SquareException e; } + struct SquareService_getGoogleAdOptions_result { 0: GetGoogleAdOptionsResponse success; 1: SquareException e; } + struct SquareService_getInvitationTicketUrl_result { 0: GetInvitationTicketUrlResponse success; 1: SquareException e; } + struct SquareService_getJoinableSquareChats_result { 0: GetJoinableSquareChatsResponse success; 1: SquareException e; } + struct SquareService_getJoinedSquareChats_result { 0: GetJoinedSquareChatsResponse success; 1: SquareException e; } + struct SquareService_getJoinedSquares_result { 0: GetJoinedSquaresResponse success; 1: SquareException e; } + struct SquareService_getMessageReactions_result { 0: GetMessageReactionsResponse success; 1: SquareException e; } + struct SquareService_getNoteStatus_result { 0: GetNoteStatusResponse success; 1: SquareException e; } + struct SquareService_getPopularKeywords_result { 0: GetPopularKeywordsResponse success; 1: SquareException e; } + struct SquareService_getSquareAuthorities_result { 0: GetSquareAuthoritiesResponse success; 1: SquareException e; } + struct SquareService_getSquareAuthority_result { 0: GetSquareAuthorityResponse success; 1: SquareException e; } + struct SquareService_getCategories_result { 0: GetSquareCategoriesResponse success; 1: SquareException e; } + struct SquareService_getSquareChatAnnouncements_result { 0: GetSquareChatAnnouncementsResponse success; 1: SquareException e; } + struct SquareService_getSquareChatEmid_result { 0: GetSquareChatEmidResponse success; 1: SquareException e; } + struct SquareService_getSquareChatFeatureSet_result { 0: GetSquareChatFeatureSetResponse success; 1: SquareException e; } + struct SquareService_getSquareChatMember_result { 0: GetSquareChatMemberResponse success; 1: SquareException e; } + struct SquareService_getSquareChatMembers_result { 0: GetSquareChatMembersResponse success; 1: SquareException e; } + struct SquareService_getSquareChat_result { 0: GetSquareChatResponse success; 1: SquareException e; } + struct SquareService_getSquareChatStatus_result { 0: GetSquareChatStatusResponse success; 1: SquareException e; } + struct SquareService_getSquareEmid_result { 0: GetSquareEmidResponse success; 1: SquareException e; } + struct SquareService_getSquareFeatureSet_result { 0: GetSquareFeatureSetResponse success; 1: SquareException e; } + struct SquareService_getSquareMemberRelation_result { 0: GetSquareMemberRelationResponse success; 1: SquareException e; } + struct SquareService_getSquareMemberRelations_result { 0: GetSquareMemberRelationsResponse success; 1: SquareException e; } + struct SquareService_getSquareMember_result { 0: GetSquareMemberResponse success; 1: SquareException e; } + struct SquareService_getSquareMembersBySquare_result { 0: GetSquareMembersBySquareResponse success; 1: SquareException e; } + struct SquareService_getSquareMembers_result { 0: GetSquareMembersResponse success; 1: SquareException e; } + struct SquareService_getSquare_result { 0: GetSquareResponse success; 1: SquareException e; } + struct SquareService_getSquareStatus_result { 0: GetSquareStatusResponse success; 1: SquareException e; } + struct SquareService_getSquareThreadMid_result { 0: GetSquareThreadMidResponse success; 1: SquareException e; } + struct SquareService_getSquareThread_result { 0: GetSquareThreadResponse success; 1: SquareException e; } + struct SquareService_getUserSettings_result { 0: GetUserSettingsResponse success; 1: SquareException e; } + struct SquareService_hideSquareMemberContents_result { 0: HideSquareMemberContentsResponse success; 1: SquareException e; } + struct SquareService_inviteIntoSquareChat_result { 0: InviteIntoSquareChatResponse success; 1: SquareException e; } + struct SquareService_inviteToSquare_result { 0: InviteToSquareResponse success; 1: SquareException e; } + struct SquareService_joinSquareChat_result { 0: JoinSquareChatResponse success; 1: SquareException e; } + struct SquareService_joinSquare_result { 0: JoinSquareResponse success; 1: SquareException e; } + struct SquareService_joinSquareThread_result { 0: JoinSquareThreadResponse success; 1: SquareException e; } + struct SquareService_leaveSquareChat_result { 0: LeaveSquareChatResponse success; 1: SquareException e; } + struct SquareService_leaveSquare_result { 0: LeaveSquareResponse success; 1: SquareException e; } + struct SquareService_leaveSquareThread_result { 0: LeaveSquareThreadResponse success; 1: SquareException e; } + struct SquareService_manualRepair_result { 0: ManualRepairResponse success; 1: SquareException e; } + struct SquareService_markAsRead_result { 0: MarkAsReadResponse success; 1: SquareException e; } + struct SquareService_markChatsAsRead_result { 0: MarkChatsAsReadResponse success; 1: SquareException e; } + struct SquareService_markThreadsAsRead_result { 0: MarkThreadsAsReadResponse success; 1: SquareException e; } + struct SquareService_reactToMessage_result { 0: ReactToMessageResponse success; 1: SquareException e; } + struct SquareService_refreshSubscriptions_result { 0: RefreshSubscriptionsResponse success; 1: SquareException e; } + struct SquareService_rejectSquareMembers_result { 0: RejectSquareMembersResponse success; 1: SquareException e; } + struct SquareService_removeSubscriptions_result { 0: RemoveSubscriptionsResponse success; 1: SquareException e; } + struct SquareService_reportMessageSummary_result { 0: ReportMessageSummaryResponse success; 1: SquareException e; } + struct SquareService_reportSquareChat_result { 0: ReportSquareChatResponse success; 1: SquareException e; } + struct SquareService_reportSquareMember_result { 0: ReportSquareMemberResponse success; 1: SquareException e; } + struct SquareService_reportSquareMessage_result { 0: ReportSquareMessageResponse success; 1: SquareException e; } + struct SquareService_reportSquare_result { 0: ReportSquareResponse success; 1: SquareException e; } + struct SquareService_searchSquareChatMembers_result { 0: SearchSquareChatMembersResponse success; 1: SquareException e; } + struct SquareService_searchSquareChatMentionables_result { 0: SearchSquareChatMentionablesResponse success; 1: SquareException e; } + struct SquareService_searchSquareMembers_result { 0: SearchSquareMembersResponse success; 1: SquareException e; } + struct SquareService_searchSquares_result { 0: SearchSquaresResponse success; 1: SquareException e; } + struct SquareService_sendMessage_result { 0: SendMessageResponse success; 1: SquareException e; } + struct SquareService_sendSquareThreadMessage_result { 0: SendSquareThreadMessageResponse success; 1: SquareException e; } + struct SquareService_syncSquareMembers_result { 0: SyncSquareMembersResponse success; 1: SquareException e; } + struct SquareService_unhideSquareMemberContents_result { 0: UnhideSquareMemberContentsResponse success; 1: SquareException e; } + struct SquareService_unsendMessage_result { 0: UnsendMessageResponse success; 1: SquareException e; } + struct SquareService_updateSquareAuthority_result { 0: UpdateSquareAuthorityResponse success; 1: SquareException e; } + struct SquareService_updateSquareChatMember_result { 0: UpdateSquareChatMemberResponse success; 1: SquareException e; } + struct SquareService_updateSquareChat_result { 0: UpdateSquareChatResponse success; 1: SquareException e; } + struct SquareService_updateSquareFeatureSet_result { 0: UpdateSquareFeatureSetResponse success; 1: SquareException e; } + struct SquareService_updateSquareMemberRelation_result { 0: UpdateSquareMemberRelationResponse success; 1: SquareException e; } + struct SquareService_updateSquareMember_result { 0: UpdateSquareMemberResponse success; 1: SquareException e; } + struct SquareService_updateSquareMembers_result { 0: UpdateSquareMembersResponse success; 1: SquareException e; } + struct SquareService_updateSquare_result { 0: UpdateSquareResponse success; 1: SquareException e; } + struct SquareService_updateUserSettings_result { 0: UpdateUserSettingsResponse success; 1: SquareException e; } + struct SquareService_agreeToTerms_args { 1: AgreeToTermsRequest request; } + struct SquareService_approveSquareMembers_args { 1: ApproveSquareMembersRequest request; } + struct SquareService_checkJoinCode_args { 1: CheckJoinCodeRequest request; } + struct SquareService_createSquareChatAnnouncement_args { 1: CreateSquareChatAnnouncementRequest createSquareChatAnnouncementRequest; } + struct SquareService_createSquareChat_args { 1: CreateSquareChatRequest request; } + struct SquareService_createSquare_args { 1: CreateSquareRequest request; } + struct SquareService_deleteSquareChatAnnouncement_args { 1: DeleteSquareChatAnnouncementRequest deleteSquareChatAnnouncementRequest; } + struct SquareService_deleteSquareChat_args { 1: DeleteSquareChatRequest request; } + struct SquareService_deleteSquare_args { 1: DeleteSquareRequest request; } + struct SquareService_destroyMessage_args { 1: DestroyMessageRequest request; } + struct SquareService_destroyMessages_args { 1: DestroyMessagesRequest request; } + struct SquareService_fetchMyEvents_args { 1: FetchMyEventsRequest request; } + struct SquareService_fetchSquareChatEvents_args { 1: FetchSquareChatEventsRequest request; } + struct SquareService_findSquareByEmid_args { 1: FindSquareByEmidRequest findSquareByEmidRequest; } + struct SquareService_findSquareByInvitationTicket_args { 1: FindSquareByInvitationTicketRequest request; } + struct SquareService_findSquareByInvitationTicketV2_args { 1: FindSquareByInvitationTicketV2Request request; } + struct SquareService_getGoogleAdOptions_args { 1: GetGoogleAdOptionsRequest request; } + struct SquareService_getInvitationTicketUrl_args { 1: GetInvitationTicketUrlRequest request; } + struct SquareService_getJoinableSquareChats_args { 1: GetJoinableSquareChatsRequest request; } + struct SquareService_getJoinedSquareChats_args { 1: GetJoinedSquareChatsRequest request; } + struct SquareService_getJoinedSquares_args { 1: GetJoinedSquaresRequest request; } + struct SquareService_getMessageReactions_args { 1: GetMessageReactionsRequest request; } + struct SquareService_getNoteStatus_args { 1: GetNoteStatusRequest request; } + struct SquareService_getPopularKeywords_args { 1: GetPopularKeywordsRequest request; } + struct SquareService_getSquareAuthorities_args { 1: GetSquareAuthoritiesRequest request; } + struct SquareService_getSquareAuthority_args { 1: GetSquareAuthorityRequest request; } + struct SquareService_getCategories_args { 1: GetSquareCategoriesRequest request; } + struct SquareService_getSquareChatAnnouncements_args { 1: GetSquareChatAnnouncementsRequest getSquareChatAnnouncementsRequest; } + struct SquareService_getSquareChatEmid_args { 1: GetSquareChatEmidRequest request; } + struct SquareService_getSquareChatFeatureSet_args { 1: GetSquareChatFeatureSetRequest request; } + struct SquareService_getSquareChatMember_args { 1: GetSquareChatMemberRequest request; } + struct SquareService_getSquareChatMembers_args { 1: GetSquareChatMembersRequest request; } + struct SquareService_getSquareChat_args { 1: GetSquareChatRequest request; } + struct SquareService_getSquareChatStatus_args { 1: GetSquareChatStatusRequest request; } + struct SquareService_getSquareEmid_args { 1: GetSquareEmidRequest request; } + struct SquareService_getSquareFeatureSet_args { 1: GetSquareFeatureSetRequest request; } + struct SquareService_getSquareMemberRelation_args { 1: GetSquareMemberRelationRequest request; } + struct SquareService_getSquareMemberRelations_args { 1: GetSquareMemberRelationsRequest request; } + struct SquareService_getSquareMember_args { 1: GetSquareMemberRequest request; } + struct SquareService_getSquareMembersBySquare_args { 1: GetSquareMembersBySquareRequest request; } + struct SquareService_getSquareMembers_args { 1: GetSquareMembersRequest request; } + struct SquareService_getSquare_args { 1: GetSquareRequest request; } + struct SquareService_getSquareStatus_args { 1: GetSquareStatusRequest request; } + struct SquareService_getSquareThreadMid_args { 1: GetSquareThreadMidRequest request; } + struct SquareService_getSquareThread_args { 1: GetSquareThreadRequest request; } + struct SquareService_getUserSettings_args { 1: GetUserSettingsRequest request; } + struct SquareService_hideSquareMemberContents_args { 1: HideSquareMemberContentsRequest request; } + struct SquareService_inviteIntoSquareChat_args { 1: InviteIntoSquareChatRequest request; } + struct SquareService_inviteToSquare_args { 1: InviteToSquareRequest request; } + struct SquareService_joinSquareChat_args { 1: JoinSquareChatRequest request; } + struct SquareService_joinSquare_args { 1: JoinSquareRequest request; } + struct SquareService_joinSquareThread_args { 1: JoinSquareThreadRequest request; } + struct SquareService_leaveSquareChat_args { 1: LeaveSquareChatRequest request; } + struct SquareService_leaveSquare_args { 1: LeaveSquareRequest request; } + struct SquareService_leaveSquareThread_args { 1: LeaveSquareThreadRequest request; } + struct SquareService_manualRepair_args { 1: ManualRepairRequest request; } + struct SquareService_markAsRead_args { 1: MarkAsReadRequest request; } + struct SquareService_markChatsAsRead_args { 1: MarkChatsAsReadRequest request; } + struct SquareService_markThreadsAsRead_args { 1: MarkThreadsAsReadRequest request; } + struct SquareService_reactToMessage_args { 1: ReactToMessageRequest request; } + struct SquareService_refreshSubscriptions_args { 1: RefreshSubscriptionsRequest request; } + struct SquareService_rejectSquareMembers_args { 1: RejectSquareMembersRequest request; } + struct SquareService_removeSubscriptions_args { 1: RemoveSubscriptionsRequest request; } + struct SquareService_reportMessageSummary_args { 1: ReportMessageSummaryRequest request; } + struct SquareService_reportSquareChat_args { 1: ReportSquareChatRequest request; } + struct SquareService_reportSquareMember_args { 1: ReportSquareMemberRequest request; } + struct SquareService_reportSquareMessage_args { 1: ReportSquareMessageRequest request; } + struct SquareService_reportSquare_args { 1: ReportSquareRequest request; } + struct SquareService_searchSquareChatMembers_args { 1: SearchSquareChatMembersRequest request; } + struct SquareService_searchSquareChatMentionables_args { 1: SearchSquareChatMentionablesRequest request; } + struct SquareService_searchSquareMembers_args { 1: SearchSquareMembersRequest request; } + struct SquareService_searchSquares_args { 1: SearchSquaresRequest request; } + struct SquareService_sendMessage_args { 1: SendMessageRequest request; } + struct SquareService_sendSquareThreadMessage_args { 1: SendSquareThreadMessageRequest request; } + struct SquareService_syncSquareMembers_args { 1: SyncSquareMembersRequest request; } + struct SquareService_unhideSquareMemberContents_args { 1: UnhideSquareMemberContentsRequest request; } + struct SquareService_unsendMessage_args { 1: UnsendMessageRequest request; } + struct SquareService_updateSquareAuthority_args { 1: UpdateSquareAuthorityRequest request; } + struct SquareService_updateSquareChatMember_args { 1: UpdateSquareChatMemberRequest request; } + struct SquareService_updateSquareChat_args { 1: UpdateSquareChatRequest request; } + struct SquareService_updateSquareFeatureSet_args { 1: UpdateSquareFeatureSetRequest request; } + struct SquareService_updateSquareMemberRelation_args { 1: UpdateSquareMemberRelationRequest request; } + struct SquareService_updateSquareMember_args { 1: UpdateSquareMemberRequest request; } + struct SquareService_updateSquareMembers_args { 1: UpdateSquareMembersRequest request; } + struct SquareService_updateSquare_args { 1: UpdateSquareRequest request; } + struct SquareService_updateUserSettings_args { 1: UpdateUserSettingsRequest request; } + struct approveChannelAndIssueChannelToken_args { 1: string channelId; } + struct approveChannelAndIssueChannelToken_result { 0: ChannelToken success; 1: ChannelException e; } + struct authenticateUsingBankAccountEx_args { 1: r80_EnumC34362b type; 2: string bankId; @@ -10671,293 +12577,377 @@ struct authenticateUsingBankAccountEx_args { 5: r80_EnumC34361a accountProductCode; 6: string authToken; } + struct authenticateUsingBankAccountEx_result { 0: PaymentAuthenticationInfo success; 1: PaymentException e; } + struct authenticateWithPaak_args { 1: AuthenticateWithPaakRequest request; } + struct authenticateWithPaak_args { 1: AuthenticateWithPaakRequest request; } + struct authenticateWithPaak_result { 0: n80_C31222b success; 1: ChannelPaakAuthnException cpae; 2: TokenAuthException tae; } + struct authenticateWithPaak_result { 0: o80_C32273b success; 1: SecondaryPwlessLoginException e; } + struct blockContact_args { 1: i32 reqSeq; 2: string id; } + struct blockContact_result { 1: TalkException e; } + struct blockRecommendation_args { 1: i32 reqSeq; 2: string targetMid; } + struct blockRecommendation_result { 1: TalkException e; } + struct bulkFollow_args { 2: BulkFollowRequest bulkFollowRequest; } + struct bulkFollow_result { 0: Pb1_C12996g1 success; 1: TalkException e; } + struct bulkGetSetting_args { 2: BulkGetRequest request; } + struct bulkGetSetting_result { 0: s80_t80_b success; 1: SettingsException e; } + struct bulkSetSetting_args { 2: s80_t80_c request; } + struct bulkSetSetting_result { 0: s80_t80_d success; 1: SettingsException e; } + struct buyMustbuyProduct_args { 2: BuyMustbuyRequest request; } + struct buyMustbuyProduct_result { 1: ShopException e; } + struct canCreateCombinationSticker_args { 2: CanCreateCombinationStickerRequest request; } + struct canCreateCombinationSticker_result { 0: CanCreateCombinationStickerResponse success; 1: ShopException e; } + struct canReceivePresent_args { 2: string shopId; 3: string productId; 4: Locale locale; 5: string recipientMid; } + struct canReceivePresent_result { 1: ShopException e; } + struct cancelChatInvitation_args { 1: CancelChatInvitationRequest request; } + struct cancelChatInvitation_result { 0: Pb1_U1 success; 1: TalkException e; } + struct cancelPaakAuth_args { 1: CancelPaakAuthRequest request; } + struct cancelPaakAuth_result { 0: o80_d success; 1: SecondaryPwlessLoginException e; } + struct cancelPaakAuthentication_args { 1: CancelPaakAuthenticationRequest request; } + struct cancelPaakAuthentication_result { 0: n80_d success; 1: ChannelPaakAuthnException cpae; 2: TokenAuthException tae; } + struct cancelPinCode_args { 1: CancelPinCodeRequest request; } + struct cancelPinCode_result { 0: q80_C33650b success; 1: SecondaryQrCodeException e; } + struct cancelReaction_args { 1: CancelReactionRequest cancelReactionRequest; } + struct cancelReaction_result { 1: TalkException e; } + struct changeSubscription_args { 2: YN0_Ob1_r req; } + struct changeSubscription_result { 0: ChangeSubscriptionResponse success; 1: ShopException e; } + struct changeVerificationMethod_args { 2: string sessionId; 3: VerificationMethod method; } + struct changeVerificationMethod_result { 0: VerificationSessionData success; 1: TalkException e; } + struct checkCanUnregisterEx_args { 1: r80_n0 type; } + struct checkCanUnregisterEx_result { 0: UnregisterAvailabilityInfo success; 1: PaymentException e; } + struct I80_C26370F { 1: I80_C26396d request; } + struct checkEmailAssigned_args { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; } + struct checkEmailAssigned_result { 0: CheckEmailAssignedResponse success; 1: AuthException e; } + struct I80_C26371G { 0: I80_C26398e success; 1: I80_C26390a e; } + struct checkIfEncryptedE2EEKeyReceived_args { 1: CheckIfEncryptedE2EEKeyReceivedRequest request; } + struct checkIfEncryptedE2EEKeyReceived_result { 0: CheckIfEncryptedE2EEKeyReceivedResponse success; 1: PrimaryQrCodeMigrationException e; } + struct I80_C26372H { 1: I80_C26400f request; } + struct checkIfPasswordSetVerificationEmailVerified_args { 1: string authSessionId; } + struct checkIfPasswordSetVerificationEmailVerified_result { 0: T70_C14398f success; 1: AuthException e; } + struct I80_C26373I { 0: I80_C26402g success; 1: I80_C26390a e; } + struct checkIfPhonePinCodeMsgVerified_args { 1: CheckIfPhonePinCodeMsgVerifiedRequest request; } + struct checkIfPhonePinCodeMsgVerified_result { 0: CheckIfPhonePinCodeMsgVerifiedResponse success; 1: AuthException e; } + struct checkOperationTimeEx_args { 1: r80_EnumC34368h type; 2: string lpAccountNo; 3: r80_EnumC34371k channelType; } + struct checkOperationTimeEx_result { 0: CheckOperationResult success; 1: PaymentException e; } + struct checkUserAgeAfterApprovalWithDocomoV2_args { 1: CheckUserAgeAfterApprovalWithDocomoV2Request request; } + struct checkUserAgeAfterApprovalWithDocomoV2_result { 0: CheckUserAgeAfterApprovalWithDocomoV2Response success; 1: TalkException e; } + struct checkUserAgeWithDocomoV2_args { 1: CheckUserAgeWithDocomoV2Request request; } + struct checkUserAgeWithDocomoV2_result { 0: CheckUserAgeWithDocomoV2Response success; 1: TalkException e; } + struct checkUserAge_args { 2: CarrierCode carrier; 3: string sessionId; 4: string verifier; 5: i32 standardAge; } + struct checkUserAge_result { 0: Pb1_gd success; 1: TalkException e; } + struct clearRingbackTone_result { 1: TalkException e; } + struct clearRingtone_args { 1: string oid; } + struct clearRingtone_result { 1: TalkException e; } + struct AcceptSpeakersResponse { } + struct AcceptToChangeRoleResponse { } + struct AcceptToListenResponse { } + struct AcceptToSpeakResponse { } + struct AgreeToTermsResponse { } + struct AllNonMemberLiveTalkParticipants { } + struct CancelToSpeakResponse { } + struct DeleteSquareChatAnnouncementResponse { } + struct DeleteSquareChatResponse { } + struct DeleteSquareResponse { } + struct DestroyMessageResponse { } + struct DestroyMessagesResponse { } + struct ForceEndLiveTalkResponse { } + struct GetPopularKeywordsRequest { } + struct GetSquareCategoriesRequest { } + struct HideSquareMemberContentsResponse { } + struct InviteToChangeRoleResponse { } + struct InviteToListenResponse { } + struct InviteToLiveTalkResponse { } + struct InviteToSquareResponse { } + struct KickOutLiveTalkParticipantsResponse { } + struct LeaveSquareChatResponse { } + struct LeaveSquareResponse { } + struct LiveTalkEventPayload { 1: LiveTalkEventNotifiedUpdateLiveTalkTitle notifiedUpdateLiveTalkTitle; 2: LiveTalkEventNotifiedUpdateLiveTalkAnnouncement notifiedUpdateLiveTalkAnnouncement; @@ -10965,58 +12955,76 @@ struct LiveTalkEventPayload { 4: LiveTalkEventNotifiedUpdateLiveTalkAllowRequestToSpeak notifiedUpdateLiveTalkAllowRequestToSpeak; 5: LiveTalkEventNotifiedUpdateSquareMember notifiedUpdateSquareMember; } + struct LiveTalkKickOutTarget { 1: LiveTalkParticipant liveTalkParticipant; 2: AllNonMemberLiveTalkParticipants allNonMemberLiveTalkParticipants; } + struct MarkAsReadResponse { } + struct MarkChatsAsReadResponse { } + struct MarkThreadsAsReadResponse { } + struct RejectSpeakersResponse { } + struct RejectToSpeakResponse { } + struct RemoveLiveTalkSubscriptionResponse { } + struct RemoveSubscriptionsResponse { } + struct ReportLiveTalkResponse { } + struct ReportLiveTalkSpeakerResponse { } + struct ReportMessageSummaryResponse { } + struct ReportSquareChatResponse { } + struct ReportSquareMemberResponse { } + struct ReportSquareMessageResponse { } + struct ReportSquareResponse { } + struct RequestToListenResponse { } + struct RequestToSpeakResponse { } + struct SquareEventPayload { 1: SquareEventReceiveMessage receiveMessage; 2: SquareEventSendMessage sendMessage; @@ -11077,27 +13085,34 @@ struct SquareEventPayload { 57: SquareEventNotifiedUpdateThreadRootMessage notifiedUpdateThreadRootMessage; 58: SquareEventNotifiedUpdateThreadRootMessageStatus notifiedUpdateThreadRootMessageStatus; } + struct UnhideSquareMemberContentsResponse { } + struct UpdateLiveTalkAttrsResponse { } + struct UpdateUserSettingsResponse { } + struct ButtonBGColor { 1: CustomColor custom; 2: DefaultGradientColor defaultGradient; } + struct ButtonContent { 1: UrlButton urlButton; 2: TextButton textButton; 3: OkButton okButton; } + struct DefaultGradientColor { } + struct ErrorExtraInfo { 1: i32 preconditionFailedExtraInfo; 2: UserRestrictionExtraInfo userRestrictionInfo; @@ -11105,257 +13120,332 @@ struct ErrorExtraInfo { 4: LiveTalkExtraInfo liveTalkExtraInfo; 5: TermsAgreementExtraInfo termsAgreementExtraInfo; } + struct Mentionable { 1: MentionableSquareMember squareMember; 2: MentionableBot bot; } + struct MessageStatusContents { - 1: SquareMessageReactionStatus messageReactionStatus; + 1: _any messageReactionStatus; } + struct PopupContent { 1: MainPopup mainPopUp; 2: ChatroomPopup chatroomPopup; } + struct SquareActivityScore { - 1: SquareCleanScore cleanScore; + 1: _any cleanScore; +} +struct TextMessageAnnouncementContents { + 1: string messageId; + 2: string text; + 3: string senderSquareMemberMid; + 4: i64 createdAt; } struct SquareChatAnnouncementContents { 1: TextMessageAnnouncementContents textMessageAnnouncementContents; } + struct TargetChats { - 1: set<_any> mids; - 2: set<_any> categories; + 1: set mids; + 2: set categories; 3: i32 channelId; } + struct TargetUsers { - 1: set<_any> mids; + 1: set mids; } + struct TermsAgreement { - 1: AiQnABotTermsAgreement aiQnABot; + 1: _any aiQnABot; } + struct confirmIdentifier_args { 2: string authSessionId; 3: IdentityCredentialRequest request; } + struct confirmIdentifier_result { 0: IdentityCredentialResponse success; 1: TalkException e; } + struct connectEapAccount_args { 1: ConnectEapAccountRequest request; } + struct connectEapAccount_result { 0: Q70_l success; 1: AccountEapConnectException e; } + struct createChatRoomAnnouncement_args { 1: i32 reqSeq; 2: string chatRoomMid; 3: Pb1_X2 type; 4: ChatRoomAnnouncementContents contents; } + struct createChatRoomAnnouncement_result { 0: ChatRoomAnnouncement success; 1: TalkException e; } + struct createChat_args { 1: CreateChatRequest request; } + struct createChat_result { 0: CreateChatResponse success; 1: TalkException e; } + struct createCollectionForUser_args { 1: YN0_Ob1_A request; } + struct createCollectionForUser_result { 0: YN0_Ob1_B success; 1: CollectionException e; } + struct createCombinationSticker_args { 2: YN0_Ob1_C request; } + struct createCombinationSticker_result { 0: YN0_Ob1_D success; 1: ShopException e; } + struct createE2EEKeyBackupEnforced_args { 2: Pb1_C13263z3 request; } + struct createE2EEKeyBackupEnforced_result { 0: Pb1_B3 success; 1: E2EEKeyBackupException e; } + struct createGroupCallUrl_args { 2: CreateGroupCallUrlRequest request; } + struct createGroupCallUrl_result { 0: CreateGroupCallUrlResponse success; 1: TalkException e; } + struct createLifetimeKeyBackup_args { 2: Pb1_E3 request; } + struct createLifetimeKeyBackup_result { 0: Pb1_F3 success; 1: E2EEKeyBackupException e; } + struct createMultiProfile_args { 1: CreateMultiProfileRequest request; } + struct createMultiProfile_result { 0: CreateMultiProfileResponse success; 1: TalkException e; } + struct createRoomV2_args { 1: i32 reqSeq; 2: list contactIds; } + struct createRoomV2_result { 0: Room success; 1: TalkException e; } + struct createSession_args { 1: R70_a request; } + struct createSession_args { 1: U70_a request; } + struct createSession_args { 1: h80_C25643c request; } + struct I80_C26365A { 1: I80_C26404h request; } + struct createSession_result { 0: CreateSessionResponse success; 1: PwlessCredentialException e; } + struct createSession_result { 0: CreateSessionResponse success; 1: PasswordUpdateException pue; 2: TokenAuthException tae; } + struct createSession_result { 0: CreateSessionResponse success; 1: PrimaryQrCodeMigrationException pqme; 2: TokenAuthException tae; } + struct I80_C26366B { 0: I80_C26406i success; 1: I80_C26390a e; 2: TokenAuthException tae; } + struct decryptFollowEMid_args { 2: string eMid; } + struct decryptFollowEMid_result { 0: string success; 1: TalkException e; } + struct deleteE2EEKeyBackup_args { 2: Pb1_H3 request; } + struct deleteE2EEKeyBackup_result { 0: Pb1_I3 success; 1: E2EEKeyBackupException e; } + struct deleteGroupCallUrl_args { 2: DeleteGroupCallUrlRequest request; } + struct deleteGroupCallUrl_result { 0: Pb1_K3 success; 1: TalkException e; } + struct deleteMultiProfile_args { 1: DeleteMultiProfileRequest request; } + struct deleteMultiProfile_result { 0: gN0_C25147d success; 1: TalkException e; } + struct deleteOtherFromChat_args { 1: DeleteOtherFromChatRequest request; } + struct deleteOtherFromChat_result { 0: Pb1_M3 success; 1: TalkException e; } + struct deletePrimaryCredential_args { 1: R70_c request; } + struct deletePrimaryCredential_result { 0: R70_d success; 1: PwlessCredentialException e; } + struct deleteSafetyStatus_args { 1: DeleteSafetyStatusRequest req; } + struct deleteSafetyStatus_result { 1: vh_Fg_b e; } + struct deleteSelfFromChat_args { 1: DeleteSelfFromChatRequest request; } + struct deleteSelfFromChat_result { 0: Pb1_O3 success; 1: TalkException e; } + struct determineMediaMessageFlow_args { 1: DetermineMediaMessageFlowRequest request; } + struct determineMediaMessageFlow_result { 0: DetermineMediaMessageFlowResponse success; 1: TalkException e; } + struct disableNearby_result { 1: TalkException e; } + struct disconnectEapAccount_args { 1: DisconnectEapAccountRequest request; } + struct disconnectEapAccount_result { 0: Q70_o success; 1: AccountEapConnectException e; } + struct do0_C23138A { - 1: do0_ConnectDeviceOperation connectDevice; - 2: do0_ExecuteOnetimeScenarioOperation executeOnetimeScenario; + 1: ConnectDeviceOperation connectDevice; + 2: ExecuteOnetimeScenarioOperation executeOnetimeScenario; } + struct do0_C23141D { - 1: do0_GattReadAction gattRead; - 2: do0_GattWriteAction gattWrite; - 3: do0_SleepAction sleep; - 4: do0_DisconnectAction disconnect; - 5: do0_StopNotificationAction stopNotification; + 1: GattReadAction gattRead; + 2: do0_C23158p gattWrite; + 3: SleepAction sleep; + 4: do0_C23153k disconnect; + 5: StopNotificationAction stopNotification; } + struct do0_C23142E { - 1: do0_VoidScenarioActionResult voidResult; - 2: do0_BinaryScenarioActionResult binaryResult; + 1: do0_m0 voidResult; + 2: do0_C23143a binaryResult; } + struct do0_C23143a { 1: string bytes; } + struct do0_C23152j { } + struct do0_C23153k { } + struct do0_C23158p { 1: string serviceUuid; 2: string characteristicUuid; 3: string data; } + struct do0_C23161t { } + struct do0_C23165x { } + struct do0_C23167z { } + struct do0_F { 1: string scenarioId; 2: string deviceId; @@ -11368,88 +13458,113 @@ struct do0_F { 9: list actionResults; 10: string connectionId; } + struct do0_I { - 1: do0_ImmediateTrigger immediate; - 2: do0_BleNotificationReceivedTrigger bleNotificationReceived; + 1: do0_C23161t immediate; + 2: BleNotificationReceivedTrigger bleNotificationReceived; } + struct do0_V { } + struct do0_X { } + struct do0_m0 { } + struct editItemsInCollection_args { 1: YN0_Ob1_F request; } + struct editItemsInCollection_result { 0: YN0_Ob1_G success; 1: CollectionException e; } + struct enablePointForOneTimeKey_args { 1: bool usePoint; } + struct enablePointForOneTimeKey_result { 1: PaymentException e; } + struct establishE2EESession_args { 1: YN0_Ob1_J request; } + struct establishE2EESession_result { 0: YN0_Ob1_K success; 1: ShopException e; } + struct existPinCode_args { 1: S70_b request; } + struct existPinCode_result { 0: ExistPinCodeResponse success; 1: SecondAuthFactorPinCodeException e; } + struct fN0_C24471c { } + struct fN0_C24473e { } + struct fN0_C24475g { } + struct fN0_C24476h { } + struct fetchOperations_args { 1: FetchOperationsRequest request; } + struct fetchOperations_result { 0: FetchOperationsResponse success; 1: ThingsException e; } + struct fetchPhonePinCodeMsg_args { 1: FetchPhonePinCodeMsgRequest request; } + struct fetchPhonePinCodeMsg_result { 0: FetchPhonePinCodeMsgResponse success; 1: AuthException e; } + struct findAndAddContactByMetaTag_result { 0: Contact success; 1: TalkException e; } + struct findAndAddContactsByMid_result { 0: map success; 1: TalkException e; } + struct findAndAddContactsByPhone_result { 0: map success; 1: TalkException e; } + struct findAndAddContactsByUserid_result { 0: map success; 1: TalkException e; } + struct findBuddyContactsByQuery_args { 2: string language; 3: string country; @@ -11458,420 +13573,535 @@ struct findBuddyContactsByQuery_args { 6: i32 count; 7: Pb1_F0 requestSource; } + struct findBuddyContactsByQuery_result { 0: list success; 1: TalkException e; } + struct findChatByTicket_args { 1: FindChatByTicketRequest request; } + struct findChatByTicket_result { 0: FindChatByTicketResponse success; 1: TalkException e; } + struct findContactByUserTicket_args { 2: string ticketIdWithTag; } + struct findContactByUserTicket_result { 0: Contact success; 1: TalkException e; } + struct findContactByUserid_args { 2: string searchId; } + struct findContactByUserid_result { 0: Contact success; 1: TalkException e; } + struct findContactsByPhone_args { 2: set phones; } + struct findContactsByPhone_result { 0: map success; 1: TalkException e; } + struct finishUpdateVerification_args { 2: string sessionId; } + struct finishUpdateVerification_result { 1: TalkException e; } + struct follow_args { 2: FollowRequest followRequest; } + struct follow_result { 1: TalkException e; } + struct gN0_C25143G { } + struct gN0_C25147d { } + struct generateUserTicket_args { 3: i64 expirationTime; 4: i32 maxUseCount; } + struct generateUserTicket_result { 0: Ticket success; 1: TalkException e; } + struct getAccessToken_args { 1: GetAccessTokenRequest request; } + struct getAccessToken_result { 0: GetAccessTokenResponse success; 1: TalkException e; } + struct getAccountBalanceAsync_args { 1: string requestToken; 2: string accountId; } + struct getAccountBalanceAsync_result { 1: PaymentException e; } + struct I80_C26374J { 1: I80_C26410k request; } + struct getAcctVerifMethod_args { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; } + struct getAcctVerifMethod_result { 0: GetAcctVerifMethodResponse success; 1: AuthException e; } + struct I80_C26375K { 0: I80_C26412l success; 1: I80_C26390a e; } + struct getAllChatMids_args { 1: GetAllChatMidsRequest request; 2: Pb1_V7 syncReason; } + struct getAllChatMids_result { 0: GetAllChatMidsResponse success; 1: TalkException e; } + struct getAllContactIds_args { 1: Pb1_V7 syncReason; } + struct getAllContactIds_result { 0: list success; 1: TalkException e; } + struct getAllowedRegistrationMethod_args { 1: string authSessionId; 2: string countryCode; } + struct getAllowedRegistrationMethod_result { 0: GetAllowedRegistrationMethodResponse success; 1: AuthException e; } + struct getAnalyticsInfo_result { 0: AnalyticsInfo success; 1: TalkException e; } + struct getApprovedChannels_args { 2: i64 lastSynced; 3: string locale; } + struct getApprovedChannels_result { 0: ApprovedChannelInfos success; 1: ChannelException e; } + struct getAssertionChallenge_args { 1: m80_l request; } + struct getAssertionChallenge_result { 0: GetAssertionChallengeResponse success; 1: m80_b deviceAttestationException; 2: m80_C30146a attestationRequiredException; } + struct getAttestationChallenge_args { 1: m80_n request; } + struct getAttestationChallenge_result { 0: GetAttestationChallengeResponse success; 1: m80_b deviceAttestationException; } + struct getAuthRSAKey_args { 2: string authSessionId; 3: IdentityProvider identityProvider; } + struct getAuthRSAKey_result { 0: RSAKey success; 1: TalkException e; } + struct getAuthorsLatestProducts_args { 2: LatestProductsByAuthorRequest latestProductsByAuthorRequest; } + struct getAuthorsLatestProducts_result { 0: LatestProductsByAuthorResponse success; 1: ShopException e; } + struct getAutoSuggestionShowcase_args { 2: AutoSuggestionShowcaseRequest autoSuggestionShowcaseRequest; } + struct getAutoSuggestionShowcase_result { 0: AutoSuggestionShowcaseResponse success; 1: ShopException e; } + struct getBalanceSummaryV2_args { 1: NZ0_C12208u request; } + struct getBalanceSummaryV2_result { 0: GetBalanceSummaryResponseV2 success; 1: WalletException e; } + struct getBalanceSummaryV4WithPayV3_args { 1: NZ0_C12214w request; } + struct getBalanceSummaryV4WithPayV3_result { 0: GetBalanceSummaryV4WithPayV3Response success; 1: WalletException e; } + struct getBalance_args { 1: ZQ0_b request; } + struct getBalance_result { 0: GetBalanceResponse success; 1: PointException e; } + struct getBankBranches_args { 1: string financialCorpId; 2: string query; 3: i32 startNum; 4: i32 count; } + struct getBankBranches_result { 0: list success; 1: PaymentException e; } + struct getBanners_args { 1: BannerRequest request; } + struct getBanners_result { 0: BannerResponse success; } + struct getBirthdayEffect_args { 1: Eh_C8933a req; } + struct getBirthdayEffect_result { 0: GetBirthdayEffectResponse success; 1: Eh_Fg_b e; } + struct getBleDevice_args { 1: GetBleDeviceRequest request; } + struct getBleDevice_result { 0: ThingsDevice success; 1: ThingsException e; } + struct getBleProducts_result { 0: list success; 1: ThingsException e; } + struct getBlockedContactIds_args { 1: Pb1_V7 syncReason; } + struct getBlockedContactIds_result { 0: list success; 1: TalkException e; } + struct getBlockedRecommendationIds_args { 1: Pb1_V7 syncReason; } + struct getBlockedRecommendationIds_result { 0: list success; 1: TalkException e; } + struct getBrowsingHistory_args { 2: YN0_Ob1_L getBrowsingHistoryRequest; } + struct getBrowsingHistory_result { 0: YN0_Ob1_M success; 1: ShopException e; } + struct getBuddyChatBarV2_args { 1: GetBuddyChatBarRequest request; } + struct getBuddyChatBarV2_result { 0: BuddyChatBar success; 1: TalkException e; } + struct getBuddyDetailWithPersonal_args { 1: string buddyMid; 2: set attributeSet; } + struct getBuddyDetailWithPersonal_result { 0: BuddyDetailWithPersonal success; 1: TalkException e; } + struct getBuddyDetail_args { 4: string buddyMid; } + struct getBuddyDetail_result { 0: BuddyDetail success; 1: TalkException e; } + struct getBuddyLive_args { 1: GetBuddyLiveRequest request; } + struct getBuddyLive_result { 0: GetBuddyLiveResponse success; 1: TalkException e; } + struct getBuddyOnAir_args { 4: string buddyMid; } + struct getBuddyOnAir_result { 0: BuddyOnAir success; 1: TalkException e; } + struct getBuddyStatusBarV2_args { 1: GetBuddyStatusBarV2Request request; } + struct getBuddyStatusBarV2_result { 0: BuddyStatusBar success; 1: TalkException e; } + struct getCallStatus_args { 1: GetCallStatusRequest request; } + struct getCallStatus_result { 0: GetCallStatusResponse success; 1: OaChatException e; } + struct getCampaign_args { 1: GetCampaignRequest request; } + struct getCampaign_result { 0: GetCampaignResponse success; 1: WalletException e; } + struct getChallengeForPaakAuth_args { 1: GetChallengeForPaakAuthRequest request; } + struct getChallengeForPaakAuth_args { 1: GetChallengeForPaakAuthRequest request; } + struct getChallengeForPaakAuth_result { 0: GetChallengeForPaakAuthResponse success; 1: ChannelPaakAuthnException cpae; 2: TokenAuthException tae; } + struct getChallengeForPaakAuth_result { 0: GetChallengeForPaakAuthResponse success; 1: SecondaryPwlessLoginException e; } + struct getChallengeForPrimaryReg_args { 1: GetChallengeForPrimaryRegRequest request; } + struct getChallengeForPrimaryReg_result { 0: GetChallengeForPrimaryRegResponse success; 1: PwlessCredentialException e; } + struct getChannelContext_args { 1: GetChannelContextRequest request; } + struct getChannelContext_result { 0: GetChannelContextResponse success; 1: ChannelPaakAuthnException cpae; 2: TokenAuthException tae; } + struct getChannelInfo_args { 2: string channelId; 3: string locale; } + struct getChannelInfo_result { 0: ChannelInfo success; 1: ChannelException e; } + struct getChannelNotificationSettings_args { 1: string locale; } + struct getChannelNotificationSettings_result { 0: list success; 1: ChannelException e; } + struct getChannelSettings_result { 0: ChannelSettings success; 1: ChannelException e; } + struct getChatEffectMetaList_args { 1: set categories; } + struct getChatEffectMetaList_result { 0: list success; 1: TalkException e; } + struct getChatRoomAnnouncementsBulk_args { 2: list chatRoomMids; 3: Pb1_V7 syncReason; } + struct getChatRoomAnnouncementsBulk_result { 0: map> success; 1: TalkException e; } + struct getChatRoomAnnouncements_args { 2: string chatRoomMid; } + struct getChatRoomAnnouncements_result { 0: list success; 1: TalkException e; } + struct getChatRoomBGMs_args { 2: set chatRoomMids; 3: Pb1_V7 syncReason; } + struct getChatRoomBGMs_result { 0: map success; 1: TalkException e; } + struct getChatapp_args { 1: GetChatappRequest request; } + struct getChatapp_result { 0: GetChatappResponse success; 1: ChatappException e; } + struct getChats_args { 1: GetChatsRequest request; 2: Pb1_V7 syncReason; } + struct getChats_result { 0: GetChatsResponse success; 1: TalkException e; } + struct getCoinProducts_args { 1: GetCoinProductsRequest request; } + struct getCoinProducts_result { 0: GetCoinProductsResponse success; 1: CoinException e; } + struct getCoinPurchaseHistory_args { 1: GetCoinHistoryRequest request; } + struct getCoinPurchaseHistory_result { 0: GetCoinHistoryResponse success; 1: CoinException e; } + struct getCoinUseAndRefundHistory_args { 1: GetCoinHistoryRequest request; } + struct getCoinUseAndRefundHistory_result { 0: GetCoinHistoryResponse success; 1: CoinException e; } + struct getCommonDomains_args { 1: i64 lastSynced; } + struct getCommonDomains_result { 0: ChannelDomains success; 1: ChannelException e; } + struct getConfigurations_args { 2: i64 revision; 3: string regionOfUsim; @@ -11880,13 +14110,16 @@ struct getConfigurations_args { 6: string carrier; 7: Pb1_V7 syncReason; } + struct getConfigurations_result { 0: Configurations success; 1: TalkException e; } + struct getContactCalendarEvents_args { 1: GetContactCalendarEventsRequest request; } + struct getContactCalendarEvents_result { 0: GetContactCalendarEventsResponse success; 1: RejectedException re; @@ -11894,13 +14127,16 @@ struct getContactCalendarEvents_result { 3: TalkException te; 4: ExcessiveRequestItemException ere; } + struct getContact_result { 0: Contact success; 1: TalkException e; } + struct getContactsV3_args { 1: GetContactsV3Request request; } + struct getContactsV3_result { 0: GetContactsV3Response success; 1: RejectedException be; @@ -11908,142 +14144,180 @@ struct getContactsV3_result { 3: TalkException te; 4: ExcessiveRequestItemException ere; } + struct getContacts_result { 0: list success; 1: TalkException e; } + struct getCountries_args { 2: Pb1_EnumC13221w3 countryGroup; } + struct getCountries_result { 0: set success; 1: TalkException e; } + struct I80_C26376L { 1: I80_C26413m request; } + struct getCountryInfo_args { 1: string authSessionId; 11: SimCard simCard; } + struct getCountryInfo_result { 0: GetCountryInfoResponse success; 1: AuthException e; } + struct I80_C26377M { 0: I80_C26414n success; 1: I80_C26390a e; } + struct getCountryWithRequestIp_result { 0: string success; 1: TalkException e; } + struct getDataRetention_args { 1: fN0_C24473e req; } + struct getDataRetention_result { 0: GetPremiumDataRetentionResponse success; 1: PremiumException e; } + struct getDestinationUrl_args { 1: DestinationLIFFRequest request; } + struct getDestinationUrl_result { 0: DestinationLIFFResponse success; 1: LiffException liffException; } + struct getDisasterCases_args { 1: vh_C37633d req; } + struct getDisasterCases_result { 0: GetDisasterCasesResponse success; 1: vh_Fg_b e; } + struct getE2EEGroupSharedKey_args { 2: i32 keyVersion; 3: string chatMid; 4: i32 groupKeyId; } + struct getE2EEGroupSharedKey_result { 0: Pb1_U3 success; 1: TalkException e; } + struct getE2EEKeyBackupCertificates_args { 2: Pb1_W4 request; } + struct getE2EEKeyBackupCertificates_result { 0: GetE2EEKeyBackupCertificatesResponse success; 1: E2EEKeyBackupException e; } + struct getE2EEKeyBackupInfo_args { 2: Pb1_Y4 request; } + struct getE2EEKeyBackupInfo_result { 0: GetE2EEKeyBackupInfoResponse success; 1: E2EEKeyBackupException e; } + struct getE2EEPublicKey_args { 2: string mid; 3: i32 keyVersion; 4: i32 keyId; } + struct getE2EEPublicKey_result { 0: Pb1_C13097n4 success; 1: TalkException e; } + struct getE2EEPublicKeys_result { 0: list success; 1: TalkException e; } + struct getEncryptedIdentityV3_result { 0: Pb1_C12916a5 success; 1: TalkException e; } + struct getExchangeKey_args { 1: GetExchangeKeyRequest request; } + struct getExchangeKey_result { 0: GetExchangeKeyResponse success; 1: SecondaryPwlessLoginException e; } + struct getExtendedProfile_args { 1: Pb1_V7 syncReason; } + struct getExtendedProfile_result { 0: ExtendedProfile success; 1: TalkException e; } + struct getFollowBlacklist_args { 2: GetFollowBlacklistRequest getFollowBlacklistRequest; } + struct getFollowBlacklist_result { 0: GetFollowBlacklistResponse success; 1: TalkException e; } + struct getFollowers_args { 2: GetFollowersRequest getFollowersRequest; } + struct getFollowers_result { 0: GetFollowersResponse success; 1: TalkException e; } + struct getFollowings_args { 2: GetFollowingsRequest getFollowingsRequest; } + struct getFollowings_result { 0: GetFollowingsResponse success; 1: TalkException e; } + struct getFontMetas_args { 1: GetFontMetasRequest request; } + struct getFontMetas_result { 0: GetFontMetasResponse success; 1: TalkException e; } + struct getFriendDetails_args { 1: GetFriendDetailsRequest request; } + struct getFriendDetails_result { 0: GetFriendDetailsResponse success; 1: RejectedException re; @@ -12051,521 +14325,662 @@ struct getFriendDetails_result { 3: TalkException te; 4: ExcessiveRequestItemException ere; } + struct getFriendRequests_args { 1: Pb1_F4 direction; 2: i64 lastSeenSeqId; } + struct getFriendRequests_result { 0: list success; 1: TalkException e; } + struct getGnbBadgeStatus_args { 1: GetGnbBadgeStatusRequest request; } + struct getGnbBadgeStatus_result { 0: GetGnbBadgeStatusResponse success; 1: WalletException e; } + struct getGroupCallUrlInfo_args { 2: GetGroupCallUrlInfoRequest request; } + struct getGroupCallUrlInfo_result { 0: GetGroupCallUrlInfoResponse success; 1: TalkException e; } + struct getGroupCallUrls_args { 2: Pb1_C13042j5 request; } + struct getGroupCallUrls_result { 0: GetGroupCallUrlsResponse success; 1: TalkException e; } + struct getGroupCall_args { 2: string chatMid; } + struct getGroupCall_result { 0: GroupCall success; 1: TalkException e; } + struct getHomeFlexContent_args { 1: GetHomeFlexContentRequest request; } + struct getHomeFlexContent_result { 0: GetHomeFlexContentResponse success; 1: Dg_Fg_b e; } + struct getHomeServiceList_args { 1: Eg_C8928b request; } + struct getHomeServiceList_result { 0: GetHomeServiceListResponse success; 1: Eg_Fg_b e; } + struct getHomeServices_args { 1: GetHomeServicesRequest request; } + struct getHomeServices_result { 0: GetHomeServicesResponse success; 1: Eg_Fg_b e; } + struct getIncentiveStatus_args { 1: fN0_C24471c req; } + struct getIncentiveStatus_result { 0: GetIncentiveStatusResponse success; 1: PremiumException e; } + struct getInstantNews_args { 1: string region; 2: Location location; } + struct getInstantNews_result { 0: list success; 1: TalkException e; } + struct getJoinedMembershipByBotMid_args { 1: GetJoinedMembershipByBotMidRequest request; } + struct getJoinedMembershipByBotMid_result { 0: MemberInfo success; 1: MembershipException e; } + struct getJoinedMembership_args { 1: GetJoinedMembershipRequest request; } + struct getJoinedMembership_result { 0: MemberInfo success; 1: MembershipException e; } + struct getJoinedMemberships_result { 0: JoinedMemberships success; 1: MembershipException e; } + struct getKeyBackupCertificatesV2_args { 2: Pb1_C13070l5 request; } + struct getKeyBackupCertificatesV2_result { 0: GetKeyBackupCertificatesV2Response success; 1: E2EEKeyBackupException e; } + struct getLFLSuggestion_args { 1: AR0_b request; } + struct getLFLSuggestion_result { 0: GetLFLSuggestionResponse success; 1: LFLPremiumException e; } + struct getLastE2EEGroupSharedKey_args { 2: i32 keyVersion; 3: string chatMid; } + struct getLastE2EEGroupSharedKey_result { 0: Pb1_U3 success; 1: TalkException e; } + struct getLastE2EEPublicKeys_args { 2: string chatMid; } + struct getLastE2EEPublicKeys_result { 0: map success; 1: TalkException e; } + struct getLastOpRevision_result { 0: i64 success; 1: TalkException e; } + struct getLiffViewWithoutUserContext_args { 1: LiffViewWithoutUserContextRequest request; } + struct getLiffViewWithoutUserContext_result { 0: LiffViewResponse success; 1: LiffException liffException; 2: TalkException talkException; } + struct getLineCardIssueForm_args { 1: r80_EnumC34372l resolutionType; } + struct getLineCardIssueForm_result { 0: PaymentLineCardIssueForm success; 1: PaymentException e; } + struct getLinkedDevices_result { 0: list success; 1: ThingsException e; } + struct getLoginActorContext_args { 1: GetLoginActorContextRequest request; } + struct getLoginActorContext_args { 1: GetLoginActorContextRequest request; } + struct getLoginActorContext_result { 0: GetLoginActorContextResponse success; 1: SecondaryPwlessLoginException e; } + struct getLoginActorContext_result { 0: GetLoginActorContextResponse success; 1: SecondaryQrCodeException e; } + struct getMappedProfileIds_args { 1: GetMappedProfileIdsRequest request; } + struct getMappedProfileIds_result { 0: GetMappedProfileIdsResponse success; 1: TalkException e; } + struct I80_C26378N { 1: I80_C26415o request; } + struct getMaskedEmail_args { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; } + struct getMaskedEmail_result { 0: GetMaskedEmailResponse success; 1: AuthException e; } + struct I80_C26379O { 0: I80_C26416p success; 1: I80_C26390a e; } + struct getMessageBoxes_args { 2: MessageBoxListRequest messageBoxListRequest; 3: Pb1_V7 syncReason; } + struct getMessageBoxes_result { 0: MessageBoxList success; 1: TalkException e; } + struct getMessageReadRange_args { 2: list chatIds; 3: Pb1_V7 syncReason; } + struct getMessageReadRange_result { 0: list success; 1: TalkException e; } + struct getModuleLayoutV4_args { 1: GetModuleLayoutV4Request request; } + struct getModuleLayoutV4_result { 0: NZ0_D success; 1: WalletException e; } + struct getModuleWithStatus_args { 1: NZ0_G request; } + struct getModuleWithStatus_result { 0: NZ0_H success; 1: WalletException e; } + struct getModule_args { 1: NZ0_E request; } + struct getModule_result { 0: NZ0_F success; 1: WalletException e; } + struct getModulesV2_args { 1: GetModulesRequestV2 request; } + struct getModulesV2_result { 0: NZ0_K success; 1: WalletException e; } + struct getModulesV3_args { 1: GetModulesRequestV3 request; } + struct getModulesV3_result { 0: NZ0_K success; 1: WalletException e; } + struct getModulesV4WithStatus_args { 1: GetModulesV4WithStatusRequest request; } + struct getModulesV4WithStatus_result { 0: NZ0_M success; 1: WalletException e; } + struct getMusicSubscriptionStatus_args { 2: YN0_Ob1_N request; } + struct getMusicSubscriptionStatus_result { 0: YN0_Ob1_O success; 1: ShopException e; } + struct getMyAssetInformationV2_args { 1: GetMyAssetInformationV2Request request; } + struct getMyAssetInformationV2_result { 0: GetMyAssetInformationV2Response success; 1: WalletException e; } + struct getMyChatapps_args { 1: GetMyChatappsRequest request; } + struct getMyChatapps_result { 0: GetMyChatappsResponse success; 1: ChatappException e; } + struct getMyDashboard_args { 1: GetMyDashboardRequest request; } + struct getMyDashboard_result { 0: GetMyDashboardResponse success; 1: WalletException e; } + struct getNewlyReleasedBuddyIds_args { 3: string country; } + struct getNewlyReleasedBuddyIds_result { 0: map success; 1: TalkException e; } + struct getNotificationSettings_args { 1: GetNotificationSettingsRequest request; } + struct getNotificationSettings_result { 0: GetNotificationSettingsResponse success; 1: TalkException e; } + struct getOwnedProductSummaries_args { 2: string shopId; 3: i32 offset; 4: i32 limit; 5: Locale locale; } + struct getOwnedProductSummaries_result { 0: YN0_Ob1_N0 success; 1: ShopException e; } + struct getPasswordHashingParameter_args { 1: GetPasswordHashingParametersRequest request; } + struct getPasswordHashingParameter_result { 0: GetPasswordHashingParametersResponse success; 1: PasswordUpdateException pue; 2: TokenAuthException tae; } + struct getPasswordHashingParametersForPwdReg_args { 1: GetPasswordHashingParametersForPwdRegRequest request; } + struct I80_C26380P { 1: I80_C26417q request; } + struct getPasswordHashingParametersForPwdReg_result { 0: GetPasswordHashingParametersForPwdRegResponse success; 1: AuthException e; } + struct I80_C26381Q { 0: I80_C26418r success; 1: I80_C26390a e; } + struct getPasswordHashingParametersForPwdVerif_args { 1: GetPasswordHashingParametersForPwdVerifRequest request; } + struct I80_C26382S { 1: I80_C26419s request; } + struct getPasswordHashingParametersForPwdVerif_result { 0: GetPasswordHashingParametersForPwdVerifResponse success; 1: AuthException e; } + struct I80_C26383T { 0: I80_C26420t success; 1: I80_C26390a e; } + struct getPaymentUrlByKey_args { 1: string key; } + struct getPaymentUrlByKey_result { 0: string success; 1: PaymentException e; } + struct getPendingAgreements_result { 0: PendingAgreementsResponse success; 1: TalkException e; } + struct getPhoneVerifMethodForRegistration_args { 1: GetPhoneVerifMethodForRegistrationRequest request; } + struct getPhoneVerifMethodForRegistration_result { 0: GetPhoneVerifMethodForRegistrationResponse success; 1: AuthException e; } + struct getPhoneVerifMethodV2_args { 1: GetPhoneVerifMethodV2Request request; } + struct I80_C26384U { 1: I80_C26421u request; } + struct getPhoneVerifMethodV2_result { 0: GetPhoneVerifMethodV2Response success; 1: AuthException e; } + struct I80_C26385V { 0: I80_C26422v success; 1: I80_C26390a e; } + struct getPhotoboothBalance_args { 2: Pb1_C13126p5 request; } + struct getPhotoboothBalance_result { 0: GetPhotoboothBalanceResponse success; 1: TalkException e; } + struct getPredefinedScenarioSets_args { 1: GetPredefinedScenarioSetsRequest request; } + struct getPredefinedScenarioSets_result { 0: GetPredefinedScenarioSetsResponse success; 1: ThingsException e; } + struct getPrefetchableBanners_args { 1: BannerRequest request; } + struct getPrefetchableBanners_result { 0: BannerResponse success; } + struct getPremiumStatusForUpgrade_args { 1: fN0_C24475g req; } + struct getPremiumStatusForUpgrade_result { 0: GetPremiumStatusResponse success; 1: PremiumException e; } + struct getPremiumStatus_args { 1: fN0_C24476h req; } + struct getPremiumStatus_result { 0: GetPremiumStatusResponse success; 1: PremiumException e; } + struct getPreviousMessagesV2WithRequest_args { 2: GetPreviousMessagesV2Request request; 3: Pb1_V7 syncReason; } + struct getPreviousMessagesV2WithRequest_result { 0: list success; 1: TalkException e; } + struct getProductByVersion_args { 2: string shopId; 3: string productId; 4: i64 productVersion; 5: Locale locale; } + struct getProductByVersion_result { 0: YN0_Ob1_E0 success; 1: ShopException e; } + struct getProductLatestVersionForUser_args { 2: YN0_Ob1_P request; } + struct getProductLatestVersionForUser_result { 0: YN0_Ob1_Q success; 1: ShopException e; } + struct getProductSummariesInSubscriptionSlots_args { 2: YN0_Ob1_U req; } + struct getProductSummariesInSubscriptionSlots_result { 0: YN0_Ob1_V success; 1: ShopException e; } + struct getProductV2_args { 2: YN0_Ob1_S request; } + struct getProductV2_result { 0: YN0_Ob1_T success; 1: ShopException e; } + struct getProductValidationScheme_args { 2: string shopId; 3: string productId; 4: i64 productVersion; } + struct getProductValidationScheme_result { 0: YN0_Ob1_S0 success; 1: ShopException e; } + struct getProductsByAuthor_args { 2: YN0_Ob1_G0 productListByAuthorRequest; } + struct getProductsByAuthor_result { 0: YN0_Ob1_F0 success; 1: ShopException e; } + struct getProfile_args { 1: Pb1_V7 syncReason; } + struct getProfile_result { 0: Profile success; 1: TalkException e; } + struct getPromotedBuddyContacts_args { 2: string language; 3: string country; } + struct getPromotedBuddyContacts_result { 0: list success; 1: TalkException e; } + struct getPublishedMemberships_args { 1: GetPublishedMembershipsRequest request; } + struct getPublishedMemberships_result { 0: list success; 1: MembershipException e; } + struct getPurchaseEnabledStatus_args { 1: PurchaseEnabledRequest request; } + struct getPurchaseEnabledStatus_result { 0: og_I success; 1: MembershipException e; } + struct getPurchasedProducts_args { 2: string shopId; 3: i32 offset; 4: i32 limit; 5: Locale locale; } + struct getPurchasedProducts_result { 0: PurchaseRecordList success; 1: ShopException e; } + struct getQuickMenu_args { 1: NZ0_S request; } + struct getQuickMenu_result { 0: GetQuickMenuResponse success; 1: WalletException e; } + struct getRSAKeyInfo_result { 0: RSAKey success; 1: TalkException e; } + struct getReceivedPresents_args { 2: string shopId; 3: i32 offset; 4: i32 limit; 5: Locale locale; } + struct getReceivedPresents_result { 0: PurchaseRecordList success; 1: ShopException e; } + struct getRecentFriendRequests_args { 1: Pb1_V7 syncReason; } + struct getRecentFriendRequests_result { 0: FriendRequestsInfo success; 1: TalkException e; } + struct getRecommendationDetails_args { 1: GetRecommendationDetailsRequest request; } + struct getRecommendationDetails_result { 0: GetRecommendationDetailsResponse success; 1: RejectedException re; @@ -12573,223 +14988,284 @@ struct getRecommendationDetails_result { 3: TalkException te; 4: ExcessiveRequestItemException ere; } + struct getRecommendationIds_args { 1: Pb1_V7 syncReason; } + struct getRecommendationIds_result { 0: list success; 1: TalkException e; } + struct getRecommendationList_args { 1: zR0_C40576a request; } + struct getRecommendationList_args { 2: YN0_Ob1_W getRecommendationRequest; } + struct getRecommendationList_result { 0: YN0_Ob1_X success; 1: ShopException e; } + struct getRecommendationList_result { 0: GetSuggestTrialRecommendationResponse success; 1: SuggestTrialException e; } + struct getRepairElements_args { 1: GetRepairElementsRequest request; } + struct getRepairElements_result { 0: GetRepairElementsResponse success; 1: TalkException e; } + struct getRequiredAgreements_result { 0: PaymentRequiredAgreementsInfo success; 1: PaymentException e; } + struct getResourceFile_args { 2: YN0_Ob1_Z req; } + struct getResourceFile_result { 0: YN0_Ob1_Y success; 1: ShopException e; } + struct getResponseStatus_args { 1: GetResponseStatusRequest request; } + struct getResponseStatus_result { 0: GetResponseStatusResponse success; 1: OaChatException e; } + struct getReturnUrlWithRequestTokenForAutoLogin_args { 2: WebLoginRequest webLoginRequest; } + struct getReturnUrlWithRequestTokenForAutoLogin_result { 0: WebLoginResponse success; 1: ChannelException e; } + struct getReturnUrlWithRequestTokenForMultiLiffLogin_args { 1: LiffWebLoginRequest request; } + struct getReturnUrlWithRequestTokenForMultiLiffLogin_result { 0: LiffWebLoginResponse success; 1: LiffException liffException; 2: LiffChannelException channelException; 3: TalkException talkException; } + struct getRingbackTone_result { 0: RingbackTone success; 1: TalkException e; } + struct getRingtone_result { 0: Ringtone success; 1: TalkException e; } + struct getRoomsV2_args { 2: list roomIds; } + struct getRoomsV2_result { 0: list success; 1: TalkException e; } + struct getSCC_args { 1: GetSCCRequest request; } + struct getSCC_result { 0: SCC success; 1: MembershipException e; } + struct I80_C26386W { 1: I80_C26423w request; } + struct I80_C26387X { 0: I80_C26424x success; 1: I80_C26390a e; } + struct getSeasonalEffects_args { 1: Eh_C8935c req; } + struct getSeasonalEffects_result { 0: GetSeasonalEffectsResponse success; 1: Eh_Fg_b e; } + struct getSecondAuthMethod_args { 1: string authSessionId; } + struct getSecondAuthMethod_result { 0: GetSecondAuthMethodResponse success; 1: AuthException e; } + struct getSentPresents_args { 2: string shopId; 3: i32 offset; 4: i32 limit; 5: Locale locale; } + struct getSentPresents_result { 0: PurchaseRecordList success; 1: ShopException e; } + struct getServerTime_result { 0: i64 success; 1: TalkException e; } + struct getServiceShortcutMenu_args { 1: NZ0_U request; } + struct getServiceShortcutMenu_result { 0: GetServiceShortcutMenuResponse success; 1: WalletException e; } + struct getSessionContentBeforeMigCompletion_args { 1: string authSessionId; } + struct getSessionContentBeforeMigCompletion_result { 0: GetSessionContentBeforeMigCompletionResponse success; 1: AuthException e; } + struct getSettingsAttributes2_args { 2: set attributesToRetrieve; } + struct getSettingsAttributes2_result { 0: Settings success; 1: TalkException e; } + struct getSettingsAttributes_result { 0: Settings success; 1: TalkException e; } + struct getSettings_args { 1: Pb1_V7 syncReason; } + struct getSettings_result { 0: Settings success; 1: TalkException e; } + struct getSmartChannelRecommendations_args { 1: GetSmartChannelRecommendationsRequest request; } + struct getSmartChannelRecommendations_result { 0: GetSmartChannelRecommendationsResponse success; 1: WalletException e; } + struct getSquareBot_args { 1: GetSquareBotRequest req; } + struct getSquareBot_result { 0: GetSquareBotResponse success; 1: BotException e; } + struct getStudentInformation_args { 2: Ob1_C12606a0 req; } + struct getStudentInformation_result { 0: GetStudentInformationResponse success; 1: ShopException e; } + struct getSubscriptionPlans_args { 2: GetSubscriptionPlansRequest req; } + struct getSubscriptionPlans_result { 0: GetSubscriptionPlansResponse success; 1: ShopException e; } + struct getSubscriptionSlotHistory_args { 2: Ob1_C12618e0 req; } + struct getSubscriptionSlotHistory_result { 0: Ob1_C12621f0 success; 1: ShopException e; } + struct getSubscriptionStatus_args { 2: GetSubscriptionStatusRequest req; } + struct getSubscriptionStatus_result { 0: GetSubscriptionStatusResponse success; 1: ShopException e; } + struct getSuggestDictionarySetting_args { 2: Ob1_C12630i0 req; } + struct getSuggestDictionarySetting_result { 0: GetSuggestDictionarySettingResponse success; 1: ShopException e; } + struct getSuggestResourcesV2_args { 2: GetSuggestResourcesV2Request req; } + struct getSuggestResourcesV2_result { 0: GetSuggestResourcesV2Response success; 1: ShopException e; } + struct getTaiwanBankBalance_args { 1: GetTaiwanBankBalanceRequest request; } + struct getTaiwanBankBalance_result { 0: GetTaiwanBankBalanceResponse success; 1: WalletException e; } + struct getTargetProfiles_args { 1: GetTargetProfilesRequest request; } + struct getTargetProfiles_result { 0: GetTargetProfilesResponse success; 1: RejectedException re; @@ -12797,515 +15273,660 @@ struct getTargetProfiles_result { 3: TalkException te; 4: ExcessiveRequestItemException ere; } + struct getTargetingPopup_args { 1: NZ0_C12150a0 request; } + struct getTargetingPopup_result { 0: GetTargetingPopupResponse success; 1: WalletException e; } + struct getThaiBankBalance_args { 1: GetThaiBankBalanceRequest request; } + struct getThaiBankBalance_result { 0: GetThaiBankBalanceResponse success; 1: WalletException e; } + struct getTotalCoinBalance_args { 1: GetTotalCoinBalanceRequest request; } + struct getTotalCoinBalance_result { 0: GetTotalCoinBalanceResponse success; 1: CoinException e; } + struct getUpdatedChannelIds_args { 1: list channelIds; } + struct getUpdatedChannelIds_result { 0: list success; 1: ChannelException e; } + struct getUserCollections_args { 1: GetUserCollectionsRequest request; } + struct getUserCollections_result { 0: GetUserCollectionsResponse success; 1: CollectionException e; } + struct getUserProfile_args { 1: string authSessionId; 2: AccountIdentifier accountIdentifier; } + struct getUserProfile_result { 0: GetUserProfileResponse success; 1: AuthException e; } + struct getUserVector_args { 1: GetUserVectorRequest request; } + struct getUserVector_result { 0: GetUserVectorResponse success; 1: LFLPremiumException e; } + struct getUsersMappedByProfile_args { 1: GetUsersMappedByProfileRequest request; } + struct getUsersMappedByProfile_result { 0: GetUsersMappedByProfileResponse success; 1: TalkException e; } + struct getWebLoginDisallowedUrlForMultiLiffLogin_args { 1: LiffWebLoginRequest request; } + struct getWebLoginDisallowedUrlForMultiLiffLogin_result { 0: LiffWebLoginResponse success; 1: LiffException liffException; 2: LiffChannelException channelException; 3: TalkException talkException; } + struct getWebLoginDisallowedUrl_args { 2: WebLoginRequest webLoginRequest; } + struct getWebLoginDisallowedUrl_result { 0: WebLoginResponse success; 1: ChannelException e; } + struct h80_C25643c { } + struct h80_t { 1: string newDevicePublicKey; 2: string encryptedQrIdentifier; } + struct h80_v { } + struct I80_A0 { } + struct I80_C26398e { } + struct I80_C26404h { } + struct I80_F0 { } + struct I80_r0 { } + struct I80_v0 { } + struct inviteFriends_args { 1: InviteFriendsRequest request; } + struct inviteFriends_result { 0: InviteFriendsResponse success; 1: PremiumException e; } + struct inviteIntoChat_args { 1: InviteIntoChatRequest request; } + struct inviteIntoChat_result { 0: Pb1_J5 success; 1: TalkException e; } + struct inviteIntoGroupCall_args { 2: string chatMid; 3: list memberMids; 4: Pb1_EnumC13237x5 mediaType; } + struct inviteIntoGroupCall_result { 1: TalkException e; } + struct inviteIntoRoom_args { 1: i32 reqSeq; 2: string roomId; 3: list contactIds; } + struct inviteIntoRoom_result { 1: TalkException e; } + struct isProductForCollections_args { 1: IsProductForCollectionsRequest request; } + struct isProductForCollections_result { 0: IsProductForCollectionsResponse success; 1: CollectionException e; } + struct isStickerAvailableForCombinationSticker_args { 2: IsStickerAvailableForCombinationStickerRequest request; } + struct isStickerAvailableForCombinationSticker_result { 0: IsStickerAvailableForCombinationStickerResponse success; 1: ShopException e; } + struct isUseridAvailable_args { 2: string searchId; } + struct isUseridAvailable_result { 0: bool success; 1: TalkException e; } + struct issueChannelToken_args { 1: string channelId; } + struct issueChannelToken_result { 0: ChannelToken success; 1: ChannelException e; } + struct issueLiffView_args { 1: LiffViewRequest request; } + struct issueLiffView_result { 0: LiffViewResponse success; 1: LiffException liffException; 2: TalkException talkException; } + struct issueNonce_result { 0: string success; 1: PaymentException e; } + struct issueRequestTokenWithAuthScheme_args { 1: string channelId; 2: string otpId; 3: list authScheme; 4: string returnUrl; } + struct issueRequestTokenWithAuthScheme_result { 0: RequestTokenResponse success; 1: ChannelException e; } + struct issueSubLiffView_args { 1: LiffViewRequest request; } + struct issueSubLiffView_result { 0: LiffViewResponse success; 1: LiffException liffException; 2: TalkException talkException; } + struct issueTokenForAccountMigrationSettings_args { 2: bool enforce; } + struct issueTokenForAccountMigrationSettings_result { 0: SecurityCenterResult success; 1: TalkException e; } + struct issueToken_args { 1: IssueBirthdayGiftTokenRequest request; } + struct issueToken_result { 0: IssueBirthdayGiftTokenResponse success; 1: Cg_Fg_b e; } + struct issueV3TokenForPrimary_args { 1: IssueV3TokenForPrimaryRequest request; } + struct issueV3TokenForPrimary_result { 0: IssueV3TokenForPrimaryResponse success; 1: TalkException e; } + struct issueWebAuthDetailsForSecondAuth_args { 1: string authSessionId; } + struct issueWebAuthDetailsForSecondAuth_result { 0: IssueWebAuthDetailsForSecondAuthResponse success; 1: AuthException e; } + struct joinChatByCallUrl_args { 2: JoinChatByCallUrlRequest request; } + struct joinChatByCallUrl_result { 0: JoinChatByCallUrlResponse success; 1: TalkException e; } + struct jp_naver_line_shop_protocol_thrift_ProductProperty { } + struct kf_i { } + struct kf_k { } + struct kf_m { - 1: kf_RichmenuEvent richmenu; - 2: kf_TalkroomEvent talkroom; + 1: RichmenuEvent richmenu; + 2: TalkroomEvent talkroom; } + struct kf_w { - 1: kf_ProfileRefererContent profileRefererContent; + 1: _any profileRefererContent; } + struct kickoutFromGroupCall_args { 2: KickoutFromGroupCallRequest kickoutFromGroupCallRequest; } + struct kickoutFromGroupCall_result { 0: Pb1_S5 success; 1: TalkException e; } + struct leaveRoom_args { 1: i32 reqSeq; 2: string roomId; } + struct leaveRoom_result { 1: TalkException e; } + struct linkDevice_args { 1: DeviceLinkRequest request; } + struct linkDevice_result { 0: DeviceLinkResponse success; 1: ThingsException e; } + struct logoutV2_result { 1: TalkException e; } + struct lookupAvailableEap_args { 1: LookupAvailableEapRequest request; } + struct lookupAvailableEap_result { 0: LookupAvailableEapResponse success; 1: AuthException e; } + struct lookupPaidCall_args { 2: string dialedNumber; 3: string language; 4: string referer; } + struct lookupPaidCall_result { 0: PaidCallResponse success; 1: TalkException e; } + struct m80_l { } + struct m80_n { } + struct m80_q { } + struct m80_s { } + struct mapProfileToUsers_args { 1: MapProfileToUsersRequest request; } + struct mapProfileToUsers_result { 0: MapProfileToUsersResponse success; 1: TalkException e; } + struct migratePrimaryUsingEapAccountWithTokenV3_args { 1: string authSessionId; } + struct migratePrimaryUsingEapAccountWithTokenV3_result { 0: MigratePrimaryWithTokenV3Response success; 1: AuthException e; } + struct migratePrimaryUsingPhoneWithTokenV3_args { 1: string authSessionId; } + struct migratePrimaryUsingPhoneWithTokenV3_result { 0: MigratePrimaryWithTokenV3Response success; 1: AuthException e; } + struct migratePrimaryUsingQrCode_args { 1: MigratePrimaryUsingQrCodeRequest request; } + struct migratePrimaryUsingQrCode_result { 0: MigratePrimaryUsingQrCodeResponse success; 1: PrimaryQrCodeMigrationException e; } + struct n80_C31222b { } + struct n80_d { } + struct negotiateE2EEPublicKey_args { 2: string mid; } + struct negotiateE2EEPublicKey_result { 0: E2EENegotiationResult success; 1: TalkException e; } + struct noop_result { 1: TalkException e; } + struct notifyBannerShowing_result { 1: TalkException e; } + struct notifyBannerTapped_result { 1: TalkException e; } + struct notifyBeaconDetected_result { 1: TalkException e; } + struct notifyChatAdEntry_args { 1: NotifyChatAdEntryRequest request; } + struct notifyChatAdEntry_result { 0: kf_i success; 1: BotExternalException e; } + struct notifyDeviceConnection_args { 1: NotifyDeviceConnectionRequest request; } + struct notifyDeviceConnection_result { 0: NotifyDeviceConnectionResponse success; 1: ThingsException e; } + struct notifyDeviceDisconnection_args { 1: NotifyDeviceDisconnectionRequest request; } + struct notifyDeviceDisconnection_result { 0: do0_C23165x success; 1: ThingsException e; } + struct notifyInstalled_args { 2: string udidHash; 3: string applicationTypeWithExtensions; } + struct notifyInstalled_result { 1: TalkException e; } + struct notifyOATalkroomEvents_args { 1: NotifyOATalkroomEventsRequest request; } + struct notifyOATalkroomEvents_result { 0: kf_k success; 1: BotExternalException e; } + struct notifyProductEvent_args { 2: string shopId; 3: string productId; 4: i64 productVersion; 5: i64 productEvent; } + struct notifyProductEvent_result { 1: ShopException e; } + struct notifyRegistrationComplete_args { 2: string udidHash; 3: string applicationTypeWithExtensions; } + struct notifyRegistrationComplete_result { 1: TalkException e; } + struct notifyScenarioExecuted_args { 1: NotifyScenarioExecutedRequest request; } + struct notifyScenarioExecuted_result { 0: do0_C23167z success; 1: ThingsException e; } + struct notifySleep_result { 1: TalkException e; } + struct notifyUpdated_args { 2: i64 lastRev; 3: DeviceInfo deviceInfo; 4: string udidHash; 5: string oldUdidHash; } + struct notifyUpdated_result { 1: TalkException e; } + struct o80_C32273b { } + struct o80_d { } + struct o80_m { } + struct og_u { } + struct openAuthSession_args { 2: AuthSessionRequest request; } + struct openAuthSession_result { 0: string success; 1: TalkException e; } + struct openProximityMatch_result { 0: string success; 1: TalkException e; } + struct openSession_args { 1: OpenSessionRequest request; } + struct openSession_args { 1: OpenSessionRequest request; } + struct openSession_result { 0: OpenSessionResponse success; 1: AccountEapConnectException e; } + struct openSession_result { 0: string success; 1: AuthException e; } + struct permitLogin_args { 1: PermitLoginRequest request; } + struct permitLogin_result { 0: PermitLoginResponse success; 1: SeamlessLoginException sle; 2: TokenAuthException tae; } + struct placePurchaseOrderForFreeProduct_args { 2: PurchaseOrder purchaseOrder; } + struct placePurchaseOrderForFreeProduct_result { 0: PurchaseOrderResponse success; 1: ShopException e; } + struct placePurchaseOrderWithLineCoin_args { 2: PurchaseOrder purchaseOrder; } + struct placePurchaseOrderWithLineCoin_result { 0: PurchaseOrderResponse success; 1: ShopException e; } + struct postPopupButtonEvents_args { 1: string buttonId; 2: map checkboxes; } + struct postPopupButtonEvents_result { 1: PaymentException e; } + struct purchaseSubscription_args { 2: PurchaseSubscriptionRequest req; } + struct purchaseSubscription_result { 0: PurchaseSubscriptionResponse success; 1: ShopException e; } + struct putE2eeKey_args { 1: PutE2eeKeyRequest request; } + struct putE2eeKey_result { 0: o80_m success; 1: SecondaryPwlessLoginException e; } + struct q80_C33650b { } + struct q80_q { } + struct q80_s { } + struct qm_C34110c { 1: string inFriends; 2: string notInFriends; 3: bool termsAgreed; } + struct qm_C34115h { 1: string hwid; 2: string secureMessage; @@ -13317,6 +15938,7 @@ struct qm_C34115h { 8: i64 bannerStartedAt; 9: i64 bannerShownFor; } + struct qm_j { 1: string hwid; 2: string secureMessage; @@ -13328,6 +15950,7 @@ struct qm_j { 8: i64 bannerTappedAt; 9: bool beaconTermAgreed; } + struct qm_l { 1: string hwid; 2: string secureMessage; @@ -13337,51 +15960,64 @@ struct qm_l { 6: string region; 7: string modelName; } + struct qm_o { 1: string hwid; 2: string secureMessage; 3: qm_EnumC34112e notificationType; 4: Rssi rssi; } + struct queryBeaconActions_result { 0: BeaconQueryResponse success; 1: TalkException e; } + struct r80_C34358N { } + struct r80_C34360P { } + struct react_args { 1: ReactRequest reactRequest; } + struct react_result { 1: TalkException e; } + struct refresh_args { 1: RefreshAccessTokenRequest request; } + struct refresh_result { 0: RefreshAccessTokenResponse success; 1: AccessTokenRefreshException accessTokenRefreshException; } + struct registerBarcodeAsync_args { 1: string requestToken; 2: string barcodeRequestId; 3: string barcode; 4: RSAEncryptedPassword password; } + struct registerBarcodeAsync_result { 1: PaymentException e; } + struct registerCampaignReward_args { 1: RegisterCampaignRewardRequest request; } + struct registerCampaignReward_result { 0: RegisterCampaignRewardResponse success; 1: WalletException e; } + struct registerE2EEGroupKey_args { 2: i32 keyVersion; 3: string chatMid; @@ -13389,148 +16025,189 @@ struct registerE2EEGroupKey_args { 5: list keyIds; 6: list encryptedSharedKeys; } + struct registerE2EEGroupKey_result { 0: Pb1_U3 success; 1: TalkException e; } + struct registerE2EEPublicKeyV2_args { 1: Pb1_W6 request; } + struct registerE2EEPublicKeyV2_result { 0: RegisterE2EEPublicKeyV2Response success; 1: TalkException e; } + struct registerE2EEPublicKey_args { 1: i32 reqSeq; 2: Pb1_C13097n4 publicKey; } + struct registerE2EEPublicKey_result { 0: Pb1_C13097n4 success; 1: TalkException e; } + struct registerPrimaryCredential_args { 1: RegisterPrimaryCredentialRequest request; } + struct registerPrimaryCredential_result { 0: R70_t success; 1: PwlessCredentialException e; } + struct registerPrimaryUsingEapAccount_args { 1: string authSessionId; } + struct registerPrimaryUsingEapAccount_result { 0: RegisterPrimaryWithTokenV3Response success; 1: AuthException e; } + struct registerPrimaryUsingPhoneWithTokenV3_args { 2: string authSessionId; } + struct registerPrimaryUsingPhoneWithTokenV3_result { 0: RegisterPrimaryWithTokenV3Response success; 1: AuthException e; } + struct I80_C26367C { 1: I80_q0 request; } + struct I80_C26368D { 0: I80_r0 success; 1: I80_C26390a e; 2: TokenAuthException tae; } + struct registerUserid_args { 1: i32 reqSeq; 2: string searchId; } + struct registerUserid_result { 0: bool success; 1: TalkException e; } + struct reissueChatTicket_args { 1: ReissueChatTicketRequest request; } + struct reissueChatTicket_result { 0: ReissueChatTicketResponse success; 1: TalkException e; } + struct rejectChatInvitation_args { 1: RejectChatInvitationRequest request; } + struct rejectChatInvitation_result { 0: Pb1_C12946c7 success; 1: TalkException e; } + struct removeAllMessages_result { 1: TalkException e; } + struct removeChatRoomAnnouncement_args { 1: i32 reqSeq; 2: string chatRoomMid; 3: i64 announcementSeq; } + struct removeChatRoomAnnouncement_result { 1: TalkException e; } + struct removeFollower_args { 2: RemoveFollowerRequest removeFollowerRequest; } + struct removeFollower_result { 1: TalkException e; } + struct removeFriendRequest_args { 1: Pb1_F4 direction; 2: string midOrEMid; } + struct removeFriendRequest_result { 1: TalkException e; } + struct removeFromFollowBlacklist_args { 2: RemoveFromFollowBlacklistRequest removeFromFollowBlacklistRequest; } + struct removeFromFollowBlacklist_result { 1: TalkException e; } + struct removeIdentifier_args { 2: string authSessionId; 3: IdentityCredentialRequest request; } + struct removeIdentifier_result { 0: IdentityCredentialResponse success; 1: TalkException e; } + struct removeItemFromCollection_args { 1: RemoveItemFromCollectionRequest request; } + struct removeItemFromCollection_result { 0: Ob1_C12637k1 success; 1: CollectionException e; } + struct removeLinePayAccount_args { 1: string accountId; } + struct removeLinePayAccount_result { 1: PaymentException e; } + struct removeProductFromSubscriptionSlot_args { 2: RemoveProductFromSubscriptionSlotRequest req; } + struct removeProductFromSubscriptionSlot_result { 0: RemoveProductFromSubscriptionSlotResponse success; 1: ShopException e; } + struct reportAbuseEx_args { 2: ReportAbuseExRequest request; } + struct reportAbuseEx_result { 0: Pb1_C13114o7 success; 1: TalkException e; } + struct reportDeviceState_args { 2: map booleanState; 3: map stringState; } + struct reportDeviceState_result { 1: TalkException e; } + struct reportLocation_args { 1: Geolocation location; 2: Pb1_EnumC12917a6 trigger; @@ -13539,288 +16216,366 @@ struct reportLocation_args { 6: i64 clientCurrentTimestamp; 7: LocationDebugInfo debugInfo; } + struct reportLocation_result { 1: TalkException e; } + struct reportNetworkStatus_args { 1: Pb1_EnumC12917a6 trigger; 2: ClientNetworkStatus networkStatus; 3: i64 measuredAt; 4: i64 scanCompletionTimestamp; } + struct reportNetworkStatus_result { 1: TalkException e; } + struct reportProfile_args { 2: i64 syncOpRevision; 3: Profile profile; } + struct reportProfile_result { 1: TalkException e; } + struct reportPushRecvReports_args { 1: i32 reqSeq; 2: list pushRecvReports; } + struct reportPushRecvReports_result { 1: TalkException e; } + struct reportRefreshedAccessToken_args { 1: ReportRefreshedAccessTokenRequest request; } + struct reportRefreshedAccessToken_result { 0: P70_k success; 1: AccessTokenRefreshException accessTokenRefreshException; } + struct reportSettings_args { 2: i64 syncOpRevision; 3: Settings settings; } + struct reportSettings_result { 1: TalkException e; } + struct requestCleanupUserProvidedData_args { 1: set dataTypes; } + struct requestCleanupUserProvidedData_result { 1: TalkException e; } + struct I80_C26388Y { 1: I80_u0 request; } + struct requestToSendPasswordSetVerificationEmail_args { 1: string authSessionId; 2: string email; 3: AccountIdentifier accountIdentifier; } + struct requestToSendPasswordSetVerificationEmail_result { 0: RequestToSendPasswordSetVerificationEmailResponse success; 1: AuthException e; } + struct I80_C26389Z { 0: I80_v0 success; 1: I80_C26390a e; } + struct requestToSendPhonePinCode_args { 1: ReqToSendPhonePinCodeRequest request; } + struct I80_C26391a0 { 1: I80_s0 request; } + struct requestToSendPhonePinCode_result { 0: ReqToSendPhonePinCodeResponse success; 1: AuthException e; } + struct I80_C26393b0 { 0: I80_t0 success; 1: I80_C26390a e; } + struct requestTradeNumber_args { 1: string requestToken; 2: r80_g0 requestType; 3: string amount; 4: string name; } + struct requestTradeNumber_result { 0: PaymentTradeInfo success; 1: PaymentException e; } + struct resendIdentifierConfirmation_args { 2: string authSessionId; 3: IdentityCredentialRequest request; } + struct resendIdentifierConfirmation_result { 0: IdentityCredentialResponse success; 1: TalkException e; } + struct resendPinCode_args { 2: string sessionId; } + struct resendPinCode_result { 1: TalkException e; } + struct reserveCoinPurchase_args { 1: CoinPurchaseReservation request; } + struct reserveCoinPurchase_result { 0: PaymentReservationResult success; 1: CoinException e; } + struct reserveSubscriptionPurchase_args { 1: ReserveSubscriptionPurchaseRequest request; } + struct reserveSubscriptionPurchase_result { 0: ReserveSubscriptionPurchaseResponse success; 1: PremiumException e; } + struct reserve_args { 1: ReserveRequest request; } + struct reserve_result { 0: ReserveInfo success; 1: MembershipException e; } + struct respondE2EEKeyExchange_result { 1: TalkException e; } + struct respondE2EELoginRequest_result { 1: TalkException e; } + struct restoreE2EEKeyBackup_args { 2: Pb1_C13155r7 request; } + struct restoreE2EEKeyBackup_result { 0: Pb1_C13169s7 success; 1: E2EEKeyBackupException e; } + struct I80_C26395c0 { 1: I80_w0 request; } + struct I80_C26397d0 { 0: I80_x0 success; 1: I80_C26390a e; } + struct I80_C26399e0 { 1: I80_w0 request; } + struct I80_C26401f0 { 0: I80_x0 success; 1: I80_C26390a e; } + struct retrieveRequestTokenWithDocomoV2_args { 1: Pb1_C13183t7 request; } + struct retrieveRequestTokenWithDocomoV2_result { 0: RetrieveRequestTokenWithDocomoV2Response success; 1: TalkException e; } + struct retrieveRequestToken_args { 2: CarrierCode carrier; } + struct retrieveRequestToken_result { 0: AgeCheckRequestResult success; 1: TalkException e; } + struct revokeTokens_args { 1: RevokeTokensRequest request; } + struct revokeTokens_result { 1: LiffException liffException; 2: TalkException talkException; } + struct saveStudentInformation_args { 2: SaveStudentInformationRequest req; } + struct saveStudentInformation_result { 0: Ob1_C12649o1 success; 1: ShopException e; } + struct sendChatChecked_args { 1: i32 seq; 2: string chatMid; 3: string lastMessageId; 4: byte sessionId; } + struct sendChatChecked_result { 1: TalkException e; } + struct sendChatRemoved_args { 1: i32 seq; 2: string chatMid; 3: string lastMessageId; 4: byte sessionId; } + struct sendChatRemoved_result { 1: TalkException e; } + struct sendEncryptedE2EEKey_args { 1: SendEncryptedE2EEKeyRequest request; } + struct sendEncryptedE2EEKey_result { 0: h80_v success; 1: PrimaryQrCodeMigrationException pqme; 2: TokenAuthException tae; } + struct sendMessage_args { 1: i32 seq; 2: Message message; } + struct sendMessage_result { 0: Message success; 1: TalkException e; } + struct sendPostback_args { 2: SendPostbackRequest request; } + struct sendPostback_result { 1: TalkException e; } + struct setChatHiddenStatus_args { 1: SetChatHiddenStatusRequest setChatHiddenStatusRequest; } + struct setChatHiddenStatus_result { 1: TalkException e; } + struct setHashedPassword_args { 1: SetHashedPasswordRequest request; } + struct I80_C26403g0 { 1: I80_z0 request; } + struct setHashedPassword_result { 0: T70_g1 success; 1: AuthException e; } + struct I80_C26405h0 { 0: I80_A0 success; 1: I80_C26390a e; } + struct setIdentifier_args { 2: string authSessionId; 3: IdentityCredentialRequest request; } + struct setIdentifier_result { 0: IdentityCredentialResponse success; 1: TalkException e; } + struct setNotificationsEnabled_args { 1: i32 reqSeq; 2: MIDType type; 3: string target; 4: bool enablement; } + struct setNotificationsEnabled_result { 1: TalkException e; } + struct setPassword_args { 1: SetPasswordRequest request; } + struct setPassword_result { 0: U70_t success; 1: PasswordUpdateException pue; 2: TokenAuthException tae; } + struct shouldShowWelcomeStickerBanner_args { 2: Ob1_C12660s1 request; } + struct shouldShowWelcomeStickerBanner_result { 0: ShouldShowWelcomeStickerBannerResponse success; 1: ShopException e; } + struct startPhotobooth_args { 2: StartPhotoboothRequest request; } + struct startPhotobooth_result { 0: StartPhotoboothResponse success; 1: TalkException e; } + struct I80_C26407i0 { 1: I80_C0 request; } + struct I80_C26409j0 { 0: I80_D0 success; 1: I80_C26390a e; } + struct startUpdateVerification_args { 2: string region; 3: CarrierCode carrier; @@ -13831,54 +16586,68 @@ struct startUpdateVerification_args { 8: string locale; 9: SIMInfo simInfo; } + struct startUpdateVerification_result { 0: VerificationSessionData success; 1: TalkException e; } + struct stopBundleSubscription_args { 2: StopBundleSubscriptionRequest request; } + struct stopBundleSubscription_result { 0: StopBundleSubscriptionResponse success; 1: ShopException e; } + struct storeShareTargetPickerResult_args { 1: ShareTargetPickerResultRequest request; } + struct storeShareTargetPickerResult_result { 1: LiffException liffException; 2: TalkException talkException; } + struct storeSubWindowResult_args { 1: SubWindowResultRequest request; } + struct storeSubWindowResult_result { 1: LiffException liffException; 2: TalkException talkException; } + struct syncContacts_args { 1: i32 reqSeq; 2: list localContacts; } + struct syncContacts_result { 0: map success; 1: TalkException e; } + struct sync_args { 1: SyncRequest request; } + struct sync_result { 0: Pb1_X7 success; 1: TalkException e; } + struct t80_g { - 1: t80_GetResponse response; - 2: t80_SettingsException error; + 1: GetResponse response; + 2: SettingsException error; } + struct t80_l { - 1: t80_SetResponse response; - 2: t80_SettingsException error; + 1: SetResponse response; + 2: SettingsException error; } + struct t80_p { 1: bool booleanValue; 2: i64 i64Value; @@ -13894,53 +16663,67 @@ struct t80_p { 12: list<_any> i16ListValue; 13: list<_any> i32ListValue; } + struct tryFriendRequest_args { 1: string midOrEMid; 2: Pb1_G4 method; 3: string friendRequestParams; } + struct tryFriendRequest_result { 1: TalkException e; } + struct unblockContact_args { 1: i32 reqSeq; 2: string id; 3: string reference; } + struct unblockContact_result { 1: TalkException e; } + struct unblockRecommendation_args { 1: i32 reqSeq; 2: string targetMid; } + struct unblockRecommendation_result { 1: TalkException e; } + struct unfollow_args { 2: UnfollowRequest unfollowRequest; } + struct unfollow_result { 1: TalkException e; } + struct unlinkDevice_args { 1: DeviceUnlinkRequest request; } + struct unlinkDevice_result { 0: do0_C23152j success; 1: ThingsException e; } + struct unregisterUserAndDevice_result { 0: string success; 1: TalkException e; } + struct unsendMessage_args { 1: i32 seq; 2: string messageId; } + struct unsendMessage_result { 1: TalkException e; } + struct updateAndGetNearby_args { 2: double latitude; 3: double longitude; @@ -13952,218 +16735,276 @@ struct updateAndGetNearby_args { 9: i64 measuredAtTimestamp; 10: i64 clientCurrentTimestamp; } + struct updateAndGetNearby_result { 0: list success; 1: TalkException e; } + struct updateChannelNotificationSetting_args { 1: list setting; } + struct updateChannelNotificationSetting_result { 1: ChannelException e; } + struct updateChannelSettings_args { 1: ChannelSettings channelSettings; } + struct updateChannelSettings_result { 0: bool success; 1: ChannelException e; } + struct updateChatRoomBGM_args { 1: i32 reqSeq; 2: string chatRoomMid; 3: string chatRoomBGMInfo; } + struct updateChatRoomBGM_result { 0: ChatRoomBGM success; 1: TalkException e; } + struct updateChat_args { 1: UpdateChatRequest request; } + struct updateChat_result { 0: Pb1_Zc success; 1: TalkException e; } + struct updateContactSetting_args { 1: i32 reqSeq; 2: string mid; 3: ContactSetting flag; 4: string value; } + struct updateContactSetting_result { 1: TalkException e; } + struct updateExtendedProfileAttribute_args { 1: i32 reqSeq; 2: Pb1_EnumC13180t4 attr; 3: ExtendedProfile extendedProfile; } + struct updateExtendedProfileAttribute_result { 1: TalkException e; } + struct updateGroupCallUrl_args { 2: UpdateGroupCallUrlRequest request; } + struct updateGroupCallUrl_result { 0: Pb1_cd success; 1: TalkException e; } + struct updateIdentifier_args { 2: string authSessionId; 3: IdentityCredentialRequest request; } + struct updateIdentifier_result { 0: IdentityCredentialResponse success; 1: TalkException e; } + struct updateNotificationToken_args { 2: string token; 3: NotificationType type; } + struct updateNotificationToken_result { 1: TalkException e; } + struct updatePassword_args { 1: UpdatePasswordRequest request; } + struct updatePassword_result { 0: U70_v success; 1: PasswordUpdateException pue; 2: TokenAuthException tae; } + struct updateProfileAttribute_result { 1: TalkException e; } + struct updateProfileAttributes_args { 1: UpdateProfileAttributesRequest request; } + struct updateProfileAttributes_args { 1: i32 reqSeq; 2: UpdateProfileAttributesRequest request; } + struct updateProfileAttributes_result { 0: gN0_C25143G success; 1: TalkException e; } + struct updateProfileAttributes_result { 1: TalkException e; } + struct updateSafetyStatus_args { 1: UpdateSafetyStatusRequest req; } + struct updateSafetyStatus_result { 1: vh_Fg_b e; } + struct updateSettingsAttribute_result { 1: TalkException e; } + struct updateSettingsAttributes2_args { 1: i32 reqSeq; 3: Settings settings; 4: set attributesToUpdate; } + struct updateSettingsAttributes2_result { 0: set success; 1: TalkException e; } + struct updateUserGeneralSettings_args { 1: map settings; } + struct updateUserGeneralSettings_result { 1: PaymentException e; } + struct usePhotoboothTicket_args { 2: UsePhotoboothTicketRequest request; } + struct usePhotoboothTicket_result { 0: UsePhotoboothTicketResponse success; 1: TalkException e; } + struct validateEligibleFriends_args { 1: list friends; 2: r80_EnumC34376p type; } + struct validateEligibleFriends_result { 0: list success; 1: PaymentException e; } + struct validateProduct_args { 2: string shopId; 3: string productId; 4: i64 productVersion; 5: YN0_Ob1_Q0 validationReq; } + struct validateProduct_result { 0: YN0_Ob1_R0 success; 1: ShopException e; } + struct validateProfile_args { 1: string authSessionId; 2: string displayName; } + struct validateProfile_result { 0: T70_o1 success; 1: AuthException e; } + struct verifyAccountUsingHashedPwd_args { 1: VerifyAccountUsingHashedPwdRequest request; } + struct I80_C26411k0 { 1: I80_E0 request; } + struct verifyAccountUsingHashedPwd_result { 0: VerifyAccountUsingHashedPwdResponse success; 1: AuthException e; } + struct I80_l0 { 0: I80_F0 success; 1: I80_C26390a e; } + struct verifyAssertion_args { 1: VerifyAssertionRequest request; } + struct verifyAssertion_result { 0: m80_q success; 1: m80_b deviceAttestationException; } + struct verifyAttestation_args { 1: VerifyAttestationRequest request; } + struct verifyAttestation_result { 0: m80_s success; 1: m80_b deviceAttestationException; } + struct verifyBirthdayGiftAssociationToken_args { 2: BirthdayGiftAssociationVerifyRequest req; } + struct verifyBirthdayGiftAssociationToken_result { 0: BirthdayGiftAssociationVerifyResponse success; 1: ShopException e; } + struct verifyEapAccountForRegistration_args { 1: string authSessionId; 2: Device device; 3: SocialLogin socialLogin; } + struct verifyEapAccountForRegistration_result { 0: T70_s1 success; 1: AuthException e; } + struct verifyEapLogin_args { 1: VerifyEapLoginRequest request; } + struct I80_m0 { 1: I80_G0 request; } + struct verifyEapLogin_result { 0: VerifyEapLoginResponse success; 1: AccountEapConnectException e; } + struct I80_n0 { 0: I80_H0 success; 1: I80_C26390a e; } + struct verifyPhoneNumber_args { 2: string sessionId; 3: string pinCode; @@ -14171,86 +17012,108 @@ struct verifyPhoneNumber_args { 5: string migrationPincodeSessionId; 6: string oldUdidHash; } + struct verifyPhoneNumber_result { 0: PhoneVerificationResult success; 1: TalkException e; } + struct verifyPhonePinCode_args { 1: VerifyPhonePinCodeRequest request; } + struct I80_o0 { 1: I80_I0 request; } + struct verifyPhonePinCode_result { 0: VerifyPhonePinCodeResponse success; 1: AuthException e; } + struct I80_p0 { 0: I80_J0 success; 1: I80_C26390a e; } + struct verifyPinCode_args { 1: VerifyPinCodeRequest request; } + struct verifyPinCode_args { 1: VerifyPinCodeRequest request; } + struct verifyPinCode_result { 0: S70_k success; 1: SecondAuthFactorPinCodeException e; } + struct verifyPinCode_result { 0: q80_q success; 1: SecondaryQrCodeException e; } + struct verifyQrCode_args { 1: VerifyQrCodeRequest request; } + struct verifyQrCode_result { 0: q80_s success; 1: SecondaryQrCodeException e; } + struct verifyQrcodeWithE2EE_result { 0: string success; 1: TalkException e; } + struct verifyQrcode_args { 2: string verifier; 3: string pinCode; } + struct verifyQrcode_result { 0: string success; 1: TalkException e; } + struct verifySocialLogin_args { 1: string authSessionId; 2: Device device; 3: SocialLogin socialLogin; } + struct verifySocialLogin_result { 0: VerifySocialLoginResponse success; 1: AuthException e; } + struct vh_C37633d { } + struct wakeUpLongPolling_args { 2: i64 clientRevision; } + struct wakeUpLongPolling_result { 0: bool success; 1: TalkException e; } + struct zR0_C40576a { } + struct zR0_C40580e { - 1: zR0_Sticker sticker; + 1: _any sticker; } struct GetContactsV2Response { 1: map contacts; } + struct ContactEntry { 1: UserStatus userStatus; 2: i64 snapshotTimeMillis; @@ -14258,17 +17121,6 @@ struct ContactEntry { 4: ContactCalendarEvents calendarEvents; } -struct LoginResult { - 1: string authToken; - 2: string certificate; - 3: string verifier; - 4: string pinCode; - 5: LoginResultType type; - 6: i64 lastPrimaryBindTime; - 7: string displayMessage; - 8: VerificationSessionData sessionForSMSConfirm; -} - enum LoginResultType { SUCCESS = 1; REQUIRE_QRCODE = 2; @@ -14276,6 +17128,14 @@ enum LoginResultType { REQUIRE_SMS_CONFIRM = 4; } +enum VerificationMethod { + NO_AVAILABLE = 0, + PIN_VIA_SMS = 1, + CALLERID_INDIGO = 2, + PIN_VIA_TTS = 4, + SKIP = 10, +} + struct VerificationSessionData { 1: string sessionId; 2: VerificationMethod method; @@ -14284,13 +17144,15 @@ struct VerificationSessionData { 5: string countryCode; 6: string nationalSignificantNumber; 7: list availableVerificationMethods; - 8: string callerIdMask; } -enum VerificationMethod { - NO_AVAILABLE = 0; - PIN_VIA_SMS = 1; - CALLERID_INDIGO = 2; - PIN_VIA_TTS = 4; - SKIP = 10; -} \ No newline at end of file +struct LoginResult { + 1: string authToken; + 2: string certificate; + 3: string verifier; + 4: string pinCode; + 5: LoginResultType type; + 6: i64 lastPrimaryBindTime; + 7: string displayMessage; + 8: VerificationSessionData sessionForSMSConfirm; +}